<?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 for Fields in Screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-fields-in-screen/m-p/4777998#M1119527</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to implement F4 help for fields  on the screen. These fields do not have a data elemnt in the PS structure. Pointers on how to give and where to give the code for F$ help will be a great deal of help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TIA.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Nov 2008 06:00:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-18T06:00:32Z</dc:date>
    <item>
      <title>F4 help for Fields in Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-fields-in-screen/m-p/4777998#M1119527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to implement F4 help for fields  on the screen. These fields do not have a data elemnt in the PS structure. Pointers on how to give and where to give the code for F$ help will be a great deal of help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TIA.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 06:00:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-fields-in-screen/m-p/4777998#M1119527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-18T06:00:32Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help for Fields in Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-fields-in-screen/m-p/4777999#M1119528</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;Plz find the below sample code.&lt;/P&gt;&lt;P&gt;It may help u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FORM F_GET_details .
REFRESH INT_RET.

*--THIS WILL FETCH THE details

SELECT a~Bill a~plant Number b~BillingDate 
INTO TABLE int_table
FROM ( ztable_numplant AS a
INNER JOIN
ztable_numdate AS b
ON a~billnimber = b~billnumber ).

IF SY-SUBRC NE 0.
*--MESSAGE IS 'NO data found'
ELSE.
CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
EXPORTING
RETFIELD = 'screen field'
VALUE_ORG = 'S'
TABLES
VALUE_TAB = INT_tab
RETURN_TAB = INT_RET
EXCEPTIONS
PARAMETER_ERROR = 1
NO_VALUES_FOUND = 2
OTHERS = 3.
IF SY-SUBRC &amp;lt;&amp;gt; 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
READ TABLE INT_RET INDEX 1 INTO INT_RET.

WF_data_needed = INT_RET-FIELDVAL.

ENDIF.
ENDFORM.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anversha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 06:05:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-fields-in-screen/m-p/4777999#M1119528</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2008-11-18T06:05:56Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help for Fields in Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-fields-in-screen/m-p/4778000#M1119529</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;1.you can assign search help(F4 help) at design time by double clicking the field.&lt;/P&gt;&lt;P&gt;2.use POV event in screen flow logic and call module for screen field in FIELD statment. &lt;/P&gt;&lt;P&gt;write code in module to show dynamic help by using FM f4if_int_table_value_request.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 08:03:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-fields-in-screen/m-p/4778000#M1119529</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-18T08:03:07Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help for Fields in Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-fields-in-screen/m-p/4778001#M1119530</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;&lt;/P&gt;&lt;P&gt;You can provide the input help to a screen field at PROCESS ON-VALUE REQUEST event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Murthy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 08:28:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-fields-in-screen/m-p/4778001#M1119530</guid>
      <dc:creator>former_member787646</dc:creator>
      <dc:date>2008-11-18T08:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help for Fields in Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-fields-in-screen/m-p/4778002#M1119531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Write this function module  in AT SELECTION SCREEN:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
  EXPORTING
*   DDIC_STRUCTURE         = '/FIR/REHS0BGST21'
    retfield               = 'WERKS'
*   PVALKEY                = ' '
   DYNPPROG               = sy-repid
   DYNPNR                 = sy-dynnr
   DYNPROFIELD            = 'S_WERKS'
*   STEPL                  = 0
*   WINDOW_TITLE           =
*   VALUE                  = ' '
   VALUE_ORG              = 'S'
*   MULTIPLE_CHOICE        = ' '
*   DISPLAY                = 'X'
*   CALLBACK_PROGRAM       = ' '
*   CALLBACK_FORM          = ' '
*   MARK_TAB               =
* IMPORTING
*   USER_RESET             =
  tables
    value_tab              = it_FIRREHS0BGST21[]
*   FIELD_TAB              =
*   RETURN_TAB             =
*   DYNPFLD_MAPPING        =
 EXCEPTIONS
   PARAMETER_ERROR        = 1
   NO_VALUES_FOUND        = 2
   OTHERS                 = 3
          .
IF sy-subrc &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can follow these simple steps for search help:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go to se11==&amp;gt; put some name after ticking search help radiobutton==&amp;gt; create==&amp;gt;&lt;/P&gt;&lt;P&gt;then tick " elementery search help " and press enter ===&amp;gt;then put description and table name in selection method ===&amp;gt;then put the field on which u want search help&lt;/P&gt;&lt;P&gt;in search help parameter==&amp;gt; tick IMP EXP ==&amp;gt; write 1 in lpos and spos===&amp;gt;save and activate===&amp;gt; double click on table name ===&amp;gt;  select that field and press &lt;STRONG&gt;search help tab&lt;/STRONG&gt; above===&amp;gt; then copy  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alok Bansal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 10:35:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-fields-in-screen/m-p/4778002#M1119531</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-18T10:35:15Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help for Fields in Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-fields-in-screen/m-p/4778003#M1119532</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 want to use F4 in the screen, see the following sample :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;process on value-request.
field zebeln     "field name on the screen 
  module mod_get_value_po.

module mod_get_value_po input.

  perform sub_get_sch_data.
  perform sub_show_f4_help_po.

endmodule.      

form sub_get_sch_data.
  select ebeln
           from ekpo
       into table i_sch_hlp
endform.

form sub_show_f4_help_po.
  

  call function 'F4IF_INT_TABLE_VALUE_REQUEST'
  exporting
      retfield               = 'EBELN'
     dynpprog               = 'ZMM16'  "program name
     dynpnr                 =  '0100'       "screen number
     dynprofield            = 'ZEBELN'  " screen field
   tables
      value_tab              = i_sch_hlp
  exceptions
    parameter_error        = 1
    no_values_found        = 2
    others                 = 3
            .
  if sy-subrc &amp;lt;&amp;gt; 0.
    message id sy-msgid type sy-msgty number sy-msgno
            with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  endif.

endform.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Nov 2008 07:58:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-fields-in-screen/m-p/4778003#M1119532</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-19T07:58:00Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help for Fields in Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-fields-in-screen/m-p/4778004#M1119533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check out with this function module &lt;/P&gt;&lt;P&gt;'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Nov 2008 09:02:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-fields-in-screen/m-p/4778004#M1119533</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-19T09:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help for Fields in Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-fields-in-screen/m-p/4778005#M1119534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gu chris&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply&lt;/P&gt;&lt;P&gt;But where should I place this Process on Value Request Event. Between PAI and PBO or after PAI?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TIA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 04:14:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-fields-in-screen/m-p/4778005#M1119534</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T04:14:57Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help for Fields in Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-fields-in-screen/m-p/4778006#M1119535</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;There is no proper order. so, you can write Process on value request anywhere in flow logic. Better follow this sequence PBO,PAI,POV,POH.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 05:15:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-for-fields-in-screen/m-p/4778006#M1119535</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T05:15:04Z</dc:date>
    </item>
  </channel>
</rss>

