<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Conversion problems in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problems/m-p/1504038#M233101</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope anybody can help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My programm is type module pool. On the left side is a ALV Treecontrol with many entries for subreports. The subreports defined as subscreen and displayed on the right sight of my dynpro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Each subreport has one selection screen. Our users want to save variants like the one in normal reports.&lt;/P&gt;&lt;P&gt;For this requirment we tried to "copy" the sap solution for saving variants.&lt;/P&gt;&lt;P&gt;And here is our problem. Saving and changing the variants is no problem.&lt;/P&gt;&lt;P&gt;After loading the variants we copy the values in the parameters and select-options fields. But not all values where copied correct into the fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example : We have the field impersonal account. In database the value is saved like 0012345678. On select-options-low the value is displayed with 12345678.&lt;/P&gt;&lt;P&gt;But after loading our variant, sap search the database with 12345678 and the result is empty. If sap search with 0012345678 the result is 234 entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the puts the value for impersonal account manual into select-options field, sap search with 0012345678.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is our coding :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loading the Variant :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
FORM load_variant.
  DATA: lv_variant TYPE rsvar-variant.

  IF NOT gv_variant IS INITIAL.
    lv_variant = gv_variant.
  ELSE.
    CALL FUNCTION 'RS_VARIANT_CATALOG'
      EXPORTING
        report                     = sy-cprog
*   NEW_TITLE                  = ' '
        dynnr                      = gv_dynpro
*   INTERNAL_CALL              = ' '
*   MASKED                     = 'X'
*   VARIANT                    = ' '
*   POP_UP                     = ' '
      IMPORTING
        sel_variant                = lv_variant
*   SEL_VARIANT_TEXT           =
* TABLES
*   BELONGING_DYNNR            =
     EXCEPTIONS
       no_report                  = 1
       report_not_existent        = 2
       report_not_supplied        = 3
       no_variants                = 4
       no_variant_selected        = 5
       variant_not_existent       = 6
       OTHERS                     = 7
              .
    IF sy-subrc &amp;lt;&amp;gt; 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
  ENDIF.

  CALL FUNCTION 'RS_VARIANT_CONTENTS'
    EXPORTING
      report                      = sy-cprog
      variant                     = lv_variant
      move_or_write               = 'W'
*   NO_IMPORT                   = ' '
*   EXECUTE_DIRECT              = ' '
* IMPORTING
*   SP                          =
    TABLES
*   L_PARAMS                    =
*   L_PARAMS_NONV               =
*   L_SELOP                     =
*   L_SELOP_NONV                =
      valutab                     = gt_params
*   OBJECTS                     =
*   FREE_SELECTIONS_DESC        =
*   FREE_SELECTIONS_VALUE       =
   EXCEPTIONS
     variant_non_existent        = 1
     variant_obsolete            = 2
     report_not_existent         = 3
     OTHERS                      = 4
            .
  IF sy-subrc &amp;lt;&amp;gt; 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ELSE.
    PERFORM get_screenvalues.
  ENDIF.

  CLEAR: lv_variant, wa_params.
  REFRESH: gt_params.
ENDFORM.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Insert the variant values into the selection screen:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
FORM get_screenvalues.
  DATA: lv_sel(9) TYPE c,
        lv_selname(10) TYPE c.

  DATA: lt_params TYPE TABLE OF rsparams.

  FIELD-SYMBOLS: &amp;lt;table&amp;gt; TYPE ANY TABLE,
                 &amp;lt;wa&amp;gt; TYPE ANY,
                 &amp;lt;field&amp;gt; TYPE ANY.

  DELETE gt_params WHERE low IS initial.

  lt_params[] = gt_params[].
  SORT lt_params BY selname.
  DELETE ADJACENT DUPLICATES FROM lt_params COMPARING selname.

* Suchstring für "Loop at screen" erstellen
  CONCATENATE '++' gv_dynpro_sel '++*' INTO lv_sel.

