<?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 in selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-selection-screen/m-p/6652975#M1445205</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Hi, 
&amp;lt;li&amp;gt; PA0587-EEPFN does not have any Check table and no search help is assigned to this field. That is why F4 help is not displayed. 

Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Mar 2010 08:43:23 GMT</pubDate>
    <dc:creator>venkat_o</dc:creator>
    <dc:date>2010-03-17T08:43:23Z</dc:date>
    <item>
      <title>F4 help in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-selection-screen/m-p/6652971#M1445201</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 am using field EEPFN of table PA0587 in our selection screen like&lt;/P&gt;&lt;P&gt;S_EEPFN FOR PA0587-EEPFN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am unable to see input help means f4 help.Can any body tell me the&lt;/P&gt;&lt;P&gt;solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;rakesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 08:21:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-selection-screen/m-p/6652971#M1445201</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T08:21:47Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-selection-screen/m-p/6652972#M1445202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi  Rakesh Gupta , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The field that you are using as a select option is not a key field and it will not display serach help. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to explicitly write code to display the serach help on selection screen for that field : - PA0587-EEPFN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.abap-tutorials.com/2009/09/21/add-search-help-to-screen-field-in-sap/" target="test_blank"&gt;http://www.abap-tutorials.com/2009/09/21/add-search-help-to-screen-field-in-sap/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.erpgenie.com/sap-technical/abap/call-f4-help-from-selection-screen" target="test_blank"&gt;http://www.erpgenie.com/sap-technical/abap/call-f4-help-from-selection-screen&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can serach in SCN to create a serach help for this field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kittu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 08:37:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-selection-screen/m-p/6652972#M1445202</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T08:37:50Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-selection-screen/m-p/6652973#M1445203</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 hope, since it is not having any search help or match code assign to it, it is not able to prompt a popup for F4 help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this is the case, you can code your own F4 help with custom code&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; at selection-screen on value-request for S_EEPFN -LOW.
  perform F_GET_RELEASED_TRS changing S_EEPFN -LOW.

at selection-screen on value-request for S_EEPFN -HIGH.
  perform F_GET_RELEASED_TRS changing S_EEPFN -HIGH.

 form F_GET_RELEASED_TRS  changing P_EEPFN.
 data: it_tab type value_tab. "declare the internal table as u like  
 data: it_ret type DDSHRETVAL occurs 0 with header line.
  select field1 field2 from XXXX into table it_tab.

  call function 'F4IF_INT_TABLE_VALUE_REQUEST'
    exporting
      RETFIELD    = 'FIELD2' "field name in your value tab i.e it_tab
         VALUE_ORG   = 'S'
    tables
      VALUE_TAB   = it_tab[]
     return_tab       = it_ret[].
if sy-subrc eq 0.
read table it_ret index 1.
p_eepfn = it_ret-fieldval.
endif.
endform.                    " F_GET_RELEASED_TRS&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Praveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 08:37:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-selection-screen/m-p/6652973#M1445203</guid>
      <dc:creator>praveen_hannu</dc:creator>
      <dc:date>2010-03-17T08:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-selection-screen/m-p/6652974#M1445204</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;this field does not have foreign key, search help or table defined in domain.&lt;/P&gt;&lt;P&gt;Create own search help and assign it to the select-option using MODIF ID statement.&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;--&lt;/P&gt;&lt;P&gt;Przemysław&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 08:39:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-selection-screen/m-p/6652974#M1445204</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T08:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-selection-screen/m-p/6652975#M1445205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Hi, 
&amp;lt;li&amp;gt; PA0587-EEPFN does not have any Check table and no search help is assigned to this field. That is why F4 help is not displayed. 

Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 08:43:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-selection-screen/m-p/6652975#M1445205</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2010-03-17T08:43:23Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-selection-screen/m-p/6652976#M1445206</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;   Use the At Selection-screen on &amp;lt;filed&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   and under that pass the internal table from where you need to display the F4 help to the function modue&lt;/P&gt;&lt;P&gt;   F4IF_INT_TABLE_VALUE_REQUEST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Midhun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 08:45:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-selection-screen/m-p/6652976#M1445206</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T08:45:32Z</dc:date>
    </item>
  </channel>
</rss>

