<?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: ITAB like dynamic internal table table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/itab-like-dynamic-internal-table-table/m-p/5645486#M1284739</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;assign it to field symbol.&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;i_dyntable&amp;gt; TYPE STANDARD TABLE&lt;/P&gt;&lt;P&gt;ASSIGN i_table-&amp;gt;* TO &amp;lt;i_dyntable&amp;gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 May 2009 06:14:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-05T06:14:14Z</dc:date>
    <item>
      <title>ITAB like dynamic internal table table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/itab-like-dynamic-internal-table-table/m-p/5645485#M1284738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi alll,&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 = g_fieldcatalog
      IMPORTING
        ep_table        = i_table.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to create an internal table of type i_table&lt;/P&gt;&lt;P&gt; is this possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any suggestions are helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;PP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2009 06:10:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/itab-like-dynamic-internal-table-table/m-p/5645485#M1284738</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-05T06:10:29Z</dc:date>
    </item>
    <item>
      <title>Re: ITAB like dynamic internal table table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/itab-like-dynamic-internal-table-table/m-p/5645486#M1284739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;assign it to field symbol.&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;i_dyntable&amp;gt; TYPE STANDARD TABLE&lt;/P&gt;&lt;P&gt;ASSIGN i_table-&amp;gt;* TO &amp;lt;i_dyntable&amp;gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2009 06:14:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/itab-like-dynamic-internal-table-table/m-p/5645486#M1284739</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-05T06:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: ITAB like dynamic internal table table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/itab-like-dynamic-internal-table-table/m-p/5645487#M1284740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;iwant to create a normal internal table ITAB without header line.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2009 06:16:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/itab-like-dynamic-internal-table-table/m-p/5645487#M1284740</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-05T06:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: ITAB like dynamic internal table table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/itab-like-dynamic-internal-table-table/m-p/5645488#M1284741</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;  Use stmt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;L_TABLE&amp;gt; TYPE TABLE,&lt;/P&gt;&lt;P&gt;               &amp;lt;L_FIELD&amp;gt; TYPE ANY,&lt;/P&gt;&lt;P&gt;               &amp;lt;L_LINE&amp;gt; TYPE ANY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:     NEW_LINE  TYPE REF TO DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ASSIGN  I_TABLE-&amp;gt;* TO &amp;lt;L_TABLE&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will create a table without header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In order to create a work area for same use,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CREATE DATA NEW_LINE LIKE LINE OF &amp;lt;L_TABLE&amp;gt;.&lt;/P&gt;&lt;P&gt;  ASSIGN NEW_LINE-&amp;gt;* TO &amp;lt;L_LINE&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here &amp;lt;L_TABLE&amp;gt; is as good as an internal table without a header line.&lt;/P&gt;&lt;P&gt;You can perform all the operations the way u do on internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;ajit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2009 06:27:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/itab-like-dynamic-internal-table-table/m-p/5645488#M1284741</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-05T06:27:27Z</dc:date>
    </item>
  </channel>
</rss>

