<?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: Screens in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/2359983#M521961</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Vikas , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Its very simple ,  when you select any value from the dropdown list , then the screen field already is assigned with the value . i mean the screen field has the value selected , now you can use this field value directly in the PAI .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example :&lt;/P&gt;&lt;P&gt;If 'ZFEATURE21-VNUMBER' is your screen field .and you have selected '1234' from the dropdown list .Now 'ZFEATURE21-VNUMBER contains the value 1234 and if you want to keep this value into a local variable ( L_VNUMBER )then use it like : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     L_VNUMBER = ZFEATURE21-VNUMBER .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Hence l_VNUMBER is with value 1234 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should remember to play with the screen field values  mostly in the PAI of the screen flow logic .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Revert if further help needed !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ranjita&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Jun 2007 06:16:53 GMT</pubDate>
    <dc:creator>former_member196299</dc:creator>
    <dc:date>2007-06-13T06:16:53Z</dc:date>
    <item>
      <title>Screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/2359982#M521960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Below is the module to display list from Internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem is , HOW to get vnumber, kunnr values selected from List to Screen Fields. Pl. help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE create_dropdown_box INPUT.&lt;/P&gt;&lt;P&gt;  SELECT vnumber kunnr dofeature&lt;/P&gt;&lt;P&gt;                  FROM zfeature1&lt;/P&gt;&lt;P&gt;                  INTO CORRESPONDING FIELDS OF TABLE itab2 WHERE vnumber &amp;lt; 200000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      retfield        = 'VNUMBER'&lt;/P&gt;&lt;P&gt;      value_org       = 'S'&lt;/P&gt;&lt;P&gt;      display         = 'F'&lt;/P&gt;&lt;P&gt;      DYNPROFIELD            = 'ZFEATURE21-VNUMBER'&lt;/P&gt;&lt;UL&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;&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab       = itab2&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      parameter_error = 1&lt;/P&gt;&lt;P&gt;      no_values_found = 2&lt;/P&gt;&lt;P&gt;      OTHERS          = 3.&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    ...&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 05:44:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/2359982#M521960</guid>
      <dc:creator>former_member227596</dc:creator>
      <dc:date>2007-06-13T05:44:25Z</dc:date>
    </item>
    <item>
      <title>Re: Screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/2359983#M521961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Vikas , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Its very simple ,  when you select any value from the dropdown list , then the screen field already is assigned with the value . i mean the screen field has the value selected , now you can use this field value directly in the PAI .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example :&lt;/P&gt;&lt;P&gt;If 'ZFEATURE21-VNUMBER' is your screen field .and you have selected '1234' from the dropdown list .Now 'ZFEATURE21-VNUMBER contains the value 1234 and if you want to keep this value into a local variable ( L_VNUMBER )then use it like : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     L_VNUMBER = ZFEATURE21-VNUMBER .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Hence l_VNUMBER is with value 1234 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should remember to play with the screen field values  mostly in the PAI of the screen flow logic .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Revert if further help needed !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ranjita&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 06:16:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/2359983#M521961</guid>
      <dc:creator>former_member196299</dc:creator>
      <dc:date>2007-06-13T06:16:53Z</dc:date>
    </item>
    <item>
      <title>Re: Screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/2359984#M521962</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 use this FM dynp_values_read to read from the screen fields and FM dynp_values_update to update the screen fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vinodh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 06:18:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/2359984#M521962</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-13T06:18:41Z</dc:date>
    </item>
  </channel>
</rss>

