<?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 Populating dynamic internal table using work area without loops in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-dynamic-internal-table-using-work-area-without-loops/m-p/6105990#M1361315</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a dynamic internal table and this is my code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
call method cl_alv_table_create=&amp;gt;create_dynamic_table
     exporting
       it_fieldcatalog = LT_FIELDCATALOG
     importing
       ep_table = &amp;lt;FS_DATA&amp;gt;
     exceptions
       generate_subpool_dir_full = 1
       others = 2
		.
if sy-subrc &amp;lt;&amp;gt; 0.
endif.

assign &amp;lt;FS_DATA&amp;gt;-&amp;gt;* to &amp;lt;FS_1&amp;gt;.

create data NEW_LINE like line of &amp;lt;FS_1&amp;gt;.

assign NEW_LINE-&amp;gt;*  to &amp;lt;FS_2&amp;gt;.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now my problem is that i want to populate the internal table &amp;lt;FS_1&amp;gt; without using a loop. Something like populating the work-area &amp;lt;FS_2&amp;gt; one field at a time and then appending it to &amp;lt;FS_1&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The biggest challenge here is that the fieldnames are not know until runtime. So, i cant use expressions like &amp;lt;FS_2&amp;gt;-field1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If Field1 is my field name how do i write code to populate the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if you need clarifications. I know that the explanation is not the best.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Mz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Sep 2009 14:10:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-09-03T14:10:26Z</dc:date>
    <item>
      <title>Populating dynamic internal table using work area without loops</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-dynamic-internal-table-using-work-area-without-loops/m-p/6105990#M1361315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a dynamic internal table and this is my code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
call method cl_alv_table_create=&amp;gt;create_dynamic_table
     exporting
       it_fieldcatalog = LT_FIELDCATALOG
     importing
       ep_table = &amp;lt;FS_DATA&amp;gt;
     exceptions
       generate_subpool_dir_full = 1
       others = 2
		.
if sy-subrc &amp;lt;&amp;gt; 0.
endif.

assign &amp;lt;FS_DATA&amp;gt;-&amp;gt;* to &amp;lt;FS_1&amp;gt;.

create data NEW_LINE like line of &amp;lt;FS_1&amp;gt;.

assign NEW_LINE-&amp;gt;*  to &amp;lt;FS_2&amp;gt;.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now my problem is that i want to populate the internal table &amp;lt;FS_1&amp;gt; without using a loop. Something like populating the work-area &amp;lt;FS_2&amp;gt; one field at a time and then appending it to &amp;lt;FS_1&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The biggest challenge here is that the fieldnames are not know until runtime. So, i cant use expressions like &amp;lt;FS_2&amp;gt;-field1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If Field1 is my field name how do i write code to populate the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if you need clarifications. I know that the explanation is not the best.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Mz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Sep 2009 14:10:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-dynamic-internal-table-using-work-area-without-loops/m-p/6105990#M1361315</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-03T14:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: Populating dynamic internal table using work area without loops</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-dynamic-internal-table-using-work-area-without-loops/m-p/6105991#M1361316</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;PRE&gt;&lt;CODE&gt;The biggest challenge here is that the fieldnames are not know until runtime. So, i cant use expressions like &amp;lt;FS_2&amp;gt;-field1&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This answers your query. Your dynamic internal table is created during runtime. &lt;/P&gt;&lt;P&gt;It as been declared as &amp;lt;fs&amp;gt; type ANYwhich implies that it doesnt hold any particular structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you try to move values using MOVE-CORRESPONDING in a loop, after assigning the reference through a pointer you would see that in DEBUG mode it will show you &amp;lt;FS_2&amp;gt;-field1 has a value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if you try doing some like,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MOVE &amp;lt;fs&amp;gt;-field1 to &amp;lt;FS_2&amp;gt;-field1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will give you a dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as I know, I have faced the same issue once and it didnt work out well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Sep 2009 16:52:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-dynamic-internal-table-using-work-area-without-loops/m-p/6105991#M1361316</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-03T16:52:00Z</dc:date>
    </item>
    <item>
      <title>Re: Populating dynamic internal table using work area without loops</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-dynamic-internal-table-using-work-area-without-loops/m-p/6105992#M1361317</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;U've all information about your fields in catalog table, so how to fill the dynamic table should depend on your source where u get the values to be transfered to the table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; LT_FIELDCATALOG.
  ASSIGN COMPONENT LT_FIELDCATALOG-FIELDNAME OF STRUCTURE &amp;lt;FS_2&amp;gt; TO &amp;lt;FS_3&amp;gt;.

