<?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: F1 Help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f1-help/m-p/4255819#M1015896</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naimesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your solution is what I want. Thanks for your help! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to extend my question as follow.&lt;/P&gt;&lt;P&gt;I have created a instance method which pops up a F1 Help window in a global class. I want to call this method in Selection-Screen area. For example:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
AT SELECTION-SCREEN ON HELP-REQUEST FOR p_r1.
  call method Z_UPDATE_VAR=&amp;gt;F1HELP
          EXPORTING
            title_in   = 'Title'
            content_in = 'This is a test'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The F1HELP is defined as a static and public method. However, it always complains that the method is unknown or protected or private.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to declare an object of Z_UPDATE_VAR before calling this method, it still complains.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your help is greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Aug 2008 12:54:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-12T12:54:27Z</dc:date>
    <item>
      <title>F1 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f1-help/m-p/4255816#M1015893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am writing a program that updates the variants of other programs. Some of the programs need to be called once a week and while others need to be called several weeks in my program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am desinging a radio button with a T-Code beside in the selection screen area. When I point the T-code and press F1, I need to see a pop up window explainning the information of this program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is that possible to do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help!&lt;/P&gt;&lt;P&gt;Anna&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Anna  Smith on Aug 11, 2008 8:05 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 18:04:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f1-help/m-p/4255816#M1015893</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-11T18:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: F1 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f1-help/m-p/4255817#M1015894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try like this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PARAMETERS: P_R1  RADIOBUTTON GROUP RD1,
            P_R2  RADIOBUTTON GROUP RD1.

AT SELECTION-SCREEN ON HELP-REQUEST FOR P_R1.
  CALL FUNCTION 'POPUP_TO_DISPLAY_TEXT'
    EXPORTING
      TITEL              = 'Help'
      TEXTLINE1          = 'This is test'
*   TEXTLINE2          = ' '
     START_COLUMN       = 25
     START_ROW          = 6
            .
&lt;/CODE&gt;&lt;/PRE&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>Mon, 11 Aug 2008 18:11:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f1-help/m-p/4255817#M1015894</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2008-08-11T18:11:43Z</dc:date>
    </item>
    <item>
      <title>Re: F1 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f1-help/m-p/4255818#M1015895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why don't you maintain the program documentation.  So that you will get standard 'i' button on the application tool bar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 18:22:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f1-help/m-p/4255818#M1015895</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-11T18:22:11Z</dc:date>
    </item>
    <item>
      <title>Re: F1 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f1-help/m-p/4255819#M1015896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naimesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your solution is what I want. Thanks for your help! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to extend my question as follow.&lt;/P&gt;&lt;P&gt;I have created a instance method which pops up a F1 Help window in a global class. I want to call this method in Selection-Screen area. For example:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
AT SELECTION-SCREEN ON HELP-REQUEST FOR p_r1.
  call method Z_UPDATE_VAR=&amp;gt;F1HELP
          EXPORTING
            title_in   = 'Title'
            content_in = 'This is a test'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The F1HELP is defined as a static and public method. However, it always complains that the method is unknown or protected or private.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to declare an object of Z_UPDATE_VAR before calling this method, it still complains.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your help is greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 12:54:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f1-help/m-p/4255819#M1015896</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-12T12:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: F1 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f1-help/m-p/4255820#M1015897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 14:21:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f1-help/m-p/4255820#M1015897</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-12T14:21:33Z</dc:date>
    </item>
  </channel>
</rss>

