<?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 for custom screen.... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-custom-screen/m-p/4610593#M1086405</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;here is small demo for this FM.&lt;/P&gt;&lt;P&gt;Let say i have created a parameter 'P_VBELN' in selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_vbeln.&lt;/P&gt;&lt;P&gt;  PERFORM value_request_status USING 'P_VBELN'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM value_request_status USING lp_field TYPE dynfnam.&lt;/P&gt;&lt;P&gt;  TYPES: BEGIN OF ly_value,&lt;/P&gt;&lt;P&gt;           vbeln TYPE vbak-vbeln,&lt;/P&gt;&lt;P&gt;           ernam type vbak-ernam,&lt;/P&gt;&lt;P&gt;         END OF ly_value.&lt;/P&gt;&lt;P&gt;  STATICS lt_values TYPE STANDARD TABLE OF ly_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF lt_values IS INITIAL.&lt;/P&gt;&lt;P&gt;    SELECT vbeln ernam into table lt_values from vbak.&lt;/P&gt;&lt;P&gt;  ENDIF.&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        = 'P_VBELN'&lt;/P&gt;&lt;P&gt;      dynpprog        = syst-repid&lt;/P&gt;&lt;P&gt;      dynpnr          = syst-dynnr&lt;/P&gt;&lt;P&gt;      dynprofield     = lp_field&lt;/P&gt;&lt;P&gt;      value_org       = 'S'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab       = lt_values&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      parameter_error = 1&lt;/P&gt;&lt;P&gt;      no_values_found = 2&lt;/P&gt;&lt;P&gt;      others          = 3.&lt;/P&gt;&lt;P&gt;  IF syst-subrc IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Oct 2008 11:34:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-22T11:34:11Z</dc:date>
    <item>
      <title>F4 help for custom screen....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-custom-screen/m-p/4610587#M1086399</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;    I am working on module pool. I have to assign search help to a field on popup screen. This screen field is being referred to a field from the custom table YSD_PROCESS. The search help is not created in the Database table for this field. I need to create the search help through coding. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do i need to use the fn. mod. F4IF_INT_TABLE_VALUE_REQUEST?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- If yes, then what are the parameters i need to paas?&lt;/P&gt;&lt;P&gt;- What should i pass to the parameter Value_tab? &lt;/P&gt;&lt;P&gt;- Do i need to write the code in the AT SELECTION-SCREEN OUTPUT ON VALUE REQUEST event or the PBO of this popup screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help will be appreciated.&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, 22 Oct 2008 08:47:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-custom-screen/m-p/4610587#M1086399</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T08:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help for custom screen....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-custom-screen/m-p/4610588#M1086400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check this example : This is a report program, * In your case you will call the function in the POV of that field.*&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT  Z_F4_HELP                               .

parameter p_loekz(1) type c.

data : begin of it_loekz occurs 0,
  l_loekz like ekpo-loekz,
  text(10) type c,
  end of it_loekz.
data : lw_field_name type DYNFNAM.

data gv_choice like sy-tabix.

at selection-screen on value-request for p_loekz.

LW_FIELD_NAME = 'P_LOEKZ'.

it_loekz-l_loekz = 'S'.
it_loekz-text = ' Locked'.
append it_loekz.
clear it_loekz.

