<?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 Parameter in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter/m-p/1171242#M123157</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For an input field defined using parameters,if we want F4 functionality we can use match code. In the same manner if we want F1 functionality how can we achieve that ? If possible please forward me the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Varun.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Feb 2006 22:26:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-21T22:26:03Z</dc:date>
    <item>
      <title>Parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter/m-p/1171242#M123157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For an input field defined using parameters,if we want F4 functionality we can use match code. In the same manner if we want F1 functionality how can we achieve that ? If possible please forward me the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Varun.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2006 22:26:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter/m-p/1171242#M123157</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-21T22:26:03Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter/m-p/1171243#M123158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;Checkout  the code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT DEMO_DYNPRO_F1_HELP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:  TEXT(30),&lt;/P&gt;&lt;P&gt;       VAR(4),&lt;/P&gt;&lt;P&gt;       INT TYPE I,&lt;/P&gt;&lt;P&gt;       LINKS TYPE TABLE OF TLINE,&lt;/P&gt;&lt;P&gt;       FIELD3, FIELD4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES DEMOF1HELP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TEXT = TEXT-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SCREEN 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE CANCEL INPUT.&lt;/P&gt;&lt;P&gt;  LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE F1_HELP_FIELD2 INPUT.&lt;/P&gt;&lt;P&gt;  INT = INT + 1.&lt;/P&gt;&lt;P&gt;  CASE INT.&lt;/P&gt;&lt;P&gt;    WHEN 1.&lt;/P&gt;&lt;P&gt;    VAR = '0100'.&lt;/P&gt;&lt;P&gt;    WHEN 2.&lt;/P&gt;&lt;P&gt;    VAR = '0200'.&lt;/P&gt;&lt;P&gt;    INT = 0.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE F1_HELP_FIELD3 INPUT.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'HELP_OBJECT_SHOW_FOR_FIELD'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            DOKLANGU                      = SY-LANGU&lt;/P&gt;&lt;P&gt;            DOKTITLE                      = TEXT-002&lt;/P&gt;&lt;P&gt;            CALLED_FOR_TAB                = 'DEMOF1HELP'&lt;/P&gt;&lt;P&gt;            CALLED_FOR_FIELD              = 'FIELD1'.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE F1_HELP_FIELD4 INPUT.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'HELP_OBJECT_SHOW'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            DOKCLASS                      = 'TX'&lt;/P&gt;&lt;P&gt;            DOKLANGU                      = SY-LANGU&lt;/P&gt;&lt;P&gt;            DOKNAME                       = 'DEMO_FOR_F1_HELP'&lt;/P&gt;&lt;P&gt;            DOKTITLE                      = TEXT-003&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            LINKS                         = LINKS.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pl award the points .&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2006 22:32:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter/m-p/1171243#M123158</guid>
      <dc:creator>former_member181966</dc:creator>
      <dc:date>2006-02-21T22:32:58Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter/m-p/1171244#M123159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saquib,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you make little easy.. I am not refering to module pool, In this case assume that you have the parameter statement on selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Varun.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2006 22:34:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter/m-p/1171244#M123159</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-21T22:34:57Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter/m-p/1171245#M123160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can put the text in standard sapscript text file via SE71 and then use this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*display help for the ??? field&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON HELP-REQUEST FOR &amp;lt;parameter name&amp;gt;.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'POPUP_DISPLAY_TEXT'&lt;/P&gt;&lt;P&gt;      EXPORTING LANGUAGE     =  SY-LANGU&lt;/P&gt;&lt;P&gt;                POPUP_TITLE  =  'Help for ?????'&lt;/P&gt;&lt;P&gt;                START_COLUMN =  10&lt;/P&gt;&lt;P&gt;                START_ROW    =  3&lt;/P&gt;&lt;P&gt;                TEXT_OBJECT  =  '&amp;lt;text name&amp;gt;'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2006 22:40:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter/m-p/1171245#M123160</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2006-02-21T22:40:01Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter/m-p/1171246#M123161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Neil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can put the text in standard sapscript text file via SE71 and then use this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you elobrate much upon this..Please..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like how do I do that and use in my program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Varun.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2006 22:48:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter/m-p/1171246#M123161</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-21T22:48:28Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter/m-p/1171247#M123162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;YOU CAN ALSO DEFINE HELP LIKE THIS :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INCLUDE DBldbSEL.&lt;/P&gt;&lt;P&gt;INCLUDE DBPNPSEL.&lt;/P&gt;&lt;P&gt;INCLUDE DBPNPCOM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS:PERNR LIKE PA0001-PERNR HELP-REQUEST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as far as standred text  it is concern , just goto-SE73 . CREATE your text  save it . Go to -&amp;gt; header .. Call this using text name,id and object .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*display help for the ??? field&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON HELP-REQUEST FOR &amp;lt;parameter name&amp;gt;.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'POPUP_DISPLAY_TEXT'&lt;/P&gt;&lt;P&gt;EXPORTING LANGUAGE = SY-LANGU&lt;/P&gt;&lt;P&gt;POPUP_TITLE = 'Help for ?????'&lt;/P&gt;&lt;P&gt;START_COLUMN = 10&lt;/P&gt;&lt;P&gt;START_ROW = 3&lt;/P&gt;&lt;P&gt;TEXT_OBJECT = '&amp;lt;text name&amp;gt;'."ID which you create in SE73 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Saquib Khan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2006 22:59:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter/m-p/1171247#M123162</guid>
      <dc:creator>former_member181966</dc:creator>
      <dc:date>2006-02-21T22:59:48Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter/m-p/1171248#M123163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To make it really easy, create a custom data element via SE11.  Here you can add your documentation for the field.  Then in your program, just reference that data element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS: p_test type ztest.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When user hits F1 on this field the documention behind the data element should be fired.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2006 23:06:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter/m-p/1171248#M123163</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-02-21T23:06:15Z</dc:date>
    </item>
  </channel>
</rss>

