<?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 Re: populating selection screen values automatically in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-selection-screen-values-automatically/m-p/2884333#M677510</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i dont want to press enter button&lt;/P&gt;&lt;P&gt;after selecting a value in a parameter then immediatley i want to populate second para value without any interaction&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Sep 2007 06:42:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-26T06:42:00Z</dc:date>
    <item>
      <title>populating selection screen values automatically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-selection-screen-values-automatically/m-p/2884329#M677506</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;i have a matnr and mtart in a selection screen &lt;/P&gt;&lt;P&gt;after selecting matnr i need to populate mtart automatically without pressing enter button&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i tried this one&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables : mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter : p_matnr like mara-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter : p_mtart like mara-mtart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single mtart from mara into p_mtart where matnr eq p_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but this need enter button, i tried through search helps it is executing in se11 perfectly but if i attach that one in program it is not comming&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2007 06:26:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-selection-screen-values-automatically/m-p/2884329#M677506</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-26T06:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: populating selection screen values automatically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-selection-screen-values-automatically/m-p/2884330#M677507</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;    instead of at selection-screen output you should choose initialization event for the same&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2007 06:31:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-selection-screen-values-automatically/m-p/2884330#M677507</guid>
      <dc:creator>former_member194152</dc:creator>
      <dc:date>2007-09-26T06:31:08Z</dc:date>
    </item>
    <item>
      <title>Re: populating selection screen values automatically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-selection-screen-values-automatically/m-p/2884331#M677508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a sample program.&lt;/P&gt;&lt;P&gt;TABLES: trdir.&lt;/P&gt;&lt;P&gt;PARAMETERS: name TYPE trdir-name.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: subc FOR trdir-subc NO INTERVALS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;DATA: subc1 TYPE trdir-subc.&lt;/P&gt;&lt;P&gt;SELECT SINGLE subc FROM trdir INTO subc1 WHERE name = name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;subc-sign = 'I'.&lt;/P&gt;&lt;P&gt;subc-option = 'EQ'.&lt;/P&gt;&lt;P&gt;subc-low = subc1.&lt;/P&gt;&lt;P&gt;APPEND subc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After entering a program name in parameter and press enter the value will be updated in the select-option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2007 06:37:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-selection-screen-values-automatically/m-p/2884331#M677508</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-26T06:37:37Z</dc:date>
    </item>
    <item>
      <title>Re: populating selection screen values automatically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-selection-screen-values-automatically/m-p/2884332#M677509</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;You can write your own F4 for the Material code field and when assigning the selected Material code back to the field, you can also select the material type for the selected material code and assign it back to the screen field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2007 06:40:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-selection-screen-values-automatically/m-p/2884332#M677509</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-26T06:40:13Z</dc:date>
    </item>
    <item>
      <title>Re: populating selection screen values automatically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-selection-screen-values-automatically/m-p/2884333#M677510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i dont want to press enter button&lt;/P&gt;&lt;P&gt;after selecting a value in a parameter then immediatley i want to populate second para value without any interaction&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2007 06:42:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-selection-screen-values-automatically/m-p/2884333#M677510</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-26T06:42:00Z</dc:date>
    </item>
    <item>
      <title>Re: populating selection screen values automatically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-selection-screen-values-automatically/m-p/2884334#M677511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have a search through SDN for function 'DYNP_VALUES_UPDATE'  e.g. towards the end of the thread:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="3812504"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have provided an example of doing this i.e. writing to a second field after F4 on the first field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2007 06:53:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-selection-screen-values-automatically/m-p/2884334#M677511</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-26T06:53:03Z</dc:date>
    </item>
    <item>
      <title>Re: populating selection screen values automatically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-selection-screen-values-automatically/m-p/2884335#M677512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;amp;#12288;Hi&lt;/P&gt;&lt;P&gt;&amp;amp;#12288;Maybe you can use the class of cl_gui_timer .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2007 06:53:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-selection-screen-values-automatically/m-p/2884335#M677512</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-26T06:53:33Z</dc:date>
    </item>
    <item>
      <title>Re: populating selection screen values automatically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-selection-screen-values-automatically/m-p/2884336#M677513</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;AT SELECTION-SCREEN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;events will be triggered after any action you do on the screen &lt;/P&gt;&lt;P&gt;so with out pressing enter it won't take any value &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or elase you can do one thing &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;enter the values &lt;/P&gt;&lt;P&gt;and click on execute button then automatically that next field value will be inserted and executes perfectly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN events will be triggered only when some perticular action to be done on the selection screen &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if usefull&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2007 07:01:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-selection-screen-values-automatically/m-p/2884336#M677513</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-26T07:01:40Z</dc:date>
    </item>
    <item>
      <title>Re: populating selection screen values automatically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-selection-screen-values-automatically/m-p/2884337#M677514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;this is my idea:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;at selection-screen on value-request for NAME.
