<?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: adding help to field in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-help-to-field/m-p/6877716#M1478071</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;after the parameter name use MATCHCODE-OBJECT name of help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 May 2010 12:44:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-05-06T12:44:53Z</dc:date>
    <item>
      <title>adding help to field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-help-to-field/m-p/6877712#M1478067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;   i have added a field which originally does not have a f4 pushbutton....i have used it in select-options....&lt;/P&gt;&lt;P&gt;but i need to add help button... how can i do that....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;syed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 May 2010 11:03:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-help-to-field/m-p/6877712#M1478067</guid>
      <dc:creator>syed_ibrahim5</dc:creator>
      <dc:date>2010-05-06T11:03:24Z</dc:date>
    </item>
    <item>
      <title>Re: adding help to field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-help-to-field/m-p/6877713#M1478068</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 answer u can get easily get in threads try to search before posting. any ways use this FM &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; F4IF_INT_TABLE_VALUE_REQUEST&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 May 2010 11:52:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-help-to-field/m-p/6877713#M1478068</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-06T11:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: adding help to field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-help-to-field/m-p/6877714#M1478069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;i think u want to add f4 help on select-options.&lt;/P&gt;&lt;P&gt;if yes u can use this code as sample code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT kunnr name1&lt;/P&gt;&lt;P&gt;  FROM kna1&lt;/P&gt;&lt;P&gt;  INTO TABLE it_kna1&lt;/P&gt;&lt;P&gt;  WHERE kunnr IN it_select.&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     = 'KUNNR'&lt;/P&gt;&lt;P&gt;      dynpprog     = sy-repid&lt;/P&gt;&lt;P&gt;      dynpnr       = sy-dynnr&lt;/P&gt;&lt;P&gt;      window_title = 'Customer name'&lt;/P&gt;&lt;P&gt;      value_org    = 'S'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab    = it_kna1[]&lt;/P&gt;&lt;P&gt;      return_tab   = it_f4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR wa_f4.&lt;/P&gt;&lt;P&gt;  READ TABLE it_f4 INTO wa_f4 INDEX 1.&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    s_cust-low = wa_f4-fieldval.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;otherwise please elaborate ur requirement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 May 2010 11:57:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-help-to-field/m-p/6877714#M1478069</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-06T11:57:06Z</dc:date>
    </item>
    <item>
      <title>Re: adding help to field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-help-to-field/m-p/6877715#M1478070</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;try to use the function moduel..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'HELP_VALUES_GET'&lt;/P&gt;&lt;P&gt;Field name        =    &amp;lt;field name in the table which you wants f4 help&amp;gt;&lt;/P&gt;&lt;P&gt;Table Name     = 'MARA' or amy table which you wants f4 Help&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;screen field  = screen field f4 help needed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write the above Fm in at selection sceen on value request &amp;lt;Field-name&amp;gt;.&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;Prabhudas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 May 2010 12:03:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-help-to-field/m-p/6877715#M1478070</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-06T12:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: adding help to field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-help-to-field/m-p/6877716#M1478071</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;after the parameter name use MATCHCODE-OBJECT name of help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 May 2010 12:44:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-help-to-field/m-p/6877716#M1478071</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-06T12:44:53Z</dc:date>
    </item>
  </channel>
</rss>

