<?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: Process on Value-Request in Screen Exit in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-in-screen-exit/m-p/1941414#M388583</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 the FM 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: T005T.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF t_t005 OCCURS 0,&lt;/P&gt;&lt;P&gt;        land1 TYPE t005-land1,&lt;/P&gt;&lt;P&gt;      END OF t_t005.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 1(6) v_text FOR FIELD P_LAND1.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_land1  TYPE t005-land1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;  v_text = 'Country'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_land1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  REFRESH: t_t005.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT land1&lt;/P&gt;&lt;P&gt;         INTO TABLE t_t005&lt;/P&gt;&lt;P&gt;         FROM t005.&lt;/P&gt;&lt;P&gt;&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           DDIC_STRUCTURE   = 'T005'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            PVALKEY          = ' '&lt;/P&gt;&lt;P&gt;            retfield         = 'LAND1'&lt;/P&gt;&lt;P&gt;            dynpprog         = sy-repid&lt;/P&gt;&lt;P&gt;            DYNPNR           = sy-dynnr&lt;/P&gt;&lt;P&gt;            dynprofield      = 'P_LAND1'&lt;/P&gt;&lt;P&gt;            callback_program = sy-repid&lt;/P&gt;&lt;P&gt;            value_org        = 'S'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            value_tab        = t_t005&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;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;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Feb 2007 01:12:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-28T01:12:07Z</dc:date>
    <item>
      <title>Process on Value-Request in Screen Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-in-screen-exit/m-p/1941411#M388580</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 few fields in the screen exit to be supported with F4 Value Help. These values are not from R3 Dictionary Tables. The Values are N, P, T, F, R, K, M, G etc. When the User Clicks the Drop Down, all the possible values should appear in a small window near the screen filed. Can any one please suggest me a suitable solution for this requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your Help in Advance.&lt;/P&gt;&lt;P&gt;Kannan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Feb 2007 01:07:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-in-screen-exit/m-p/1941411#M388580</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-28T01:07:20Z</dc:date>
    </item>
    <item>
      <title>Re: Process on Value-Request in Screen Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-in-screen-exit/m-p/1941412#M388581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why don't you put all the values @ domain level and use them on ur screen. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can assign values @ domain level and can show them on your screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Ashwani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Feb 2007 01:10:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-in-screen-exit/m-p/1941412#M388581</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-28T01:10:48Z</dc:date>
    </item>
    <item>
      <title>Re: Process on Value-Request in Screen Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-in-screen-exit/m-p/1941413#M388582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a Z Domain for the field u wnt and give these values in the Value Range tab of the  Domain.&lt;/P&gt;&lt;P&gt;This is one way you can solve this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Feb 2007 01:11:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-in-screen-exit/m-p/1941413#M388582</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2007-02-28T01:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: Process on Value-Request in Screen Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-in-screen-exit/m-p/1941414#M388583</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 the FM 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: T005T.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF t_t005 OCCURS 0,&lt;/P&gt;&lt;P&gt;        land1 TYPE t005-land1,&lt;/P&gt;&lt;P&gt;      END OF t_t005.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 1(6) v_text FOR FIELD P_LAND1.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_land1  TYPE t005-land1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;  v_text = 'Country'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_land1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  REFRESH: t_t005.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT land1&lt;/P&gt;&lt;P&gt;         INTO TABLE t_t005&lt;/P&gt;&lt;P&gt;         FROM t005.&lt;/P&gt;&lt;P&gt;&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           DDIC_STRUCTURE   = 'T005'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            PVALKEY          = ' '&lt;/P&gt;&lt;P&gt;            retfield         = 'LAND1'&lt;/P&gt;&lt;P&gt;            dynpprog         = sy-repid&lt;/P&gt;&lt;P&gt;            DYNPNR           = sy-dynnr&lt;/P&gt;&lt;P&gt;            dynprofield      = 'P_LAND1'&lt;/P&gt;&lt;P&gt;            callback_program = sy-repid&lt;/P&gt;&lt;P&gt;            value_org        = 'S'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            value_tab        = t_t005&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;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;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Feb 2007 01:12:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-in-screen-exit/m-p/1941414#M388583</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-28T01:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: Process on Value-Request in Screen Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-in-screen-exit/m-p/1941415#M388584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please close the thread if the question is answered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Ashwani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Feb 2007 01:19:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-in-screen-exit/m-p/1941415#M388584</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-28T01:19:00Z</dc:date>
    </item>
  </channel>
</rss>