*Here you can use without PAI/PBO (Enter) the FMs:
*DYNP_VALUES_READ to read the NAME value from the screen
*and
*DYNP_VALUES_UPDATE to write your new values to the other field 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it can help a little bit..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gianpietro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2007 07:02:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-selection-screen-values-automatically/m-p/2884337#M677514</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-26T07:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: populating selection screen values automatically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-selection-screen-values-automatically/m-p/2884338#M677515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;REPORT ztest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt; t_ret_table LIKE STANDARD TABLE OF ddshretval,&lt;/P&gt;&lt;P&gt; fs_ret_table TYPE ddshretval,&lt;/P&gt;&lt;P&gt; t_dynp_fields LIKE STANDARD TABLE OF dynpread,&lt;/P&gt;&lt;P&gt; fs_dynp_fields TYPE dynpread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETER : p_matnr LIKE mara-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETER : p_mtart LIKE mara-mtart MEMORY ID mta.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*select single mtart from mara into p_mtart where matnr eq p_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      tabname                   = 'MARA'&lt;/P&gt;&lt;P&gt;      fieldname                 = 'MATNR'&lt;/P&gt;&lt;P&gt;     searchhelp                = 'MAT1'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    SHLPPARAM                 = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     dynpprog                  = sy-repid&lt;/P&gt;&lt;P&gt;     dynpnr                    = sy-dynnr&lt;/P&gt;&lt;P&gt;     dynprofield               = 'P_MATNR'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    STEPL                     = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    VALUE                     = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    MULTIPLE_CHOICE           = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    DISPLAY                   = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    SUPPRESS_RECORDLIST       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    CALLBACK_PROGRAM          = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    CALLBACK_FORM             = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    SELECTION_SCREEN          = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    USER_RESET                =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   TABLES&lt;/P&gt;&lt;P&gt;     return_tab                = t_ret_table&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    FIELD_NOT_FOUND           = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    NO_HELP_FOR_FIELD         = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    INCONSISTENT_HELP         = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    NO_VALUES_FOUND           = 4&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    OTHERS                    = 5&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  READ TABLE t_ret_table INTO fs_ret_table INDEX 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR t_dynp_fields.&lt;/P&gt;&lt;P&gt;  fs_dynp_fields-fieldname  = 'P_MATNR'.&lt;/P&gt;&lt;P&gt;  fs_dynp_fields-fieldvalue = fs_ret_table-fieldval.&lt;/P&gt;&lt;P&gt;  APPEND fs_dynp_fields TO t_dynp_fields.&lt;/P&gt;&lt;P&gt;   clear fs_dynp_fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  fs_dynp_fields-fieldname = 'P_MTART'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT SINGLE mtart FROM mara INTO fs_dynp_fields-fieldvalue WHERE matnr EQ fs_ret_table-fieldval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;fs_dynp_fields-fieldvalue =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  APPEND fs_dynp_fields TO t_dynp_fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DYNP_VALUES_UPDATE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      dyname                     = sy-repid&lt;/P&gt;&lt;P&gt;      dynumb                     = sy-dynnr&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      dynpfields                 = t_dynp_fields&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   INVALID_ABAPWORKAREA       = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   INVALID_DYNPROFIELD        = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   INVALID_DYNPRONAME         = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   INVALID_DYNPRONUMMER       = 4&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   INVALID_REQUEST            = 5&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   NO_FIELDDESCRIPTION        = 6&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   UNDEFIND_ERROR             = 7&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   OTHERS                     = 8&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2007 07:16:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-selection-screen-values-automatically/m-p/2884338#M677515</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-26T07:16:35Z</dc:date>
    </item>
  </channel>
</rss>

