<?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: f4 help creation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-creation/m-p/4820662#M1128184</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 better Create a Search help for this Table Field and attach it to the Table Field Data Element...This will solve your problem....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Dec 2008 11:30:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-02T11:30:17Z</dc:date>
    <item>
      <title>f4 help creation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-creation/m-p/4820659#M1128181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for the field zregion1 of the table zbwcntry,i wish to put f4 help in the slection screen of the clasical report.&lt;/P&gt;&lt;P&gt;this f4 help should display all the entries for this field available in the table.&lt;/P&gt;&lt;P&gt;what will be the code and where should i call this.&lt;/P&gt;&lt;P&gt;what will be the select criterion.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2008 11:27:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-creation/m-p/4820659#M1128181</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-02T11:27:38Z</dc:date>
    </item>
    <item>
      <title>Re: f4 help creation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-creation/m-p/4820660#M1128182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the function module 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg. Code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
select-options : s_carrid for.....
 
at selection-screen on s_carrid-low.
 
SELECT carrid carrname
FROM scarr
INTO CORRESPONDING FIELDS OF TABLE itab_carrid.
 
CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
EXPORTING
retfield = 'SCARRID-low'
value_org = 'S'
TABLES
value_tab = itab_carrid
EXCEPTIONS
parameter_error = 1
no_values_found = 2
OTHERS = 3.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2008 11:29:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-creation/m-p/4820660#M1128182</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-02T11:29:55Z</dc:date>
    </item>
    <item>
      <title>Re: f4 help creation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-creation/m-p/4820661#M1128183</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 function module 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options : s_carrid for.....&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;at selection-screen on s_carrid-low.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;SELECT carrid carrname&lt;/P&gt;&lt;P&gt;FROM scarr&lt;/P&gt;&lt;P&gt;INTO CORRESPONDING FIELDS OF TABLE itab_carrid.&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 = 'SCARRID-low'&lt;/P&gt;&lt;P&gt;value_org = 'S'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;value_tab = itab_carrid&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2008 11:30:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-creation/m-p/4820661#M1128183</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-02T11:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: f4 help creation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-creation/m-p/4820662#M1128184</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 better Create a Search help for this Table Field and attach it to the Table Field Data Element...This will solve your problem....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2008 11:30:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-creation/m-p/4820662#M1128184</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-02T11:30:17Z</dc:date>
    </item>
  </channel>
</rss>