* Here u need a logic in order to decid how to transfer the information:
  CASE  LT_FIELDCATALOG-FIELDNAME.
    WHEN 'FIELD1'.
       SELECT SINGLE * FROM &amp;lt;TABLE&amp;gt; WHERE .......
       IF SY-SUBRC EQ 0.
          &amp;lt;FS_3&amp;gt; = &amp;lt;TABLE&amp;gt;-FIELD1.
       ENDIF. 
     .......
   ENDCASE. 

ENDLOOP.
APPEND &amp;lt;FS_2&amp;gt; TO &amp;lt;FS_1&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Sep 2009 17:11:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-dynamic-internal-table-using-work-area-without-loops/m-p/6105992#M1361317</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-03T17:11:07Z</dc:date>
    </item>
    <item>
      <title>Re: Populating dynamic internal table using work area without loops</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-dynamic-internal-table-using-work-area-without-loops/m-p/6105993#M1361318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Max and Amit for your replies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your reply is actually very near to my requirement. But my problem is that i am not using select statements to fill up my internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me be a bit more precise.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let TAB be my internal table and WA be my work area (Both dynamic)....... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to fillup data in my internal table similar to the funcitonality given below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
clear TAB.
do 10 times.

If (condiiton A).
WA-Field1 = 'XYZ'. &amp;lt;--------------------------
else.
WA-Field1 = 'ABC'. &amp;lt;--------------------------------
endif.

append WA to TAB.


enddo.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here the challenge is that Field1 is not know until runtime. So is there any statement i can use which has the same functionality as the above marked lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Statement &lt;STRONG&gt;Assign Component X of structure Y into Z&lt;/STRONG&gt; assigns the field X of a structure Y into the Field Z. I want to do something like the opposite of this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe a kind of assign Z to component X of  structure Y.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry for the confusion created............ but that is exactly how i feel at the moment. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Mz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Sep 2009 05:42:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-dynamic-internal-table-using-work-area-without-loops/m-p/6105993#M1361318</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-04T05:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: Populating dynamic internal table using work area without loops</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-dynamic-internal-table-using-work-area-without-loops/m-p/6105994#M1361319</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;Please use the following links:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Very useful documents which could solve exactly your problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/8747e990-0201-0010-a69f-c52888feaadf&amp;amp;overridelayout=true" target="test_blank"&gt;https://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/8747e990-0201-0010-a69f-c52888feaadf&amp;amp;overridelayout=true&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/1d22e990-0201-0010-588d-c4b4b431c52b&amp;amp;overridelayout=true" target="test_blank"&gt;https://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/1d22e990-0201-0010-588d-c4b4b431c52b&amp;amp;overridelayout=true&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Happy Learning!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Best Regards,&lt;/P&gt;&lt;P&gt;Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Sep 2009 05:50:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-dynamic-internal-table-using-work-area-without-loops/m-p/6105994#M1361319</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-04T05:50:56Z</dc:date>
    </item>
    <item>
      <title>Re: Populating dynamic internal table using work area without loops</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-dynamic-internal-table-using-work-area-without-loops/m-p/6105995#M1361320</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;My post was a sample only, u can replace the SELECT statament with another statament, but I don't know which is your condition in IF statament.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Maybe a kind of assign Z to component X of structure Y.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No U can't, but &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;ASSIGN COMPONENT X OF STRUCTURE Y TO Z
