<?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: F4IF_INT_TABLE_VALUE_REQUEST Problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-problem/m-p/3251711#M776498</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;go through this once&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&amp;#145; &lt;/P&gt;&lt;P&gt; EXPORTING &lt;/P&gt;&lt;P&gt; retfield  = 'MATNR'&lt;/P&gt;&lt;P&gt;DYNPPROG   =  progname&lt;/P&gt;&lt;P&gt;DYNPNR    =  sy-dynnr &lt;/P&gt;&lt;P&gt;DYNPROFIELD = 'MARA-MATNR '&lt;/P&gt;&lt;P&gt;WINDOW_TITLE = ' Select Materials From the List&amp;#145;                                              VALUE_ORG    = 'S&amp;#145;&lt;/P&gt;&lt;P&gt;tables     value_tab = itab&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;&lt;/P&gt;&lt;P&gt;retfield : Name of the column whose value is to be&lt;/P&gt;&lt;P&gt;          returned .&lt;/P&gt;&lt;P&gt; dynpprog :   Name of the program .&lt;/P&gt;&lt;P&gt; dynpnr : value of sy-dynnr&lt;/P&gt;&lt;P&gt; dynprofield : name of the field where value is to be returned&lt;/P&gt;&lt;P&gt; value-org = 'S'&lt;/P&gt;&lt;P&gt;( the internal table to be passed has a flat structure.Every line in VALUE_TAB then corresponds to one line in the list of values)&lt;/P&gt;&lt;P&gt;value_tab : internal table to be passed with values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz reward if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;keep rockin&lt;/P&gt;&lt;P&gt;vivek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 01 Feb 2008 15:02:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-01T15:02:08Z</dc:date>
    <item>
      <title>F4IF_INT_TABLE_VALUE_REQUEST Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-problem/m-p/3251703#M776490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have problem with FM F4IF_INT_TABLE_VALUE_REQUEST&lt;/P&gt;&lt;P&gt;Here is the scenario.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have interbnal table tbwerks[] that contains plant and description(two fields).&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF tbwerks OCCURS 10,&lt;/P&gt;&lt;P&gt;       werks LIKE t001w-werks,&lt;/P&gt;&lt;P&gt;       name1 like t001w-name1,&lt;/P&gt;&lt;P&gt;      END OF tbwerks .&lt;/P&gt;&lt;P&gt;then i am populating values to internal table.&lt;/P&gt;&lt;P&gt;now i want to display all the plants in listbox.&lt;/P&gt;&lt;P&gt;for that i am using the following FM&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        = 'TBWERKS-WERKS'&lt;/P&gt;&lt;P&gt;            value_org       = 'S'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            value_tab       = tbwerks[]&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;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, here i am getting all descriptions insted of plants.&lt;/P&gt;&lt;P&gt;can't we use internal table with two fields here..?&lt;/P&gt;&lt;P&gt;what could be the problem..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sara&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 21:51:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-problem/m-p/3251703#M776490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-15T21:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_INT_TABLE_VALUE_REQUEST Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-problem/m-p/3251704#M776491</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 this...&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;value_tab = tbwerks-werks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 21:56:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-problem/m-p/3251704#M776491</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-15T21:56:55Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_INT_TABLE_VALUE_REQUEST Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-problem/m-p/3251705#M776492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sara,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This function module initially returns only single value.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In order to get two values,  you have to write a simple code for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pass these two parameters in FM&lt;/P&gt;&lt;P&gt;   CALLBACK_PROGRAM&lt;/P&gt;&lt;P&gt;   CALLBACK_FORM&lt;/P&gt;&lt;P&gt;and you have to write code to assign the other value also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shylesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 21:58:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-problem/m-p/3251705#M776492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-15T21:58:59Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_INT_TABLE_VALUE_REQUEST Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-problem/m-p/3251706#M776493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi sailesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i just want to display plants.i don't want to be displayed two columns in listbox.&lt;/P&gt;&lt;P&gt;the thing is, listbox is showing all plant descriptions insted of displaying plants.&lt;/P&gt;&lt;P&gt;though my internal table has plant and description values&lt;/P&gt;&lt;P&gt;i would like to see only plants not descriptions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sara&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 22:08:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-problem/m-p/3251706#M776493</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-15T22:08:09Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_INT_TABLE_VALUE_REQUEST Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-problem/m-p/3251707#M776494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sara,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then i am really not sure.  Coz, I worked on this FM to return two fields.  But try passing the parameter DDIC_STRUCTURE = 'your internal table name'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 22:14:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-problem/m-p/3251707#M776494</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-15T22:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_INT_TABLE_VALUE_REQUEST Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-problem/m-p/3251708#M776495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sara,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your code you are passing retfield wrongly in the function module..Correct it as follows and it should work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF tbwerks OCCURS 10,&lt;/P&gt;&lt;P&gt;werks LIKE t001w-werks,&lt;/P&gt;&lt;P&gt;name1 like t001w-name1,&lt;/P&gt;&lt;P&gt;END OF tbwerks .&lt;/P&gt;&lt;P&gt;then i am populating values to internal table.&lt;/P&gt;&lt;P&gt;now i want to display all the plants in listbox.&lt;/P&gt;&lt;P&gt;for that i am using the following FM&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 =  TBWERKS-WERKS&lt;/P&gt;&lt;P&gt;value_org = 'S'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;value_tab = tbwerks[]&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 0.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if it helps!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anthony.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 22:54:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-problem/m-p/3251708#M776495</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-15T22:54:49Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_INT_TABLE_VALUE_REQUEST Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-problem/m-p/3251709#M776496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&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 = 'TBWERKS-WERKS'&lt;/P&gt;&lt;P&gt;value_org = 'S'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;value_tab = tbwerks  " check this here v use internal table without [].&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 0.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 23:37:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-problem/m-p/3251709#M776496</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-15T23:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_INT_TABLE_VALUE_REQUEST Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-problem/m-p/3251710#M776497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hei Sara,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I've the similar requirement as yours. In my case, the two columns are Administrator and Administrator name ( instead of plant and plant description ) and I've solved the problem this way :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_sachx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM build_dropdown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM build_dropdown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  TYPES:BEGIN OF ty_admin,&lt;/P&gt;&lt;P&gt;         sachx LIKE t526-sachx,&lt;/P&gt;&lt;P&gt;         sachn LIKE t526-sachn,&lt;/P&gt;&lt;P&gt;        END OF ty_admin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA:it_admin  TYPE  TABLE OF ty_admin,&lt;/P&gt;&lt;P&gt;       it_return TYPE STANDARD TABLE OF ddshretval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA:wa_admin  LIKE LINE OF it_admin,&lt;/P&gt;&lt;P&gt;       wa_return LIKE LINE OF it_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA:l_retfield TYPE  dfies-fieldname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Get HR administrators&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SELECT sachx sachn FROM t526 INTO CORRESPONDING FIELDS OF TABLE it_admin&lt;/P&gt;&lt;P&gt;                   WHERE sachx LIKE 'H%'.&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        = l_retfield&lt;/P&gt;&lt;P&gt;      value_org       = 'S'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab       = it_admin&lt;/P&gt;&lt;P&gt;      return_tab      = it_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;&lt;/P&gt;&lt;P&gt;  READ TABLE it_return INTO wa_return INDEX 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  READ TABLE it_admin INTO wa_admin WITH KEY&lt;/P&gt;&lt;P&gt;                  sachn = wa_return-fieldval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WRITE wa_admin-sachx TO p_sachx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Refresh it_admin, otherwise valuse in the drop-down will keep on&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;adding up each time&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  REFRESH:it_admin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " build_dropdown&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; It's working fine...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rudresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 14:59:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-problem/m-p/3251710#M776497</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-01T14:59:55Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_INT_TABLE_VALUE_REQUEST Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-problem/m-p/3251711#M776498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;go through this once&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&amp;#145; &lt;/P&gt;&lt;P&gt; EXPORTING &lt;/P&gt;&lt;P&gt; retfield  = 'MATNR'&lt;/P&gt;&lt;P&gt;DYNPPROG   =  progname&lt;/P&gt;&lt;P&gt;DYNPNR    =  sy-dynnr &lt;/P&gt;&lt;P&gt;DYNPROFIELD = 'MARA-MATNR '&lt;/P&gt;&lt;P&gt;WINDOW_TITLE = ' Select Materials From the List&amp;#145;                                              VALUE_ORG    = 'S&amp;#145;&lt;/P&gt;&lt;P&gt;tables     value_tab = itab&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;&lt;/P&gt;&lt;P&gt;retfield : Name of the column whose value is to be&lt;/P&gt;&lt;P&gt;          returned .&lt;/P&gt;&lt;P&gt; dynpprog :   Name of the program .&lt;/P&gt;&lt;P&gt; dynpnr : value of sy-dynnr&lt;/P&gt;&lt;P&gt; dynprofield : name of the field where value is to be returned&lt;/P&gt;&lt;P&gt; value-org = 'S'&lt;/P&gt;&lt;P&gt;( the internal table to be passed has a flat structure.Every line in VALUE_TAB then corresponds to one line in the list of values)&lt;/P&gt;&lt;P&gt;value_tab : internal table to be passed with values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz reward if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;keep rockin&lt;/P&gt;&lt;P&gt;vivek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 15:02:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-problem/m-p/3251711#M776498</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-01T15:02:08Z</dc:date>
    </item>
  </channel>
</rss>

