<?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: Copying Dynamic Internal Table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/copying-dynamic-internal-table/m-p/3345297#M802095</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can go through this document to understand field symbols, data references and dynamic table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://answers.sap.com/docs/DOC-42525"&gt;http://scn.sap.com/docs/DOC-42525&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Jul 2013 13:20:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2013-07-29T13:20:39Z</dc:date>
    <item>
      <title>Copying Dynamic Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/copying-dynamic-internal-table/m-p/3345288#M802086</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;   &lt;/P&gt;&lt;P&gt;        I have created a Dynamic internal table using field symbols.  Now i need to copy that dynamic itab to another internal table, because I am not familiar with field symbols. Can anybody tell me how can i copy that dyn_itab to another itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code which I used to create dyn_table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LS_FIELDCATALOG-FIELDNAME = 'CHINA_TOT'.&lt;/P&gt;&lt;P&gt;LS_FIELDCATALOG-INTTYPE = 'I'.&lt;/P&gt;&lt;P&gt;append LS_FIELDCATALOG to LT_FIELDCATALOG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign LT_DATA to &amp;lt;FS_DATA&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call method cl_alv_table_create=&amp;gt;create_dynamic_table&lt;/P&gt;&lt;P&gt;     exporting&lt;/P&gt;&lt;P&gt;       it_fieldcatalog = LT_FIELDCATALOG&lt;/P&gt;&lt;P&gt;     importing&lt;/P&gt;&lt;P&gt;       ep_table = &amp;lt;FS_DATA&amp;gt;&lt;/P&gt;&lt;P&gt;     exceptions&lt;/P&gt;&lt;P&gt;       generate_subpool_dir_full = 1&lt;/P&gt;&lt;P&gt;       others = 2&lt;/P&gt;&lt;P&gt;		.&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;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;So &amp;lt;FS_1&amp;gt; now points to our dynamic internal table.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign &amp;lt;FS_DATA&amp;gt;-&amp;gt;* to &amp;lt;FS_1&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HERE &amp;lt;FS_1&amp;gt; is a dynamic itab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 08:29:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/copying-dynamic-internal-table/m-p/3345288#M802086</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-29T08:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: Copying Dynamic Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/copying-dynamic-internal-table/m-p/3345289#M802087</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;you are almost done ok, except some assignments. just go thru the following code, it is perfectly apt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: dy_table type ref to data.&lt;/P&gt;&lt;P&gt;Field-symbols: &amp;lt;fs_data&amp;gt; type standard table, &amp;lt;fs_wa&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call method cl_alv_table_create=&amp;gt;create_dynamic_table&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      it_fieldcatalog = lt_fieldcatalog&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      ep_table        = dy_table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  assign dy_table-&amp;gt;* to &amp;lt;FS_DATA&amp;gt;.&lt;/P&gt;&lt;P&gt;  Create data dy_line like line of &amp;lt;FS_DATA&amp;gt;.&lt;/P&gt;&lt;P&gt;  assign dy_line-&amp;gt;* TO &amp;lt;fs_wa&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you can move the values from &amp;lt;fs_wa&amp;gt; into another itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 09:22:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/copying-dynamic-internal-table/m-p/3345289#M802087</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-29T09:22:42Z</dc:date>
    </item>
    <item>
      <title>Re: Copying Dynamic Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/copying-dynamic-internal-table/m-p/3345290#M802088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Mahesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        Can u please send me some sample code,  how can I assign this dyn_tab fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example: I am giving like this &amp;lt;fs_wa&amp;gt;-field1 = 'Some value'.&lt;/P&gt;&lt;P&gt;but it is giving error. I am not using any assign statement.&lt;/P&gt;&lt;P&gt;&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;Swapna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 09:29:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/copying-dynamic-internal-table/m-p/3345290#M802088</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-29T09:29:15Z</dc:date>
    </item>
    <item>
      <title>Re: Copying Dynamic Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/copying-dynamic-internal-table/m-p/3345291#M802089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Swapna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can able to display the values on the list with the following. But in order to move &lt;/P&gt;&lt;P&gt;the records into another itab, you should have the same structure of itab as that of &amp;lt;dyn_tab&amp;gt;. you can do it by simply MOVE statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT &amp;lt;fs_data&amp;gt; INTO &amp;lt;fs_wa&amp;gt;.&lt;/P&gt;&lt;P&gt;        DO.&lt;/P&gt;&lt;P&gt;         ASSIGN COMPONENT sy-index of structure &amp;lt;fs_wa&amp;gt; to &amp;lt;dyn_field&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         if sy-index = 1.&lt;/P&gt;&lt;P&gt;            write:/ &amp;lt;dyn_field&amp;gt;.&lt;/P&gt;&lt;P&gt;          else.&lt;/P&gt;&lt;P&gt;            write: &amp;lt;dyn_field&amp;gt;.&lt;/P&gt;&lt;P&gt;          endif.&lt;/P&gt;&lt;P&gt;        ENDDO.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&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;Mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 09:39:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/copying-dynamic-internal-table/m-p/3345291#M802089</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-29T09:39:04Z</dc:date>
    </item>
    <item>
      <title>Re: Copying Dynamic Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/copying-dynamic-internal-table/m-p/3345292#M802090</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 with the following as well,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at &amp;lt;fs_data&amp;gt; into &amp;lt;fs_wa&amp;gt;.&lt;/P&gt;&lt;P&gt; MOVE-CORRESPONDING &amp;lt;fs_wa&amp;gt; TO itab.&lt;/P&gt;&lt;P&gt; append itab.&lt;/P&gt;&lt;P&gt;Endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 09:45:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/copying-dynamic-internal-table/m-p/3345292#M802090</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-29T09:45:57Z</dc:date>
    </item>
    <item>
      <title>Re: Copying Dynamic Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/copying-dynamic-internal-table/m-p/3345293#M802091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Mahesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Can u please send me ur personal mail id, so that i can send u my code. I need to change an existing code. In present code all Organizational Units are hard coded and I need to pick the data dynamically from DB table.  The final itab also given with specified fields as org units(hard coded fileds), so I am trying to create this dyn_tab as final table and after creating I need to change my code accordingly.&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;Swapna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 10:03:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/copying-dynamic-internal-table/m-p/3345293#M802091</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-29T10:03:14Z</dc:date>
    </item>
    <item>
      <title>Re: Copying Dynamic Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/copying-dynamic-internal-table/m-p/3345294#M802092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Swapna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you try &lt;/P&gt;&lt;P&gt;Assign Local Copy Of &amp;lt;lt_tab1&amp;gt; to &amp;lt;lt_tab2&amp;gt;.&lt;/P&gt;&lt;P&gt;Check sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here &amp;lt;lt_tab2&amp;gt; is a copy of &amp;lt;lt_tab1&amp;gt; and changes made to &amp;lt;lt_tab2&amp;gt; will not be reflected in &amp;lt;lt_tab1&amp;gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jul 2013 11:30:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/copying-dynamic-internal-table/m-p/3345294#M802092</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-07-29T11:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: Copying Dynamic Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/copying-dynamic-internal-table/m-p/3345295#M802093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jul 2013 11:54:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/copying-dynamic-internal-table/m-p/3345295#M802093</guid>
      <dc:creator>former_member209120</dc:creator>
      <dc:date>2013-07-29T11:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: Copying Dynamic Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/copying-dynamic-internal-table/m-p/3345296#M802094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First you need to create another table with the structure that you have. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;call method cl_alv_table_create=&amp;gt;create_dynamic_table&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; exporting&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; it_fieldcatalog = LT_FIELDCATALOG&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; importing&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ep_table = &amp;lt;FS_DATA2&amp;gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; exceptions&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; generate_subpool_dir_full = 1&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; others = 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field-symbols&amp;nbsp; : &amp;lt;fs_line1&amp;gt;, &amp;lt;fs_line2&amp;gt;, &amp;lt;fs_tmp1&amp;gt;, &amp;lt;fs_tmp2&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;assign &amp;lt;FS_DATA2-&amp;gt;* to &amp;lt;FS_2&amp;gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;Now FS_1 and FS_2 are the tables. &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;Also create work areas for the tables.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: blue;"&gt;CREATE&lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: blue;"&gt;DATA&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: black;"&gt; gw_line1 &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: blue;"&gt;LIKE&lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: blue;"&gt;LINE&lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: blue;"&gt;OF&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: black;"&gt; &amp;lt;fs_1&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: blue;"&gt;CREATE&lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: blue;"&gt;DATA&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: black;"&gt; gw_line2 &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: blue;"&gt;LIKE&lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: blue;"&gt;LINE&lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: blue;"&gt;OF&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: black;"&gt; &amp;lt;fs_2&amp;gt;.&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: blue;"&gt;ASSIGN&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: black;"&gt; gw_line1-&amp;gt;* &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: blue;"&gt;TO&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: black;"&gt; &amp;lt;fs_line1&amp;gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: black;"&gt;assign gw_line2-&amp;gt;* to &amp;lt;fs_line2&amp;gt;.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;With field symbols, you cannot move the rows directly, you will have to move it field by field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once all the values are populated in the first table, copy it with the following logic. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at &amp;lt;fs_1&amp;gt; into &amp;lt;fs_line1&amp;gt;&lt;/P&gt;&lt;P&gt;Loop at &lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;&amp;nbsp; LT_FIELDCATALOG into &lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;LS_FIELDCATALOG.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: blue;"&gt;ASSIGN&lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: blue;"&gt;COMPONENT&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: black;"&gt; ls_fieldcatalog-fieldname &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: blue;"&gt;OF&lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: blue;"&gt;STRUCTURE&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: black;"&gt; &amp;lt;fs_line1&amp;gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: blue;"&gt;TO&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: black;"&gt; &amp;lt;fs_tmp1&amp;gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: blue;"&gt;ASSIGN&lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: blue;"&gt;COMPONENT&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: black;"&gt; ls_fieldcatalog-fieldname &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: blue;"&gt;OF&lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: blue;"&gt;STRUCTURE&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: black;"&gt; &amp;lt;fs_line2&amp;gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: blue;"&gt;TO&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: black;"&gt; &amp;lt;fs_tmp2&amp;gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: black;"&gt;&amp;lt;fs_tmp2&amp;gt; = &amp;lt;fs_tmp1&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: black;"&gt;endloop.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: black;"&gt;append &amp;lt;fs_line2&amp;gt; to &amp;lt;fs_2&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px; font-family: 'Courier New'; background-color: white; color: black;"&gt;endloop. &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jul 2013 12:51:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/copying-dynamic-internal-table/m-p/3345296#M802094</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-07-29T12:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: Copying Dynamic Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/copying-dynamic-internal-table/m-p/3345297#M802095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can go through this document to understand field symbols, data references and dynamic table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://answers.sap.com/docs/DOC-42525"&gt;http://scn.sap.com/docs/DOC-42525&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jul 2013 13:20:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/copying-dynamic-internal-table/m-p/3345297#M802095</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-07-29T13:20:39Z</dc:date>
    </item>
  </channel>
</rss>