it_loekz-l_loekz = 'L'.
it_loekz-text = ' Deleted'.
append it_loekz.
clear it_loekz.

    CALL FUNCTION 'POPUP_WITH_TABLE_DISPLAY'
      EXPORTING
        endpos_col   = 30
        endpos_row   = 5
        startpos_col = 20
        startpos_row = 5
        titletext    = 'Select a Deletion indicator'
      IMPORTING
        choise       = gv_choice
      TABLES
        valuetab     = it_loekz
      EXCEPTIONS
        break_off    = 1
        OTHERS       = 2.

   READ TABLE it_loekz INDEX gv_choice.
   p_loekz = it_loekz-l_loekz.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer to the example in the link below if you want to use F4IF_INT_TABLE_VALUE_REQUEST&lt;/P&gt;&lt;P&gt;[http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbaac935c111d1829f0000e829fbfe/frameset.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Advait Gode on Oct 22, 2008 10:52 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 08:51:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-custom-screen/m-p/4610588#M1086400</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T08:51:28Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help for custom screen....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-custom-screen/m-p/4610589#M1086401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check the demo programs&lt;/P&gt;&lt;P&gt;DEMO_DYNPRO_F4_HELP_DICTIONARY&lt;/P&gt;&lt;P&gt;DEMO_DYNPRO_F4_HELP_DYNPRO&lt;/P&gt;&lt;P&gt;DEMO_DYNPRO_F4_HELP_MODULE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you understand better&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 08:53:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-custom-screen/m-p/4610589#M1086401</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T08:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help for custom screen....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-custom-screen/m-p/4610590#M1086402</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;if you are using selection screen&lt;/P&gt;&lt;P&gt;then you have to use event AT SELECTION-SCREEN OUTPUT ON VALUE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you are using custom screen(created screen paint)&lt;/P&gt;&lt;P&gt;then you have to use event POV in screen flow logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you have to pass the following parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. RETFIELD         = 'MATNR'&lt;/P&gt;&lt;P&gt;this field should be maintain in internal table. you will get value of MATNR as result.&lt;/P&gt;&lt;P&gt;2.DYNPPROG         = 'PROGNAME'&lt;/P&gt;&lt;P&gt;calling program name&lt;/P&gt;&lt;P&gt;3.DYNPNR           = '100'&lt;/P&gt;&lt;P&gt;calling screen no&lt;/P&gt;&lt;P&gt;4.DYNPROFIELD      = 'WA_MATNR'&lt;/P&gt;&lt;P&gt;screen field name&lt;/P&gt;&lt;P&gt;5.VALUE_ORG        = 'S'&lt;/P&gt;&lt;P&gt;pass alway 'S'&lt;/P&gt;&lt;P&gt;6. VALUE_TAB        = itab&lt;/P&gt;&lt;P&gt;value list table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and have a look into Advait Gode's link.you will get more idea.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 09:15:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-custom-screen/m-p/4610590#M1086402</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T09:15:32Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help for custom screen....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-custom-screen/m-p/4610591#M1086403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Velu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     What should i put in itab?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 09:30:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-custom-screen/m-p/4610591#M1086403</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T09:30:47Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help for custom screen....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-custom-screen/m-p/4610592#M1086404</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;you get all colunms and records from itab. &lt;/P&gt;&lt;P&gt; the follwoing example gives material list with its description.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex. &lt;/P&gt;&lt;P&gt;data: begin of itab,&lt;/P&gt;&lt;P&gt;matnr type makt-matnr,&lt;/P&gt;&lt;P&gt;matkl type makt-matkl,&lt;/P&gt;&lt;P&gt;end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select matnr matkl from makt into table itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function module here.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 09:36:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-custom-screen/m-p/4610592#M1086404</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T09:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help for custom screen....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-custom-screen/m-p/4610593#M1086405</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;here is small demo for this FM.&lt;/P&gt;&lt;P&gt;Let say i have created a parameter 'P_VBELN' in selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_vbeln.&lt;/P&gt;&lt;P&gt;  PERFORM value_request_status USING 'P_VBELN'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM value_request_status USING lp_field TYPE dynfnam.&lt;/P&gt;&lt;P&gt;  TYPES: BEGIN OF ly_value,&lt;/P&gt;&lt;P&gt;           vbeln TYPE vbak-vbeln,&lt;/P&gt;&lt;P&gt;           ernam type vbak-ernam,&lt;/P&gt;&lt;P&gt;         END OF ly_value.&lt;/P&gt;&lt;P&gt;  STATICS lt_values TYPE STANDARD TABLE OF ly_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF lt_values IS INITIAL.&lt;/P&gt;&lt;P&gt;    SELECT vbeln ernam into table lt_values from vbak.&lt;/P&gt;&lt;P&gt;  ENDIF.&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        = 'P_VBELN'&lt;/P&gt;&lt;P&gt;      dynpprog        = syst-repid&lt;/P&gt;&lt;P&gt;      dynpnr          = syst-dynnr&lt;/P&gt;&lt;P&gt;      dynprofield     = lp_field&lt;/P&gt;&lt;P&gt;      value_org       = 'S'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab       = lt_values&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      parameter_error = 1&lt;/P&gt;&lt;P&gt;      no_values_found = 2&lt;/P&gt;&lt;P&gt;      others          = 3.&lt;/P&gt;&lt;P&gt;  IF syst-subrc IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 11:34:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-custom-screen/m-p/4610593#M1086405</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T11:34:11Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help for custom screen....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-custom-screen/m-p/4610594#M1086406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;this is Fm for the F4 help ....&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>Wed, 22 Oct 2008 11:36:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-custom-screen/m-p/4610594#M1086406</guid>
      <dc:creator>BH2408</dc:creator>
      <dc:date>2008-10-22T11:36:02Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help for custom screen....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-custom-screen/m-p/4610595#M1086407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Now, if you are working on Module Pool follow this procedure:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(1) Create the search help via SE11.&lt;/P&gt;&lt;P&gt;(2) Attach the search help to the screen field by clicking on properties in the screen painter and then in the resultant pop-up you will have a box to enter the search help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Minhaj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 21:58:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-custom-screen/m-p/4610595#M1086407</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T21:58:05Z</dc:date>
    </item>
  </channel>
</rss>

