<?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 F4 Help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/4149440#M992284</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one requirement, in the screen ME21N while giving the vendor if we press the F4 help then automatically all the vendors will be displayed, now my requirement is i want to display only the vendors who are not blocked. For this requirement how should i proceed. Any suggestions...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sunil Kumar Mutyala.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Jul 2008 06:28:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-18T06:28:12Z</dc:date>
    <item>
      <title>F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/4149440#M992284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one requirement, in the screen ME21N while giving the vendor if we press the F4 help then automatically all the vendors will be displayed, now my requirement is i want to display only the vendors who are not blocked. For this requirement how should i proceed. Any suggestions...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sunil Kumar Mutyala.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 06:28:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/4149440#M992284</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T06:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/4149441#M992285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Make your own search help (selecting only non-blocked vendors) and include this in the collective search help KRED.&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;&lt;/P&gt;&lt;P&gt;John.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 06:34:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/4149441#M992285</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T06:34:15Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/4149442#M992286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jhon can u explain it clearly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 06:38:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/4149442#M992286</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T06:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/4149443#M992287</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;Well define your own F4 help&lt;/P&gt;&lt;P&gt; by using the event &lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE REQUEST FOR &amp;lt;field&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And under this event u can use one of the Function modules&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HELP_VALUES_GET_WITH_TABLE&lt;/P&gt;&lt;P&gt;Show a list of possible values for F4 popup help on selection screens. This function module pops up a screen that is just like all the other F4&lt;/P&gt;&lt;P&gt;helps, so it looks like the rest of the SAP system. Very useful for providing dropdowns on fields that do not have them predefined.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lc_werks      LIKE t001w-werks,&lt;/P&gt;&lt;P&gt;ltab_fields LIKE help_value OCCURS 0 with header line,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BEGIN OF ltab_values OCCURS 0,&lt;/P&gt;&lt;P&gt;feld(40) TYPE c,&lt;/P&gt;&lt;P&gt;END OF ltab_values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*-- Set up fields to retrieve data&lt;/P&gt;&lt;P&gt;ltab_fields-tabname    = 'T001W'.&lt;/P&gt;&lt;P&gt;ltab_fields-fieldname  = 'WERKS'.&lt;/P&gt;&lt;P&gt;ltab_fields-selectflag = 'X'.&lt;/P&gt;&lt;P&gt;APPEND ltab_fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ltab_fields-tabname    = 'T001W'.&lt;/P&gt;&lt;P&gt;ltab_fields-fieldname  = 'NAME1'.&lt;/P&gt;&lt;P&gt;ltab_fields-selectflag = space.&lt;/P&gt;&lt;P&gt;APPEND ltab_fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*-- Fill values&lt;/P&gt;&lt;P&gt;select * from t001w.&lt;/P&gt;&lt;P&gt;ltab_values-feld = t001w-werks.&lt;/P&gt;&lt;P&gt;append ltab_values.&lt;/P&gt;&lt;P&gt;ltab_values-feld = t001w-name1.&lt;/P&gt;&lt;P&gt;append ltab_values.&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'HELP_VALUES_GET_WITH_TABLE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;  fieldname                 = 'WERKS'&lt;/P&gt;&lt;P&gt;  tabname                   = 'T001W'&lt;/P&gt;&lt;P&gt;  title_in_values_list      = 'Select a value'&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;  select_value              = lc_werks&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;  fields                    = ltab_fields&lt;/P&gt;&lt;P&gt;  valuetab                  = ltab_values&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;  field_not_in_ddic         = 01&lt;/P&gt;&lt;P&gt;  more_then_one_selectfield = 02&lt;/P&gt;&lt;P&gt;  no_selectfield            = 03.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 06:41:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/4149443#M992287</guid>
      <dc:creator>bpawanchand</dc:creator>
      <dc:date>2008-07-18T06:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/4149444#M992288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi sunil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first u get the detils of blocked vendor list in internal table.after the at selection-screen on value request for fieldname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then in this using fm F4IF_INT_TABLE_VALUE_REQUESTu2019 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so u get press f4 then u will get blockedvendorlist&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 06:47:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/4149444#M992288</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T06:47:06Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/4149445#M992289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want tht to be happen for a standard SAP Screen ME21N, so where shold i write the code&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 06:57:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/4149445#M992289</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T06:57:25Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/4149446#M992290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi sunil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go status and get the program name. check the debug mode where it's trigger in this program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then u will write the code&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 07:02:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/4149446#M992290</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T07:02:17Z</dc:date>
    </item>
  </channel>
</rss>