IF SY-SUBRC EQ 0.
   Z = ....
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this code line just does what u need: assign the value of Z to the component X of structure Y.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let's know more information in order to help you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why do u need a DO cycle? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Sep 2009 07:14:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-dynamic-internal-table-using-work-area-without-loops/m-p/6105995#M1361320</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-04T07:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: Populating dynamic internal table using work area without loops</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-dynamic-internal-table-using-work-area-without-loops/m-p/6105996#M1361321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't know if I fully  understand the requirement. &lt;/P&gt;&lt;P&gt;Maybe you cna use index to point to component rather than using component name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ASSIGN COMPONENT sy-index OF STRUCTURE &amp;lt;wa&amp;gt; TO &amp;lt;comp&amp;gt;.&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mohaiyuddin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Sep 2009 07:32:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-dynamic-internal-table-using-work-area-without-loops/m-p/6105996#M1361321</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-04T07:32:39Z</dc:date>
    </item>
    <item>
      <title>Re: Populating dynamic internal table using work area without loops</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-dynamic-internal-table-using-work-area-without-loops/m-p/6105997#M1361322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi mz,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you should have a look at rtts - run time type services in abap. With special system classes you can get infos about your data types during runtime. As far as I know you can get the structure of dynamic i.e. data types usually you don't know. &lt;/P&gt;&lt;P&gt;(see i.e. cl_abap_typedescr=&amp;gt;describe_by_data().&lt;/P&gt;&lt;P&gt;As far as I understand your problem this is what you need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Sep 2009 07:40:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-dynamic-internal-table-using-work-area-without-loops/m-p/6105997#M1361322</guid>
      <dc:creator>jens_becher</dc:creator>
      <dc:date>2009-09-04T07:40:01Z</dc:date>
    </item>
    <item>
      <title>Re: Populating dynamic internal table using work area without loops</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-dynamic-internal-table-using-work-area-without-loops/m-p/6105998#M1361323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Max and Suresh.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh, the first document was particularly helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is my final code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Data : lt_dyn_table TYPE REF TO data,
       lw_dyn_table TYPE REF TO data,
       lt_fieldcat type lvc_t_fcat,
       lw_fieldcat like line of lt_fieldcat.

field-symbols : &amp;lt;FS_TABLE&amp;gt; type standard table,
                &amp;lt;FS_WA&amp;gt; type ANY,
                &amp;lt;FS_VARIABLE&amp;gt; type ANY.

clear lt_fieldcat.
lw_fieldcat-fieldname = 'CUST_TEAM'.
lw_fieldcat-inttype = 'C'.
lw_fieldcat-outputlen = '10'.
lw_fieldcat-coltext = 'Customer Team'.
lw_fieldcat-seltext = lw_fieldcat-coltext.
append lw_fieldcat to lt_fieldcat.

lw_fieldcat-fieldname = 'GRP'.
lw_fieldcat-inttype = 'C'.
lw_fieldcat-outputlen = '10'.
lw_fieldcat-coltext = 'Category Group'.
lw_fieldcat-seltext = lw_fieldcat-coltext.

append lw_fieldcat to lt_fieldcat.

CALL METHOD cl_alv_table_create=&amp;gt;create_dynamic_table
EXPORTING
it_fieldcatalog = lt_fieldcat
IMPORTING
ep_table = lt_dyn_table
EXCEPTIONS
generate_subpool_dir_full = 1
OTHERS = 2.
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.

Assign lt_dyn_table-&amp;gt;* to &amp;lt;FS_TABLE&amp;gt;.

create data lw_dyn_table like line of &amp;lt;FS_TABLE&amp;gt;.

Assign lw_dyn_table-&amp;gt;* to &amp;lt;FS_WA&amp;gt;.

Assign component 'CUST_TEAM' of structure &amp;lt;FS_WA&amp;gt; to &amp;lt;FS_VARIABLE&amp;gt;.
&amp;lt;FS_VARIABLE&amp;gt; = 'Team 1'.

Assign component 'GRP' of structure &amp;lt;FS_WA&amp;gt; to &amp;lt;FS_VARIABLE&amp;gt;.
&amp;lt;FS_VARIABLE&amp;gt; = 'GRP1'.

append &amp;lt;FS_WA&amp;gt; to &amp;lt;FS_TABLE&amp;gt;.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Sep 2009 08:45:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-dynamic-internal-table-using-work-area-without-loops/m-p/6105998#M1361323</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-04T08:45:12Z</dc:date>
    </item>
  </channel>
</rss>