* Leeren der Dynprofelder. Unterscheiden ob Parameter oder
* Select-Options
  LOOP AT SCREEN.
    IF screen-name CP lv_sel.
      IF screen-group3 = 'PAR'.
        lv_selname = screen-name+0(8).
        ASSIGN (lv_selname) TO &amp;lt;wa&amp;gt;.
        CLEAR &amp;lt;wa&amp;gt;.
      ELSE.
        CONCATENATE screen-name+0(8) '[]' INTO lv_selname.
        ASSIGN (lv_selname) TO &amp;lt;wa&amp;gt;.
        ASSIGN (lv_selname) TO &amp;lt;table&amp;gt;.

        CLEAR &amp;lt;wa&amp;gt;.
        REFRESH &amp;lt;table&amp;gt;.
      ENDIF.
      UNASSIGN: &amp;lt;wa&amp;gt;, &amp;lt;table&amp;gt;.

      MODIFY SCREEN.
      CLEAR lv_selname.
    ENDIF.
  ENDLOOP.

* Suchstring Parameter in der Parametertabelle
  CLEAR lv_sel.
  CONCATENATE '++' gv_dynpro_sel '++' INTO lv_sel.

* Wieder Unterscheidung von Parameter und Select-Options
  LOOP AT gt_params INTO wa_params WHERE selname CP lv_sel.
    IF wa_params-kind = 'P'.
* Wenn ein Datum im Wertefeld, dann wird dieses je nach Länge
* umgebaut.
      IF wa_params-low CP '++.++++'.
        CONCATENATE wa_params-low+3(4) '.'  wa_params-low+0(2)
        INTO wa_params-low.
      ELSEIF wa_params-low CP '++.++.++++'.
        CALL FUNCTION 'CONVERT_DATE_TO_INTERNAL'
             EXPORTING
                  date_external = wa_params-low
             IMPORTING
                  date_internal = wa_params-low.
      ENDIF.

      ASSIGN (wa_params-selname) TO &amp;lt;wa&amp;gt;.

      &amp;lt;wa&amp;gt; = wa_params-low.
    ELSEIF wa_params-kind = 'S'.
      CONCATENATE wa_params-selname '[]' INTO lv_selname.
      ASSIGN (lv_selname) TO &amp;lt;table&amp;gt;.
      ASSIGN (wa_params-selname) TO &amp;lt;wa&amp;gt;.

      CLEAR &amp;lt;wa&amp;gt;.

      ASSIGN COMPONENT 'OPTION' OF STRUCTURE &amp;lt;wa&amp;gt;
      TO &amp;lt;field&amp;gt;.
      &amp;lt;field&amp;gt; = wa_params-option.
      UNASSIGN &amp;lt;field&amp;gt;.

      ASSIGN COMPONENT 'SIGN' OF STRUCTURE &amp;lt;wa&amp;gt;
      TO &amp;lt;field&amp;gt;.
      &amp;lt;field&amp;gt; = wa_params-sign.
      UNASSIGN &amp;lt;field&amp;gt;.

      ASSIGN COMPONENT 'LOW' OF STRUCTURE &amp;lt;wa&amp;gt;
            TO &amp;lt;field&amp;gt;.
      IF wa_params-low CP '++.++++'.
        CONCATENATE wa_params-low+3(4) '.'  wa_params-low+0(2)
        INTO wa_params-low.
      ELSEIF wa_params-low CP '++.++.++++'.
        CALL FUNCTION 'CONVERT_DATE_TO_INTERNAL'
             EXPORTING
                  date_external = wa_params-low
             IMPORTING
                  date_internal = &amp;lt;field&amp;gt;.
      ELSE.
        &amp;lt;field&amp;gt; = wa_params-low.
      ENDIF.
      UNASSIGN &amp;lt;field&amp;gt;.

