<?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: On value request? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request/m-p/2315101#M507535</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;"At selection-screen on value request for p_carrid" is used to get the F4 help for the field p_carrid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 May 2007 09:21:39 GMT</pubDate>
    <dc:creator>former_member404244</dc:creator>
    <dc:date>2007-05-28T09:21:39Z</dc:date>
    <item>
      <title>On value request?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request/m-p/2315095#M507529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;what is the use of "At selection screen on value request p_carrid". Plz explain me with the help of examples.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 09:12:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request/m-p/2315095#M507529</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-28T09:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: On value request?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request/m-p/2315096#M507530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the code that u wrote in that will be triggered when u go for F4 on that parameter p_carrid&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go to this program for better understanding&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;demo_selection_screen_events&amp;lt;/u&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will solve ur problem..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&amp;lt;u&amp;gt;Dont forget to reward all the useful replies&amp;lt;/u&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 09:15:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request/m-p/2315096#M507530</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-28T09:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: On value request?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request/m-p/2315097#M507531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;At selection-screen on value request for p_carrid  is used to get the F4 help for that field on selection screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;chk the demo program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEMO_SELECTION_SCREEN_F4&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 09:15:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request/m-p/2315097#M507531</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-28T09:15:44Z</dc:date>
    </item>
    <item>
      <title>Re: On value request?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request/m-p/2315098#M507532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This event is fired when the user hits F4 on the field. This is used to provide F4 Help for the field. Here is a sample program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report zrich_0001 .&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;tables: t001.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;data: begin of it001 occurs 0,&lt;/P&gt;&lt;P&gt;      bukrs type t001-bukrs,&lt;/P&gt;&lt;P&gt;      butxt type t001-butxt,&lt;/P&gt;&lt;P&gt;      ort01 type t001-ort01,&lt;/P&gt;&lt;P&gt;      land1 type t001-land1,&lt;/P&gt;&lt;P&gt;      end of it001.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;select-options s_bukrs for t001-bukrs.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;initialization.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  select bukrs butxt ort01 land1 into table it001 from t001.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;at selection-screen on value-request for s_bukrs-low.&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    = 'BUKRS'&lt;/P&gt;&lt;P&gt;            dynprofield = 'S_BUKRS'&lt;/P&gt;&lt;P&gt;            dynpprog    = sy-cprog&lt;/P&gt;&lt;P&gt;            dynpnr      = sy-dynnr&lt;/P&gt;&lt;P&gt;            value_org   = 'S'&lt;/P&gt;&lt;P&gt;       tables&lt;/P&gt;&lt;P&gt;            value_tab   = it001.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 09:17:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request/m-p/2315098#M507532</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-28T09:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: On value request?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request/m-p/2315099#M507533</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;This is an event trigerred when the user presses F4 button on the selection-screen.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At selection screen on value request for p_carrid will be trigerred when the f4 button is pressed on this parameter. if a search help is attached to the particular field (in se11) then in f4 data comes automatically.. if there is no search help exist we can create our own.. or we can use the fn module 'F4IF_INT_TABLE_VALUE_REQUEST' and populate the f4 data to be displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vidya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 09:18:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request/m-p/2315099#M507533</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-28T09:18:32Z</dc:date>
    </item>
    <item>
      <title>Re: On value request?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request/m-p/2315100#M507534</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;To display help on a particular field, you can use either of following functions in Module defined as normal PAI module:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HELP_OBJECT_SHOW_FOR_FIELD&lt;/P&gt;&lt;P&gt;Displays the data element documentation for components of any structure or DB table from dictionary.&lt;/P&gt;&lt;P&gt;Takes input as Field and Table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HELP_OBJECT_SHOW&lt;/P&gt;&lt;P&gt;display any SAP script document&lt;/P&gt;&lt;P&gt;Takes input as document class (for example, TX for general texts, DE for data element documentation) and the name of the document .&lt;/P&gt;&lt;P&gt;Should also provide Empty internal table as tables parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS ON VALUE-REQUEST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD field name MODULE module name.&lt;/P&gt;&lt;P&gt;&amp;#133;&lt;/P&gt;&lt;P&gt;For Possible values, within module defined above, you should use the general function module HELP_VALUES_GET_WITH_TABLE to get possible values from ABAP Dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some other functions can be used for F4 Help:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;F4IF_FIELD_VALUE_REQUEST&lt;/P&gt;&lt;P&gt;Calls the input help of the ABAP Dictionary dynamically&lt;/P&gt;&lt;P&gt;Takes input as component names of a structure or database table of the ABAP Dictionary&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;F4IF_INT_TABLE_VALUE_REQUEST&lt;/P&gt;&lt;P&gt;Displays a value list that you created in an ABAP program&lt;/P&gt;&lt;P&gt;Takes input as value list is passed to the function module as the table parameter VALUE_TAB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sree&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 09:21:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request/m-p/2315100#M507534</guid>
      <dc:creator>sreeramkumar_madisetty</dc:creator>
      <dc:date>2007-05-28T09:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: On value request?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request/m-p/2315101#M507535</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;"At selection-screen on value request for p_carrid" is used to get the F4 help for the field p_carrid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 09:21:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request/m-p/2315101#M507535</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2007-05-28T09:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: On value request?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request/m-p/2315102#M507536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This was helpful.  Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Janice Bautista on May 15, 2008 9:43 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 07:39:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request/m-p/2315102#M507536</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-15T07:39:49Z</dc:date>
    </item>
  </channel>
</rss>

