<?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: FM 'HELP_START' in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-help-start/m-p/4071483#M973411</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Patel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this are the items.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway I dont understand anything else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question was who does the FM HELP_START&lt;/P&gt;&lt;P&gt;call and I would like to know the location of this code inside&lt;/P&gt;&lt;P&gt;the code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4	FUNCTION	HELP_START	SAPLSHL2&lt;/P&gt;&lt;P&gt;3	MODULE (PAI)	SAPHLP_PAI	SAPMSHLP&lt;/P&gt;&lt;P&gt;2	MODULE	SYSTEM-EXIT	DEMO_DYNPRO_F4_HELP_DYNPRO&lt;/P&gt;&lt;P&gt;1	EVENT	START-OF-SELECTION	DEMO_DYNPRO_F4_HELP_DYNPRO&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 Jul 2008 22:07:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-01T22:07:34Z</dc:date>
    <item>
      <title>FM 'HELP_START'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-help-start/m-p/4071478#M973406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This Report DEMO_DYNPRO_F4_HELP_DYNPRO&lt;/P&gt;&lt;P&gt;is calling "HELP_START" if you press F4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is where exactly is the call ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I cant find it ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;ertas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2008 20:53:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-help-start/m-p/4071478#M973406</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-01T20:53:02Z</dc:date>
    </item>
    <item>
      <title>Re: FM 'HELP_START'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-help-start/m-p/4071479#M973407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Display help for a field. Useful for doing AT SELECTION SCREEN ON VALUE REQUEST for those fields that do not provide F4 help at the DDIC level. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 CALL FUNCTION 'HELP_START'
       EXPORTING
            HELP_INFOS   = LSTR_HELP_INFO
       IMPORTING
            SELECTION    = LC_SELECTION
            SELECT_VALUE = LC_SELECTION_VALUE
       TABLES
            DYNPSELECT   = FTAB_DYNPSELECT
            DYNPVALUETAB = FTAB_DYNPVALUETAB
       EXCEPTIONS
            OTHERS       = 1.

  IF LC_SELECTION NE SPACE AND SY-SUBRC = 0.
    F_NEWVALUE = LC_SELECTION_VALUE.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this [link|http://abap4.tripod.com/How_to_Create_Popup_Help.html]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2008 20:56:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-help-start/m-p/4071479#M973407</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-07-01T20:56:40Z</dc:date>
    </item>
    <item>
      <title>Re: FM 'HELP_START'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-help-start/m-p/4071480#M973408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok but in the stated report I cant find the call for&lt;/P&gt;&lt;P&gt;HELP_START ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where do they call this Function Module in the program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEMO_DYNPRO_F4_HELP_DYNPRO ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;ertas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2008 21:04:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-help-start/m-p/4071480#M973408</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-01T21:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: FM 'HELP_START'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-help-start/m-p/4071481#M973409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the Debugger, check the CALLS tab, you will find how the FM HELP_START is being called?&lt;/P&gt;&lt;P&gt;Start the System debugging (System &amp;gt; Utilities &amp;gt; Debug System ) and check the CALLS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2008 22:02:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-help-start/m-p/4071481#M973409</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2008-07-01T22:02:24Z</dc:date>
    </item>
    <item>
      <title>Re: FM 'HELP_START'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-help-start/m-p/4071482#M973410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;its in the *       FORM SHOW_HELP        *&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2008 22:05:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-help-start/m-p/4071482#M973410</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-07-01T22:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: FM 'HELP_START'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-help-start/m-p/4071483#M973411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Patel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this are the items.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway I dont understand anything else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question was who does the FM HELP_START&lt;/P&gt;&lt;P&gt;call and I would like to know the location of this code inside&lt;/P&gt;&lt;P&gt;the code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4	FUNCTION	HELP_START	SAPLSHL2&lt;/P&gt;&lt;P&gt;3	MODULE (PAI)	SAPHLP_PAI	SAPMSHLP&lt;/P&gt;&lt;P&gt;2	MODULE	SYSTEM-EXIT	DEMO_DYNPRO_F4_HELP_DYNPRO&lt;/P&gt;&lt;P&gt;1	EVENT	START-OF-SELECTION	DEMO_DYNPRO_F4_HELP_DYNPRO&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2008 22:07:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-help-start/m-p/4071483#M973411</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-01T22:07:34Z</dc:date>
    </item>
    <item>
      <title>Re: FM 'HELP_START'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-help-start/m-p/4071484#M973412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jay who performs this form. Inside of the report&lt;/P&gt;&lt;P&gt;I cant see that. How is the relation between the report&lt;/P&gt;&lt;P&gt;and this form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is like a black magic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ertas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2008 22:10:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-help-start/m-p/4071484#M973412</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-01T22:10:38Z</dc:date>
    </item>
  </channel>
</rss>