* Wenn es ein Range ist, dann wird auch das zweite Feld umgesetzt.
      IF wa_params-option = 'BT'.
        ASSIGN COMPONENT 'HIGH' OF STRUCTURE &amp;lt;wa&amp;gt;
        TO &amp;lt;field&amp;gt;.
        IF wa_params-low CP '++.++++'.
          CONCATENATE wa_params-low+3(4) '.'  wa_params-low+0(2)
          INTO wa_params-low.
        ELSEIF wa_params-high CP '++.++.++++'.
          CALL FUNCTION 'CONVERT_DATE_TO_INTERNAL'
               EXPORTING
                    date_external = wa_params-high
               IMPORTING
                    date_internal = &amp;lt;field&amp;gt;.
        ELSE.
          &amp;lt;field&amp;gt; = wa_params-high.
        ENDIF.
        UNASSIGN &amp;lt;field&amp;gt;.
      ENDIF.

      INSERT &amp;lt;wa&amp;gt; INTO TABLE &amp;lt;table&amp;gt;.
    ENDIF.
    UNASSIGN: &amp;lt;wa&amp;gt;, &amp;lt;table&amp;gt;.
    CLEAR: wa_params.
  ENDLOOP.

  CLEAR: lv_sel, lv_selname.

  CALL METHOD cl_gui_cfw=&amp;gt;flush.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think, that sap not run the conversion exits after loading our variants. Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anton&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Aug 2006 12:51:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-23T12:51:55Z</dc:date>
    <item>
      <title>Conversion problems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problems/m-p/1504038#M233101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope anybody can help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My programm is type module pool. On the left side is a ALV Treecontrol with many entries for subreports. The subreports defined as subscreen and displayed on the right sight of my dynpro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Each subreport has one selection screen. Our users want to save variants like the one in normal reports.&lt;/P&gt;&lt;P&gt;For this requirment we tried to "copy" the sap solution for saving variants.&lt;/P&gt;&lt;P&gt;And here is our problem. Saving and changing the variants is no problem.&lt;/P&gt;&lt;P&gt;After loading the variants we copy the values in the parameters and select-options fields. But not all values where copied correct into the fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example : We have the field impersonal account. In database the value is saved like 0012345678. On select-options-low the value is displayed with 12345678.&lt;/P&gt;&lt;P&gt;But after loading our variant, sap search the database with 12345678 and the result is empty. If sap search with 0012345678 the result is 234 entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the puts the value for impersonal account manual into select-options field, sap search with 0012345678.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is our coding :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loading the Variant :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
FORM load_variant.
  DATA: lv_variant TYPE rsvar-variant.

  IF NOT gv_variant IS INITIAL.
    lv_variant = gv_variant.
  ELSE.
    CALL FUNCTION 'RS_VARIANT_CATALOG'
      EXPORTING
        report                     = sy-cprog
*   NEW_TITLE                  = ' '
        dynnr                      = gv_dynpro
*   INTERNAL_CALL              = ' '
*   MASKED                     = 'X'
*   VARIANT                    = ' '
*   POP_UP                     = ' '
      IMPORTING
        sel_variant                = lv_variant
*   SEL_VARIANT_TEXT           =
* TABLES
*   BELONGING_DYNNR            =
     EXCEPTIONS
       no_report                  = 1
       report_not_existent        = 2
       report_not_supplied        = 3
       no_variants                = 4
       no_variant_selected        = 5
       variant_not_existent       = 6
       OTHERS                     = 7
              .
    IF sy-subrc &amp;lt;&amp;gt; 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
  ENDIF.

  CALL FUNCTION 'RS_VARIANT_CONTENTS'
    EXPORTING
      report                      = sy-cprog
      variant                     = lv_variant
      move_or_write               = 'W'
*   NO_IMPORT                   = ' '
*   EXECUTE_DIRECT              = ' '
* IMPORTING
*   SP                          =
    TABLES
*   L_PARAMS                    =
*   L_PARAMS_NONV               =
*   L_SELOP                     =
*   L_SELOP_NONV                =
      valutab                     = gt_params
*   OBJECTS                     =
*   FREE_SELECTIONS_DESC        =
*   FREE_SELECTIONS_VALUE       =
   EXCEPTIONS
     variant_non_existent        = 1
     variant_obsolete            = 2
     report_not_existent         = 3
     OTHERS                      = 4
            .
  IF sy-subrc &amp;lt;&amp;gt; 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ELSE.
    PERFORM get_screenvalues.
  ENDIF.

  CLEAR: lv_variant, wa_params.
  REFRESH: gt_params.
