<?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 on selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-on-selection-screen/m-p/1668616#M295723</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pramod,&lt;/P&gt;&lt;P&gt;Refer this Help link &lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/79/34a246d9b511d1950e0000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/79/34a246d9b511d1950e0000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hey, you can find a lot help on help.sap.com or else, search the forum here, you get lot of stuff inthis one&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Nov 2006 14:36:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-27T14:36:32Z</dc:date>
    <item>
      <title>F4 on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-on-selection-screen/m-p/1668610#M295717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from which table data is picked when we press F4 on selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kali Pramod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 14:11:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-on-selection-screen/m-p/1668610#M295717</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-27T14:11:05Z</dc:date>
    </item>
    <item>
      <title>Re: F4 on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-on-selection-screen/m-p/1668611#M295718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi it depends on the selection screen parameter declaration, just like this for plant&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;parameters: werks like MARD-werks.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here it gets value from the main table of WERKS that is T001W&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if suppose u want to have F4 help value OR want to customise for ST_NAME... then u do like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR ST_NAME.

CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
EXPORTING
RETFIELD = 'ST_NAME'
DYNPPROG = SY-CPROG
DYNPNR = SY-DYNNR
DYNPROFIELD = 'ST_NAME'
VALUE_ORG = 'S'
TABLES
VALUE_TAB = TEMP_ITAB
RETURN_TAB = RETURN.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please award points if found helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Rahul Kavuri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 14:16:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-on-selection-screen/m-p/1668611#M295718</guid>
      <dc:creator>rahulkavuri</dc:creator>
      <dc:date>2006-11-27T14:16:27Z</dc:date>
    </item>
    <item>
      <title>Re: F4 on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-on-selection-screen/m-p/1668612#M295719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 14:18:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-on-selection-screen/m-p/1668612#M295719</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-27T14:18:27Z</dc:date>
    </item>
    <item>
      <title>Re: F4 on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-on-selection-screen/m-p/1668613#M295720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi it depends on the selection screen parameter&lt;/P&gt;&lt;P&gt;parameters: werks like t001-werks.&lt;/P&gt;&lt;P&gt;here it gets value from the main table of WERKS which is T001&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now u want to have F4 help value for ST_NAME for which there is no search help defined...then u need to do this way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR ST_NAME.&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 = 'ST_NAME'&lt;/P&gt;&lt;P&gt;DYNPPROG = SY-CPROG&lt;/P&gt;&lt;P&gt;DYNPNR = SY-DYNNR&lt;/P&gt;&lt;P&gt;DYNPROFIELD = 'ST_NAME'&lt;/P&gt;&lt;P&gt;VALUE_ORG = 'S'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;VALUE_TAB = TEMP_ITAB&lt;/P&gt;&lt;P&gt;RETURN_TAB = RETURN.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 14:18:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-on-selection-screen/m-p/1668613#M295720</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-27T14:18:51Z</dc:date>
    </item>
    <item>
      <title>Re: F4 on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-on-selection-screen/m-p/1668614#M295721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take an example&lt;/P&gt;&lt;P&gt;Suppose u developed a report with a input value for VBELN which is  sales order&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SO when u press F4 on this field, u will see all the sales order number from VBAK table because VBAK is MASTER table for sales order number.U can see a Search help attached to VBELN field in VBAK table&lt;/P&gt;&lt;P&gt;So when u press F4 this seach help will triggered and gives the output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If no standard search help is no there ,then u can create one OR dynamically thru program u can code like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR ST_NAME.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'F4help_int_table_request'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regs&lt;/P&gt;&lt;P&gt;Manas Ranjan Panda&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 14:22:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-on-selection-screen/m-p/1668614#M295721</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-27T14:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: F4 on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-on-selection-screen/m-p/1668615#M295722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will get the F4 help from the foll. when we click on the field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check Table&lt;/P&gt;&lt;P&gt;Value table&lt;/P&gt;&lt;P&gt;Help View&lt;/P&gt;&lt;P&gt;Search help&lt;/P&gt;&lt;P&gt;At selection-screen on value request for &amp;lt;Feild&amp;gt;&lt;/P&gt;&lt;P&gt;POV event&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 14:29:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-on-selection-screen/m-p/1668615#M295722</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-27T14:29:16Z</dc:date>
    </item>
    <item>
      <title>Re: F4 on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-on-selection-screen/m-p/1668616#M295723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pramod,&lt;/P&gt;&lt;P&gt;Refer this Help link &lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/79/34a246d9b511d1950e0000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/79/34a246d9b511d1950e0000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hey, you can find a lot help on help.sap.com or else, search the forum here, you get lot of stuff inthis one&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 14:36:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-on-selection-screen/m-p/1668616#M295723</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-27T14:36:32Z</dc:date>
    </item>
  </channel>
</rss>

