<?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! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/3477206#M835871</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 a field in an executable program is defined with reference to an ABAP Dictionary field for which possible entries help is defined, the values from the ABAP Dictionary help are automatically displayed when the user calls the F4 help for that field. To create possible values help for input fields that have no Dictionary reference, or to override the help normally linked to the field, you can create an event block for 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;The event is triggered when the user calls the F4 help for the field &amp;lt;field&amp;gt;. If no corresponding event block has been defined, the possible values help from the ABAP Dictionary is displayed, or none at all if the field has no Dictionary reference. If a corresponding event block exists, it takes&lt;/P&gt;&lt;P&gt;precedence over the default possible values help mechanism. It is then up to the programmer to ensure that an appropriate list of values is displayed, and that the user can choose a value from it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot declare the event block AT SELECTION-SCREEN ON VALUE-REQUEST for input fields on the selection screen that are declared within a logical database. You cannot override the possible values help mechanism of a logical database within the program. You can define separate help within the logical database program using the VALUE-REQUEST option in the PARAMETERS and SELECT-OPTIONS statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex.&lt;/P&gt;&lt;P&gt;REPORT SELECTION_SCREEN_F4_DEMO.&lt;/P&gt;&lt;P&gt;PARAMETERS: P_CARR_1 TYPE SPFLI-CARRID,&lt;/P&gt;&lt;P&gt;P_CARR_2 TYPE SPFLI-CARRID.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_CARR_2.&lt;/P&gt;&lt;P&gt;CALL SCREEN 100 STARTING AT 10 5&lt;/P&gt;&lt;P&gt;ENDING AT 50 10.&lt;/P&gt;&lt;P&gt;MODULE VALUE_LIST OUTPUT.&lt;/P&gt;&lt;P&gt;SUPPRESS DIALOG.&lt;/P&gt;&lt;P&gt;LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0.&lt;/P&gt;&lt;P&gt;SET PF-STATUS SPACE.&lt;/P&gt;&lt;P&gt;NEW-PAGE NO-TITLE.&lt;/P&gt;&lt;P&gt;WRITE 'Star Alliance' COLOR COL_HEADING.&lt;/P&gt;&lt;P&gt;ULINE.&lt;/P&gt;&lt;P&gt;P_CARR_2 = 'AC '.&lt;/P&gt;&lt;P&gt;WRITE: / P_CARR_2 COLOR COL_KEY, 'Air Canada'.&lt;/P&gt;&lt;P&gt;HIDE P_CARR_2.&lt;/P&gt;&lt;P&gt;P_CARR_2 = 'LH '.&lt;/P&gt;&lt;P&gt;WRITE: / P_CARR_2 COLOR COL_KEY, 'Lufthansa'.&lt;/P&gt;&lt;P&gt;HIDE P_CARR_2.&lt;/P&gt;&lt;P&gt;P_CARR_2 = 'SAS'.&lt;/P&gt;&lt;P&gt;WRITE: / P_CARR_2 COLOR COL_KEY, 'SAS'.&lt;/P&gt;&lt;P&gt;HIDE P_CARR_2.&lt;/P&gt;&lt;P&gt;P_CARR_2 = 'THA'.&lt;/P&gt;&lt;P&gt;4 WRITE: / P_CARR_2 COLOR COL_KEY, 'Thai International'.&lt;/P&gt;&lt;P&gt;HIDE P_CARR_2.&lt;/P&gt;&lt;P&gt;P_CARR_2 = 'UA '.&lt;/P&gt;&lt;P&gt;WRITE: / P_CARR_2 COLOR COL_KEY, 'United Airlines'.&lt;/P&gt;&lt;P&gt;HIDE P_CARR_2.&lt;/P&gt;&lt;P&gt;CLEAR P_CARR_2.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt;CHECK NOT P_CARR_2 IS INITIAL.&lt;/P&gt;&lt;P&gt;LEAVE TO SCREEN 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Mar 2008 06:37:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-05T06:37:40Z</dc:date>
    <item>
      <title>F4 HELP!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/3477205#M835870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Experts!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Question:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to create custom popup display which will appear via F4. given data are:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field1   field2&lt;/P&gt;&lt;P&gt;0        c/r&lt;/P&gt;&lt;P&gt;1        c/0r&lt;/P&gt;&lt;P&gt;2        mail&lt;/P&gt;&lt;P&gt;3        ret&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how would I do this? my parameter is lfa1-dtaws.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;help me please.&lt;/P&gt;&lt;P&gt;poist will be rewarded.&lt;/P&gt;&lt;P&gt;many thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 06:29:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/3477205#M835870</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T06:29:54Z</dc:date>
    </item>
    <item>
      <title>Re: F4 HELP!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/3477206#M835871</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 a field in an executable program is defined with reference to an ABAP Dictionary field for which possible entries help is defined, the values from the ABAP Dictionary help are automatically displayed when the user calls the F4 help for that field. To create possible values help for input fields that have no Dictionary reference, or to override the help normally linked to the field, you can create an event block for 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;The event is triggered when the user calls the F4 help for the field &amp;lt;field&amp;gt;. If no corresponding event block has been defined, the possible values help from the ABAP Dictionary is displayed, or none at all if the field has no Dictionary reference. If a corresponding event block exists, it takes&lt;/P&gt;&lt;P&gt;precedence over the default possible values help mechanism. It is then up to the programmer to ensure that an appropriate list of values is displayed, and that the user can choose a value from it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot declare the event block AT SELECTION-SCREEN ON VALUE-REQUEST for input fields on the selection screen that are declared within a logical database. You cannot override the possible values help mechanism of a logical database within the program. You can define separate help within the logical database program using the VALUE-REQUEST option in the PARAMETERS and SELECT-OPTIONS statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex.&lt;/P&gt;&lt;P&gt;REPORT SELECTION_SCREEN_F4_DEMO.&lt;/P&gt;&lt;P&gt;PARAMETERS: P_CARR_1 TYPE SPFLI-CARRID,&lt;/P&gt;&lt;P&gt;P_CARR_2 TYPE SPFLI-CARRID.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_CARR_2.&lt;/P&gt;&lt;P&gt;CALL SCREEN 100 STARTING AT 10 5&lt;/P&gt;&lt;P&gt;ENDING AT 50 10.&lt;/P&gt;&lt;P&gt;MODULE VALUE_LIST OUTPUT.&lt;/P&gt;&lt;P&gt;SUPPRESS DIALOG.&lt;/P&gt;&lt;P&gt;LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0.&lt;/P&gt;&lt;P&gt;SET PF-STATUS SPACE.&lt;/P&gt;&lt;P&gt;NEW-PAGE NO-TITLE.&lt;/P&gt;&lt;P&gt;WRITE 'Star Alliance' COLOR COL_HEADING.&lt;/P&gt;&lt;P&gt;ULINE.&lt;/P&gt;&lt;P&gt;P_CARR_2 = 'AC '.&lt;/P&gt;&lt;P&gt;WRITE: / P_CARR_2 COLOR COL_KEY, 'Air Canada'.&lt;/P&gt;&lt;P&gt;HIDE P_CARR_2.&lt;/P&gt;&lt;P&gt;P_CARR_2 = 'LH '.&lt;/P&gt;&lt;P&gt;WRITE: / P_CARR_2 COLOR COL_KEY, 'Lufthansa'.&lt;/P&gt;&lt;P&gt;HIDE P_CARR_2.&lt;/P&gt;&lt;P&gt;P_CARR_2 = 'SAS'.&lt;/P&gt;&lt;P&gt;WRITE: / P_CARR_2 COLOR COL_KEY, 'SAS'.&lt;/P&gt;&lt;P&gt;HIDE P_CARR_2.&lt;/P&gt;&lt;P&gt;P_CARR_2 = 'THA'.&lt;/P&gt;&lt;P&gt;4 WRITE: / P_CARR_2 COLOR COL_KEY, 'Thai International'.&lt;/P&gt;&lt;P&gt;HIDE P_CARR_2.&lt;/P&gt;&lt;P&gt;P_CARR_2 = 'UA '.&lt;/P&gt;&lt;P&gt;WRITE: / P_CARR_2 COLOR COL_KEY, 'United Airlines'.&lt;/P&gt;&lt;P&gt;HIDE P_CARR_2.&lt;/P&gt;&lt;P&gt;CLEAR P_CARR_2.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt;CHECK NOT P_CARR_2 IS INITIAL.&lt;/P&gt;&lt;P&gt;LEAVE TO SCREEN 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 06:37:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/3477206#M835871</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T06:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: F4 HELP!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/3477207#M835872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do you want f4 help in the pop up or after selecting from f4 help the pop up is displayed&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;Ramya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 06:39:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/3477207#M835872</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T06:39:16Z</dc:date>
    </item>
    <item>
      <title>Re: F4 HELP!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/3477208#M835873</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;This you can done&lt;/P&gt;&lt;P&gt;If you want to f4 help for FIELD12&lt;/P&gt;&lt;P&gt;write event on that field and also in &lt;/P&gt;&lt;P&gt;the function module that to in the RETFIELD = 'FIELD12'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at event - At selection-screeen on f4 for field12.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;field1 type numc,&lt;/P&gt;&lt;P&gt;field2 type char5,&lt;/P&gt;&lt;P&gt;end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen on value-request for werks.&lt;/P&gt;&lt;P&gt;itab-field1 = 0 &lt;/P&gt;&lt;P&gt;itab-field2 = c/r&lt;/P&gt;&lt;P&gt;append itab.'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab-field1 = 1 &lt;/P&gt;&lt;P&gt;itab-field2 = c/r&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab-field1 = 2 &lt;/P&gt;&lt;P&gt;itab-field2 = mail&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab-field1 = 3&lt;/P&gt;&lt;P&gt;itab-field2 = ret&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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 = 'FIELD12'&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 = 'FIELD12'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;VALUE_TAB = itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will resolve your problem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 06:48:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/3477208#M835873</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T06:48:24Z</dc:date>
    </item>
    <item>
      <title>Re: F4 HELP!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/3477209#M835874</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;DATA : BEGIN OF I_LFA1 OCCURS 0,&lt;/P&gt;&lt;P&gt;              dtwas LIKE lfa1-dtwas,&lt;/P&gt;&lt;P&gt;              field2 LIKe xxxxx-field2&lt;/P&gt;&lt;P&gt;           END OF i_lfa1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SELECT-OPTIONS : S_dtaws FOR  LFA1-dtaws.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_dtaws-low.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SELECT dtwas xxxxx INTO TABLE i_lfa1&lt;/P&gt;&lt;P&gt;  FROM lfa1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SORT i_lfa1 BY dtwas.&lt;/P&gt;&lt;P&gt;  DELETE ADJACENT DUPLICATES FROM i_lfa1 COMPARING dtwas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc EQ 0.&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        = 'DTWAS'&lt;/P&gt;&lt;P&gt;              dynpprog        = ws_repid&lt;/P&gt;&lt;P&gt;              dynpnr          = sy-dynnr&lt;/P&gt;&lt;P&gt;              value_org       = 'S'&lt;/P&gt;&lt;P&gt;         TABLES&lt;/P&gt;&lt;P&gt;              value_tab       = i_lfa1&lt;/P&gt;&lt;P&gt;              return_tab      = v_return&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 sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;s_dtwas-low = v_return-fieldval.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 06:48:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/3477209#M835874</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T06:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: F4 HELP!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/3477210#M835875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Please see this program and follow as it.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES :spfli.


