<?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 as in Std.Table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-as-in-std-table/m-p/5249516#M1212841</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;F4IF_INT_TABLE_VALUE_REQUES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use this fonction module .. then you get that functionality ..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Feb 2009 06:13:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-13T06:13:47Z</dc:date>
    <item>
      <title>F4 help as in Std.Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-as-in-std-table/m-p/5249514#M1212839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want F4 help on more than 2 field in my selection-screen.I want that value appear in second F4 help&lt;/P&gt;&lt;P&gt;corresponds to the value entered by user in first F4 help.&lt;/P&gt;&lt;P&gt;It is working fine when user enter one value in first field,but when he enters more than one input in multiple selection for first field, it is taking last input &amp;amp; shows in second F4 help corresponding to last input.&lt;/P&gt;&lt;P&gt;I want F4 help as in standard table, suppose in table t001l ,if user enter 2 plant &amp;amp; press F4 help for st. loc,it will show oonly those st.loc corresponds to those 2 plant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And also i want to disable field so that can forced user to select from F4 help ,&lt;/P&gt;&lt;P&gt;Aastha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 06:09:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-as-in-std-table/m-p/5249514#M1212839</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T06:09:01Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help as in Std.Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-as-in-std-table/m-p/5249515#M1212840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Use At selection-screen for value-request for bukrs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS: Bukrs TYPE spfli-carrid,
name1 TYPE spfli-carrid.

AT SELECTION-SCREEN ON VALUE-REQUEST FOR name1.
CALL SCREEN 100 STARTING AT 10 5
ENDING AT 50 10.

MODULE value_list OUTPUT.
SUPPRESS DIALOG.
LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0.
SET PF-STATUS space.
NEW-PAGE NO-TITLE.

select single bukrs from &amp;lt;Databasetable&amp;gt; into &amp;lt;ITAB&amp;gt;-BUkrs
where name1 = name1.

Write : / Itab-bukrs.
hide bukrs.
Endselect.
ENDMODULE.

AT LINE-SELECTION.
CHECK NOT name1 IS INITIAL.
LEAVE TO SCREEN 0.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This will resolve the issue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards &lt;/P&gt;&lt;P&gt;gurpreet:)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 06:12:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-as-in-std-table/m-p/5249515#M1212840</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T06:12:36Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help as in Std.Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-as-in-std-table/m-p/5249516#M1212841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;F4IF_INT_TABLE_VALUE_REQUES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use this fonction module .. then you get that functionality ..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 06:13:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-as-in-std-table/m-p/5249516#M1212841</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T06:13:47Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help as in Std.Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-as-in-std-table/m-p/5249517#M1212842</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;STRONG&gt;u can apply search help in following manner:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if the requirement is:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are 2parameters in selection screen. For e.g. matnr and werks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I am giving matnr then respect to that matnr i should get only those plant in F4 help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Solution:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR werks.

select the werks based on plant in internal.table 
use f.m

F4IF_INT_TABLE_VALUE_REQUEST.
and pass the i.tab here in 

tables
value_t = i.tab&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;                                               Or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Follow the psudo code below.

Note: it_matnr has only single field MATNR.

**--- Return table to handle selected field in F4 help ---**


data: it_return like ddshretval occurs 0 with header line.
 
parameters: p_matnr type marc-matnr,
                  p_werks type marc-werks.
 
