<?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 F4 Help required in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-required/m-p/4781823#M1120205</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;I need to implement F4 help for fields on the screen of a custom infotype. These fields do not have a data elemnt in the PS structure. Pointers on how to give and where to give the code for F4 help will be a great deal of help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TIA.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Nov 2008 06:34:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-18T06:34:32Z</dc:date>
    <item>
      <title>F4 Help required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-required/m-p/4781823#M1120205</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;I need to implement F4 help for fields on the screen of a custom infotype. These fields do not have a data elemnt in the PS structure. Pointers on how to give and where to give the code for F4 help will be a great deal of help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TIA.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 06:34:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-required/m-p/4781823#M1120205</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-18T06:34:32Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-required/m-p/4781824#M1120206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Please refer the link below:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/scn/advancedsearch?query=f4" target="test_blank"&gt;https://www.sdn.sap.com/irj/scn/advancedsearch?query=f4&lt;/A&gt;&lt;EM&gt;Help&lt;/EM&gt;implementation&amp;amp;cat=sdn_all.&lt;/P&gt;&lt;P&gt;hope u'l get an idea in detail.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 06:38:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-required/m-p/4781824#M1120206</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-18T06:38:58Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-required/m-p/4781825#M1120207</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;   if there is no data element, then you can write code for your f4 help in your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   for example :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   process on value-request.&lt;/P&gt;&lt;P&gt;  field zprod_sheet_st-cpgew    module f4_cpgew. where zprod_sheet_st-cpgew is field in your screen.&lt;/P&gt;&lt;P&gt;                                                                         and f4_cpgew is module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module f4_cpgew input.&lt;/P&gt;&lt;P&gt;  if it_cpgew is initial.&lt;/P&gt;&lt;P&gt;    wa_cpgew-cpgew = '1.50'.&lt;/P&gt;&lt;P&gt;    append wa_cpgew to it_cpgew.&lt;/P&gt;&lt;P&gt;    wa_cpgew-cpgew = '1.80'.&lt;/P&gt;&lt;P&gt;    append wa_cpgew to it_cpgew.&lt;/P&gt;&lt;P&gt;    wa_cpgew-cpgew = '0.00'.&lt;/P&gt;&lt;P&gt;    append wa_cpgew to it_cpgew.&lt;/P&gt;&lt;P&gt;    clear wa_cpgew.&lt;/P&gt;&lt;P&gt;  endif.                                                 " of you can select the data into table it_cpgew from database&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  program = sy-repid.&lt;/P&gt;&lt;P&gt;  dynnum  = sy-dynnr.&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        = 'CPGEW'&lt;/P&gt;&lt;P&gt;      dynpprog        = program&lt;/P&gt;&lt;P&gt;      dynpnr          = dynnum&lt;/P&gt;&lt;P&gt;      dynprofield     = 'ZPROD_SHEET_ST-CPGEW'&lt;/P&gt;&lt;P&gt;      value_org       = 'S'&lt;/P&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      value_tab       = it_cpgew[]&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;endmodule.               &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will solve tour problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 06:49:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-required/m-p/4781825#M1120207</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-18T06:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-required/m-p/4781826#M1120208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; For Custom infotypes you attach search help to screen fields. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Go to SE51 and give program and screen name and go to the layout editor. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Double click on the field on the screen for which search help is required Under "Attribute" "Dictionary tab" you can find search help field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajvansh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 06:51:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-required/m-p/4781826#M1120208</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-18T06:51:12Z</dc:date>
    </item>
  </channel>
</rss>

