<?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: F4 help customization in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-customization/m-p/3669009#M883749</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check this....for help....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sapprograms.blogspot.com/" target="test_blank"&gt;http://sapprograms.blogspot.com/&lt;/A&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;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Apr 2008 15:55:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-16T15:55:50Z</dc:date>
    <item>
      <title>F4 help customization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-customization/m-p/3669005#M883745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , I am using the &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to get a custom list of F4 suggestions for a parameter. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then problem is that the Column text is  showing up as the DDIC text .&lt;/P&gt;&lt;P&gt;I am using an internal table&lt;/P&gt;&lt;P&gt;i_tab occurs 0 ,&lt;/P&gt;&lt;P&gt;verid like makl-verid,&lt;/P&gt;&lt;P&gt;end of i_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so Verid is pulling the short text in the data dictionary as its deading in the search help. I want to use my own text , how to achieve this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 15:41:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-customization/m-p/3669005#M883745</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T15:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help customization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-customization/m-p/3669006#M883746</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;Please refer the code below:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PARAMETERS:p_matnr(18) TYPE c.
 
DATA:BEGIN OF itab OCCURS 0,
matnr TYPE matnr,
END OF itab.
 
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_matnr.
 
 
  itab-matnr = 'ABC123456788'.
  APPEND itab.
  itab-matnr = 'BCS123456788'.
  APPEND itab.
  itab-matnr = 'DFC123456788'.
  APPEND itab.
  itab-matnr = 'ASW123456788'.
  APPEND itab.
 
"you can use select statement as well
"incase you are using any table field.
 
 
  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
      retfield    = 'MATNR'
      dynpprog    = sy-repid
      dynpnr      = sy-dynnr
      dynprofield = 'P_MATNR'
      value_org   = 'S'
    TABLES
      value_tab   = itab.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sriram Ponna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 15:43:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-customization/m-p/3669006#M883746</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T15:43:19Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help customization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-customization/m-p/3669007#M883747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am able to generate the search help , with this example the search help will have the heading "Material Number" for the list of materials displayed. I want to have say "Inactive Materials" or any custom text . This is an urgent requirement and any help will be useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 15:48:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-customization/m-p/3669007#M883747</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T15:48:35Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help customization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-customization/m-p/3669008#M883748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a Data Element with the same domain as MATNR and enter your own values for the Field Labels.  In your table def, TYPE the MATNR field to your new Data element&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 15:53:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-customization/m-p/3669008#M883748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T15:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help customization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-customization/m-p/3669009#M883749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check this....for help....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sapprograms.blogspot.com/" target="test_blank"&gt;http://sapprograms.blogspot.com/&lt;/A&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;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 15:55:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-customization/m-p/3669009#M883749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T15:55:50Z</dc:date>
    </item>
  </channel>
</rss>