at selection-screen on value-request for p_repnam.
 
  select matnr
         from marc
         into table it_matnr
         where werks eq p_werks.
 
  call function 'F4IF_INT_TABLE_VALUE_REQUEST'
    exporting
      retfield         = 'OBJ_NAME'
      dynpprog         = sy-cprog
      dynpnr           = sy-dynnr
      value_org        = 'S'
      callback_program = sy-cprog
    tables
      value_tab        = it_matnr
      return_tab       = it_return
    exceptions
      parameter_error  = 1
      no_values_found  = 2.
 
  if sy-subrc eq 0.
    loop at it_return.
      clear p_repnam.
      p_repnam = it_return-fieldval.
    endloop.
 
  endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it will help you&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 06:17:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-as-in-std-table/m-p/5249517#M1212842</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T06:17:04Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help as in Std.Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-as-in-std-table/m-p/5249518#M1212843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Gurpreet,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want it in report not module proramming.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form Create_F4_Help_WERKS.&lt;/P&gt;&lt;P&gt;refresh values1.&lt;/P&gt;&lt;P&gt;select werks name1&lt;/P&gt;&lt;P&gt;into corresponding fields of table values1&lt;/P&gt;&lt;P&gt;from t001w.&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 = 'WERKS'&lt;/P&gt;&lt;P&gt;dynpprog    = sy-cprog&lt;/P&gt;&lt;P&gt;dynpnr      = sy-dynnr&lt;/P&gt;&lt;P&gt;dynprofield = 'S_WERKS'&lt;/P&gt;&lt;P&gt;value_org = 'S'&lt;/P&gt;&lt;P&gt;*multiple_choice = 'X'&lt;/P&gt;&lt;P&gt;display = 'F'&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;value_tab = values1&lt;/P&gt;&lt;P&gt;return_tab = return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;refresh dynfields.&lt;/P&gt;&lt;P&gt;read table return with key fieldname =&lt;/P&gt;&lt;P&gt;'T001W-WERKS'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dynfields-fieldname = return-retfield.&lt;/P&gt;&lt;P&gt;dynfields-fieldvalue = return-fieldval.&lt;/P&gt;&lt;P&gt;append dynfields.&lt;/P&gt;&lt;P&gt;clear dynfields.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 06:18:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-as-in-std-table/m-p/5249518#M1212843</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T06:18:39Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help as in Std.Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-as-in-std-table/m-p/5249519#M1212844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aastha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer this code for &lt;STRONG&gt;F4 help of one field depends on other field&lt;/STRONG&gt;:-&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/scn/wiki?path=/display/snippets/f4%252bhelp%252bof%252bone%252bfield%252bdepends%252bon%252bother%252bfield" target="test_blank"&gt;https://www.sdn.sap.com/irj/scn/wiki?path=/display/snippets/f4%252bhelp%252bof%252bone%252bfield%252bdepends%252bon%252bother%252bfield&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solves your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Tarun Gambhir&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 06:19:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-as-in-std-table/m-p/5249519#M1212844</guid>
      <dc:creator>I355602</dc:creator>
      <dc:date>2009-02-13T06:19:25Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help as in Std.Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-as-in-std-table/m-p/5249520#M1212845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The FM 'DYNP_VALUES_READ' fetches the value entered in the field 'Legreg'. then fetch the corresponding values for 'lictyp' from database table based on the 'legreg' into an  &lt;/P&gt;&lt;P&gt;         internal table and pass it to the FM 'F4IF_INT_TABLE_VALUE_REQUEST'.&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    = 'GEART'&lt;/P&gt;&lt;P&gt;              dynpprog    = sy-repid&lt;/P&gt;&lt;P&gt;              dynpnr        = sy-dynnr&lt;/P&gt;&lt;P&gt;              dynprofield = 'WA_TC-LICTYP'&lt;/P&gt;&lt;P&gt;              value_org   = 'S'&lt;/P&gt;&lt;P&gt;         TABLES&lt;/P&gt;&lt;P&gt;              value_tab   = t_lictyp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the f4 help values for the field 'lictyp' will be filtered based on the value entered in 'legreg'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 06:27:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-as-in-std-table/m-p/5249520#M1212845</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T06:27:40Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help as in Std.Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-as-in-std-table/m-p/5249521#M1212846</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;The code is for Reports only:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just a bit of Module pool Concept is used to call the Additional Screen on F4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your are using function Module it will effect the Performance of your program.&lt;/P&gt;&lt;P&gt;When ever you call function Module the memory of Function Group is also loaded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The codes are implemented by me in many reports .&lt;/P&gt;&lt;P&gt;copy the Code into an editor it will work.:)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Gurpreet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 06:34:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-as-in-std-table/m-p/5249521#M1212846</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T06:34:28Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help as in Std.Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-as-in-std-table/m-p/5249522#M1212847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Rahul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My req is not for two parameters, i want that if user put more than one input in multiple selection then in second F4 help it will filter accordingly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 06:43:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-as-in-std-table/m-p/5249522#M1212847</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T06:43:02Z</dc:date>
    </item>
  </channel>
</rss>