PARAMETERS:
    conn(4) TYPE c,carrier LIKE spfli-carrid.
TYPES: BEGIN OF values,
         carrid TYPE spfli-carrid,
         connid TYPE spfli-connid,
       END OF values.

DATA: progname TYPE sy-repid,
dynnum   TYPE sy-dynnr,
dynpro_values TYPE TABLE OF dynpread,
field_value LIKE LINE OF dynpro_values,
values_tab TYPE TABLE OF values.
INITIALIZATION.

progname = sy-repid.
dynnum   = sy-dynnr.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR carrier.
CLEAR: field_value, dynpro_values.
field_value-fieldname = 'CONN'.
APPEND field_value TO dynpro_values.


CALL FUNCTION 'DYNP_VALUES_READ'
  EXPORTING
    dyname             = progname
    dynumb             = dynnum
    translate_to_upper = 'X'
  TABLES
    dynpfields         = dynpro_values.

READ TABLE dynpro_values INDEX 1 INTO field_value.



  SELECT  carrid connid
    FROM  spfli
  INTO  CORRESPONDING FIELDS OF TABLE values_tab
WHERE connid = field_value-FIELDVALUE.
  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
      retfield    = 'CARRID'
      dynpprog    = progname
      dynpnr      = dynnum
      dynprofield = 'CARRIER'
      value_org   = 'S'
    TABLES
      value_tab   = values_tab.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewards point if it is helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 06:57:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/3477210#M835875</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T06:57: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/3477211#M835876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Either create a search help and attach to the field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or use FM 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 07:01:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/3477211#M835876</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T07:01:35Z</dc:date>
    </item>
  </channel>
</rss>

