<?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: pass data from normal internal table to dynamic internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-data-from-normal-internal-table-to-dynamic-internal-table/m-p/4680479#M1100633</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;I assume you are using something like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;* Create a new Table
  CALL METHOD cl_alv_table_create=&amp;gt;create_dynamic_table
    EXPORTING
      it_fieldcatalog = IT_LVC_CAT
    IMPORTING
      ep_table        = new_table.

* Create a new Line with the same structure of the table.
  ASSIGN new_table-&amp;gt;* TO &amp;lt;l_table&amp;gt;.
  CREATE DATA new_line LIKE LINE OF &amp;lt;l_table&amp;gt;.
  ASSIGN new_line-&amp;gt;* TO &amp;lt;l_line&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If so loop at your internal table and move-corresponding to the field symbol &amp;lt;l_line&amp;gt; and then append it to &amp;lt;l_table&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Darren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Oct 2008 12:36:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-10T12:36:47Z</dc:date>
    <item>
      <title>pass data from normal internal table to dynamic internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-data-from-normal-internal-table-to-dynamic-internal-table/m-p/4680478#M1100632</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 Internal table  itab contains some data.&lt;/P&gt;&lt;P&gt;i created another dynamic internaltable itab1.&lt;/P&gt;&lt;P&gt;how can i pass itab data to itab1(dynamic internal table).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2008 12:33:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-data-from-normal-internal-table-to-dynamic-internal-table/m-p/4680478#M1100632</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-10T12:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: pass data from normal internal table to dynamic internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-data-from-normal-internal-table-to-dynamic-internal-table/m-p/4680479#M1100633</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;I assume you are using something like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;* Create a new Table
  CALL METHOD cl_alv_table_create=&amp;gt;create_dynamic_table
    EXPORTING
      it_fieldcatalog = IT_LVC_CAT
    IMPORTING
      ep_table        = new_table.

* Create a new Line with the same structure of the table.
  ASSIGN new_table-&amp;gt;* TO &amp;lt;l_table&amp;gt;.
  CREATE DATA new_line LIKE LINE OF &amp;lt;l_table&amp;gt;.
  ASSIGN new_line-&amp;gt;* TO &amp;lt;l_line&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If so loop at your internal table and move-corresponding to the field symbol &amp;lt;l_line&amp;gt; and then append it to &amp;lt;l_table&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Darren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2008 12:36:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-data-from-normal-internal-table-to-dynamic-internal-table/m-p/4680479#M1100633</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-10T12:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: pass data from normal internal table to dynamic internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-data-from-normal-internal-table-to-dynamic-internal-table/m-p/4680480#M1100634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or to access specific components, read the help of ASSIGN COMPONENT blah OF STRUCTURE wurr TO &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2008 12:54:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-data-from-normal-internal-table-to-dynamic-internal-table/m-p/4680480#M1100634</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-10-10T12:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: pass data from normal internal table to dynamic internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-data-from-normal-internal-table-to-dynamic-internal-table/m-p/4680481#M1100635</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;Thanks for replies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Suresh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 13:15:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-data-from-normal-internal-table-to-dynamic-internal-table/m-p/4680481#M1100635</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-13T13:15:44Z</dc:date>
    </item>
  </channel>
</rss>

