<?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: How to handle help function type in a dynpro in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-handle-help-function-type-in-a-dynpro/m-p/7038642#M1500382</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What kind of reaction are you expecting on the click of this button. Do you have to display a search help without a screen field?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Jayesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Jun 2010 12:46:52 GMT</pubDate>
    <dc:creator>jayesh_gupta</dc:creator>
    <dc:date>2010-06-07T12:46:52Z</dc:date>
    <item>
      <title>How to handle help function type in a dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-handle-help-function-type-in-a-dynpro/m-p/7038641#M1500381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've made a button with the functiontype H ( Help Function) and now I'd like to react on this button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But in the POV AND POH I can't call a module, because for this I need an input-/outputfield.&lt;/P&gt;&lt;P&gt;(FIELD "FIELDNAME" MODULE "MODULENAME").&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is, how can I react on this functiontype / "HelpButton" ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jun 2010 11:00:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-handle-help-function-type-in-a-dynpro/m-p/7038641#M1500381</guid>
      <dc:creator>Private_Member_19084</dc:creator>
      <dc:date>2010-06-07T11:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to handle help function type in a dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-handle-help-function-type-in-a-dynpro/m-p/7038642#M1500382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What kind of reaction are you expecting on the click of this button. Do you have to display a search help without a screen field?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Jayesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jun 2010 12:46:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-handle-help-function-type-in-a-dynpro/m-p/7038642#M1500382</guid>
      <dc:creator>jayesh_gupta</dc:creator>
      <dc:date>2010-06-07T12:46:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to handle help function type in a dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-handle-help-function-type-in-a-dynpro/m-p/7038643#M1500383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I would like to show a list of available values BUT without a field.&lt;/P&gt;&lt;P&gt;Therefore I use the function type 'H' on my "help" button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or for what is the function type H on a button good for?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jun 2010 13:42:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-handle-help-function-type-in-a-dynpro/m-p/7038643#M1500383</guid>
      <dc:creator>Private_Member_19084</dc:creator>
      <dc:date>2010-06-07T13:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to handle help function type in a dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-handle-help-function-type-in-a-dynpro/m-p/7038644#M1500384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are two ways:&lt;/P&gt;&lt;P&gt;First************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Process after input.

module user_command.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code inside module user_command:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IF SY-UCOMM = 'H'      "Function code for help button
*fetch all the list and store into an internal table.

* Call another screen to display the internal table.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second*****************&lt;/P&gt;&lt;P&gt;Create an input field on the screen and make it invisible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Process after input.

module user_command.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code inside module user_command:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IF SY-UCOMM = 'H'      "Function code for help button
*fetch all the list and store into an internal table.
CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
*         DDIC_STRUCTURE         = ' '
      retfield               = 'name of field of internal table which is to be returned to invisible dynpro field'
*         PVALKEY                = ' '
     dynpprog               = 'program name'
     dynpnr                 = 'dynpro number'
     dynprofield            =  'name of invisible dynpro field'
*    STEPL                  = 0
*    WINDOW_TITLE           =
*    VALUE                  = ' '
    value_org              = 'S'
*   MULTIPLE_CHOICE        = ' '
*   DISPLAY                = ' '
*   CALLBACK_PROGRAM       = ' '
*   CALLBACK_FORM          = ' '
    TABLES
      value_tab              = Internal table containing list to be displayed
*     FIELD_TAB          =
*     RETURN_TAB             =
*      dynpfld_mapping        = 
   EXCEPTIONS
     parameter_error        = 1
     no_values_found        = 2
     OTHERS                 = 3
            .
 
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jun 2010 14:01:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-handle-help-function-type-in-a-dynpro/m-p/7038644#M1500384</guid>
      <dc:creator>jayesh_gupta</dc:creator>
      <dc:date>2010-06-07T14:01:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to handle help function type in a dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-handle-help-function-type-in-a-dynpro/m-p/7038645#M1500385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When I use the function TYPE "H" (not CODE), the PAI does not start.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And for me it is important, that I don't run through the PAI and PBO, so I need the function type H -&amp;gt; only POV or POH!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jun 2010 14:07:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-handle-help-function-type-in-a-dynpro/m-p/7038645#M1500385</guid>
      <dc:creator>Private_Member_19084</dc:creator>
      <dc:date>2010-06-07T14:07:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to handle help function type in a dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-handle-help-function-type-in-a-dynpro/m-p/7038646#M1500386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Problem solved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jun 2010 07:04:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-handle-help-function-type-in-a-dynpro/m-p/7038646#M1500386</guid>
      <dc:creator>Private_Member_19084</dc:creator>
      <dc:date>2010-06-08T07:04:46Z</dc:date>
    </item>
  </channel>
</rss>

