<?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 problem with F4IF_INT_TABLE_VALUE_REQUEST in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f4if-int-table-value-request/m-p/4688137#M1102036</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;   I am able to get  f4 help for a screen field using F4IF_INT_TABLE_VALUE_REQUEST FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but if I am trying to select the value, it is always selecting the last column value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is my code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS ON VALUE-REQUEST.&lt;/P&gt;&lt;P&gt;  FIELD afru-zzloc MODULE loc_drop_down1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE loc_drop_down1 INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA : BEGIN OF f4_itab OCCURS 0,&lt;/P&gt;&lt;P&gt;          col1 LIKE zafru_loc-col1,&lt;/P&gt;&lt;P&gt;          col2 LIKE zafru_loc-col2,&lt;/P&gt;&lt;P&gt;          col3 LIKE zafru_loc-col3,&lt;/P&gt;&lt;P&gt;          col4 LIKE zafru_loc-col4,&lt;/P&gt;&lt;P&gt;          col5 LIKE zafru_loc-col5,&lt;/P&gt;&lt;P&gt; END OF f4_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT col1 col2 col3 col4 col5&lt;/P&gt;&lt;P&gt;                  FROM zafru_loc&lt;/P&gt;&lt;P&gt;         INTO TABLE f4_itab.&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    = 'ZZLOC'&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 = 'AFRU-ZZLOC'&lt;/P&gt;&lt;P&gt;     value_org   = 'C'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab   = f4_itab.&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" 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="2" 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;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is wrong with the code?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Nov 2008 07:16:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-04T07:16:13Z</dc:date>
    <item>
      <title>problem with F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f4if-int-table-value-request/m-p/4688137#M1102036</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;   I am able to get  f4 help for a screen field using F4IF_INT_TABLE_VALUE_REQUEST FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but if I am trying to select the value, it is always selecting the last column value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is my code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS ON VALUE-REQUEST.&lt;/P&gt;&lt;P&gt;  FIELD afru-zzloc MODULE loc_drop_down1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE loc_drop_down1 INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA : BEGIN OF f4_itab OCCURS 0,&lt;/P&gt;&lt;P&gt;          col1 LIKE zafru_loc-col1,&lt;/P&gt;&lt;P&gt;          col2 LIKE zafru_loc-col2,&lt;/P&gt;&lt;P&gt;          col3 LIKE zafru_loc-col3,&lt;/P&gt;&lt;P&gt;          col4 LIKE zafru_loc-col4,&lt;/P&gt;&lt;P&gt;          col5 LIKE zafru_loc-col5,&lt;/P&gt;&lt;P&gt; END OF f4_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT col1 col2 col3 col4 col5&lt;/P&gt;&lt;P&gt;                  FROM zafru_loc&lt;/P&gt;&lt;P&gt;         INTO TABLE f4_itab.&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    = 'ZZLOC'&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 = 'AFRU-ZZLOC'&lt;/P&gt;&lt;P&gt;     value_org   = 'C'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab   = f4_itab.&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" 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="2" 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;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is wrong with the code?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 07:16:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f4if-int-table-value-request/m-p/4688137#M1102036</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T07:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: problem with F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f4if-int-table-value-request/m-p/4688138#M1102037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i think here it shuold be value_org = 'S' &lt;/P&gt;&lt;P&gt; and check in the debug with return field .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;br, &lt;/P&gt;&lt;P&gt;vijay.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 07:20:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f4if-int-table-value-request/m-p/4688138#M1102037</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T07:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: problem with F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f4if-int-table-value-request/m-p/4688139#M1102038</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;Try giving column value:&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 = 'COL1'  -&lt;/P&gt;&lt;HR originaltext="----------------------" /&gt;&lt;P&gt;&amp;gt;fieldname &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 = 'AFRU-ZZLOC'&lt;/P&gt;&lt;P&gt;value_org = 'C'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;value_tab = f4_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Saba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 07:22:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f4if-int-table-value-request/m-p/4688139#M1102038</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T07:22:45Z</dc:date>
    </item>
    <item>
      <title>Re: problem with F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f4if-int-table-value-request/m-p/4688140#M1102039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when I am giving value_org = 'S'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting f4 help,  but irrespective of what I select, column 5 value is getting selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there are values like :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A1, A2, ....,A5.&lt;/P&gt;&lt;P&gt;B1,B2,....B5.  in internal table f4_itab. I want B1 as input when I select B1, B2 when I select B2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it is taking B5 only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this code suitable for my requirement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 07:25:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f4if-int-table-value-request/m-p/4688140#M1102039</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T07:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: problem with F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f4if-int-table-value-request/m-p/4688141#M1102040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR &lt;STRONG&gt;s_ZZLOC -low&lt;/STRONG&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 = 'ZZLOC'&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 =  &lt;STRONG&gt;s_zzloc-low&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;value_org = &lt;STRONG&gt;S&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;value_tab = f4_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change the ones in bold.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;POOja&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Pooja Nayak on Nov 4, 2008 12:59 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 07:27:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f4if-int-table-value-request/m-p/4688141#M1102040</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T07:27:37Z</dc:date>
    </item>
    <item>
      <title>Re: problem with F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f4if-int-table-value-request/m-p/4688142#M1102041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;mine is a module pool program. I have mentioned POV earlier, not selection-screen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 07:34:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f4if-int-table-value-request/m-p/4688142#M1102041</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T07:34:35Z</dc:date>
    </item>
    <item>
      <title>Re: problem with F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f4if-int-table-value-request/m-p/4688143#M1102042</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;Do like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA:  GT_RET type TABLE OF DDSHRETVAL WITH HEADER LINE.

CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
EXPORTING
retfield = 'ZZLOC'
dynpprog = sy-repid
dynpnr = sy-dynnr
dynprofield = 'AFRU-ZZLOC'
value_org = 'C'
TABLES
value_tab = f4_itab
RETURN_TAB = GT_RET. " Change Here

READ TABLE GT_RET INDEX 1.
AFRU-ZZLOC = GT_RET-FIELDVAL. " Assign the value here&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 07:37:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f4if-int-table-value-request/m-p/4688143#M1102042</guid>
      <dc:creator>asik_shameem</dc:creator>
      <dc:date>2008-11-04T07:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: problem with F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f4if-int-table-value-request/m-p/4688144#M1102043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please, try this option&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
EXPORTING
retfield = 'COL1'   " the value passed here should be the name of the field in the internal table
dynpprog = sy-repid " it is not recommneded to directly use the sytem variable sy-repid and sy-dynnr
dynpnr = sy-dynnr
dynprofield = 'AFRU-ZZLOC'
value_org = 'S'  " Change the value to 'S'
TABLES
value_tab = f4_itab.
IF sy-subrc 0.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ideally you should assign the values of system variables to local variables and then pass&lt;/P&gt;&lt;P&gt;the local variables to the parameter interface.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 07:49:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f4if-int-table-value-request/m-p/4688144#M1102043</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T07:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: problem with F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f4if-int-table-value-request/m-p/4688145#M1102044</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 function module works when you want f4 help for particular field,here by default its taking last column and giving f4 help to last column .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;because in the &lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;retfield = 'COL5'  you have to pass field name,&lt;/P&gt;&lt;P&gt;so when you use this function module only f4 help for COL4 will appear .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Ankur Sharma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 08:12:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f4if-int-table-value-request/m-p/4688145#M1102044</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T08:12:17Z</dc:date>
    </item>
    <item>
      <title>Re: problem with F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f4if-int-table-value-request/m-p/4688146#M1102045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes, I think this function module wont solve my requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It want a table to popup with values A1 to A5, B1 to B5 etc and when the user clicks on A2, A2 need to be selected into the field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone give some more alternative.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 08:55:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f4if-int-table-value-request/m-p/4688146#M1102045</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T08:55:19Z</dc:date>
    </item>
    <item>
      <title>Re: problem with F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f4if-int-table-value-request/m-p/4688147#M1102046</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;   I have screen-field (location id) when the user press f4 a table with 5 rows and 5 columns should popup. When I select any of the cell in the table that value to be taken as input for the screen-field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to solve this requirement?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 06:35:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f4if-int-table-value-request/m-p/4688147#M1102046</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-05T06:35:22Z</dc:date>
    </item>
    <item>
      <title>Re: problem with F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f4if-int-table-value-request/m-p/4688148#M1102047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;done&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Feb 2009 10:14:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-f4if-int-table-value-request/m-p/4688148#M1102047</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-16T10:14:10Z</dc:date>
    </item>
  </channel>
</rss>