ENDFORM.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Insert the variant values into the selection screen:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
FORM get_screenvalues.
  DATA: lv_sel(9) TYPE c,
        lv_selname(10) TYPE c.

  DATA: lt_params TYPE TABLE OF rsparams.

  FIELD-SYMBOLS: &amp;lt;table&amp;gt; TYPE ANY TABLE,
                 &amp;lt;wa&amp;gt; TYPE ANY,
                 &amp;lt;field&amp;gt; TYPE ANY.

  DELETE gt_params WHERE low IS initial.

  lt_params[] = gt_params[].
  SORT lt_params BY selname.
  DELETE ADJACENT DUPLICATES FROM lt_params COMPARING selname.

* Suchstring für "Loop at screen" erstellen
  CONCATENATE '++' gv_dynpro_sel '++*' INTO lv_sel.

* Leeren der Dynprofelder. Unterscheiden ob Parameter oder
* Select-Options
  LOOP AT SCREEN.
    IF screen-name CP lv_sel.
      IF screen-group3 = 'PAR'.
        lv_selname = screen-name+0(8).
        ASSIGN (lv_selname) TO &amp;lt;wa&amp;gt;.
        CLEAR &amp;lt;wa&amp;gt;.
      ELSE.
        CONCATENATE screen-name+0(8) '[]' INTO lv_selname.
        ASSIGN (lv_selname) TO &amp;lt;wa&amp;gt;.
        ASSIGN (lv_selname) TO &amp;lt;table&amp;gt;.

        CLEAR &amp;lt;wa&amp;gt;.
        REFRESH &amp;lt;table&amp;gt;.
      ENDIF.
      UNASSIGN: &amp;lt;wa&amp;gt;, &amp;lt;table&amp;gt;.

      MODIFY SCREEN.
      CLEAR lv_selname.
    ENDIF.
  ENDLOOP.

* Suchstring Parameter in der Parametertabelle
  CLEAR lv_sel.
  CONCATENATE '++' gv_dynpro_sel '++' INTO lv_sel.

* Wieder Unterscheidung von Parameter und Select-Options
  LOOP AT gt_params INTO wa_params WHERE selname CP lv_sel.
    IF wa_params-kind = 'P'.
* Wenn ein Datum im Wertefeld, dann wird dieses je nach Länge
* umgebaut.
      IF wa_params-low CP '++.++++'.
        CONCATENATE wa_params-low+3(4) '.'  wa_params-low+0(2)
        INTO wa_params-low.
      ELSEIF wa_params-low CP '++.++.++++'.
        CALL FUNCTION 'CONVERT_DATE_TO_INTERNAL'
             EXPORTING
                  date_external = wa_params-low
             IMPORTING
                  date_internal = wa_params-low.
      ENDIF.

      ASSIGN (wa_params-selname) TO &amp;lt;wa&amp;gt;.

      &amp;lt;wa&amp;gt; = wa_params-low.
    ELSEIF wa_params-kind = 'S'.
      CONCATENATE wa_params-selname '[]' INTO lv_selname.
      ASSIGN (lv_selname) TO &amp;lt;table&amp;gt;.
      ASSIGN (wa_params-selname) TO &amp;lt;wa&amp;gt;.

      CLEAR &amp;lt;wa&amp;gt;.

      ASSIGN COMPONENT 'OPTION' OF STRUCTURE &amp;lt;wa&amp;gt;
      TO &amp;lt;field&amp;gt;.
      &amp;lt;field&amp;gt; = wa_params-option.
      UNASSIGN &amp;lt;field&amp;gt;.

      ASSIGN COMPONENT 'SIGN' OF STRUCTURE &amp;lt;wa&amp;gt;
      TO &amp;lt;field&amp;gt;.
      &amp;lt;field&amp;gt; = wa_params-sign.
      UNASSIGN &amp;lt;field&amp;gt;.

      ASSIGN COMPONENT 'LOW' OF STRUCTURE &amp;lt;wa&amp;gt;
            TO &amp;lt;field&amp;gt;.
      IF wa_params-low CP '++.++++'.
        CONCATENATE wa_params-low+3(4) '.'  wa_params-low+0(2)
        INTO wa_params-low.
      ELSEIF wa_params-low CP '++.++.++++'.
        CALL FUNCTION 'CONVERT_DATE_TO_INTERNAL'
             EXPORTING
                  date_external = wa_params-low
             IMPORTING
                  date_internal = &amp;lt;field&amp;gt;.
      ELSE.
        &amp;lt;field&amp;gt; = wa_params-low.
      ENDIF.
      UNASSIGN &amp;lt;field&amp;gt;.

* Wenn es ein Range ist, dann wird auch das zweite Feld umgesetzt.
      IF wa_params-option = 'BT'.
        ASSIGN COMPONENT 'HIGH' OF STRUCTURE &amp;lt;wa&amp;gt;
        TO &amp;lt;field&amp;gt;.
        IF wa_params-low CP '++.++++'.
          CONCATENATE wa_params-low+3(4) '.'  wa_params-low+0(2)
          INTO wa_params-low.
        ELSEIF wa_params-high CP '++.++.++++'.
          CALL FUNCTION 'CONVERT_DATE_TO_INTERNAL'
               EXPORTING
                    date_external = wa_params-high
               IMPORTING
                    date_internal = &amp;lt;field&amp;gt;.
        ELSE.
          &amp;lt;field&amp;gt; = wa_params-high.
        ENDIF.
        UNASSIGN &amp;lt;field&amp;gt;.
      ENDIF.

      INSERT &amp;lt;wa&amp;gt; INTO TABLE &amp;lt;table&amp;gt;.
    ENDIF.
    UNASSIGN: &amp;lt;wa&amp;gt;, &amp;lt;table&amp;gt;.
    CLEAR: wa_params.
  ENDLOOP.

  CLEAR: lv_sel, lv_selname.

  CALL METHOD cl_gui_cfw=&amp;gt;flush.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think, that sap not run the conversion exits after loading our variants. Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anton&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 12:51:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problems/m-p/1504038#M233101</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T12:51:55Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion problems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problems/m-p/1504039#M233102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go to the Domain level of the impersonal account field and see if there are any conversion routines available.&lt;/P&gt;&lt;P&gt;Or let us know what is the declaration for the impersonal account in your program.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 12:57:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problems/m-p/1504039#M233102</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T12:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion problems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problems/m-p/1504040#M233103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before applying the select statment apply conversion routinue on the field which you will be applying in select statement or if you attach the conversion routinue in the domain level .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raghav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 13:05:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problems/m-p/1504040#M233103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T13:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion problems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problems/m-p/1504041#M233104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;conversion routines is ALPHA. The declaration is mseg-sakto.&lt;/P&gt;&lt;P&gt;Applaying the conversion routines is my workaround. I coded &lt;/P&gt;&lt;P&gt;the program very dynamic because we added every month about one or two reports.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don`t want to applay several conversion exits for different select-options. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anton&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Anton Hartl&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 14:59:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problems/m-p/1504041#M233104</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T14:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion problems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problems/m-p/1504042#M233105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to use CONVERSION_EXIT_ALPHA_INPUT(External to internal) function module for all those selec-options which have alpha conv routine.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;P&gt;(CONVERSION_EXIT_ALPHA_OUTPUT for internal to external)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 15:09:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problems/m-p/1504042#M233105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T15:09:07Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion problems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problems/m-p/1504043#M233106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That's my workaround. But i want sap to do the conversion automatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The program is coded very dynamic. When developer add some new subreports, they needn`t care about saving variants. &lt;/P&gt;&lt;P&gt;It's not very comfortable to start every conversion routines manual.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don`t understand why sap starts the conversion automatic if the user insert the values manual, and don`t start the conversion when the values added by program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anton&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 15:47:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-problems/m-p/1504043#M233106</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T15:47:33Z</dc:date>
    </item>
  </channel>
</rss>

