<?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: declaration: what do mean by TABLE OF in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/declaration-what-do-mean-by-table-of/m-p/3211531#M765667</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 suppose &amp;lt;TABLE1&amp;gt; is a dictionary table or staructure, there are several way to define an internal table, one is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: A1 TYPE TABLE OF &amp;lt;TABLE1&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This declaration creates a standard table, so it's equal to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: A1 TYPE STANDARD TABLE OF &amp;lt;TABLE1&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In both cases it creates an internal (standard) table without header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Probably u can use declaration like these:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF A1 OCCURS 0.&lt;/P&gt;&lt;P&gt;              INCLUDE STRUCTURE &amp;lt;TABLE1&amp;gt;.&lt;/P&gt;&lt;P&gt;DATA: END    OF A1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: A1 TYPE &amp;lt;TABLE1&amp;gt; OCCURS 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can use one of those definitions to create an internal (standard) table structurated like TABLE1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: A1 TYPE &amp;lt;TABLE1&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This creates a variable A1 structurated as &amp;lt;TABL1&amp;gt;, so it could be used as header line for a internal table declarated like above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Dec 2007 17:31:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-18T17:31:09Z</dc:date>
    <item>
      <title>declaration: what do mean by TABLE OF</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/declaration-what-do-mean-by-table-of/m-p/3211530#M765666</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 have a basic question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there is a declaration:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: a1 type TABLE OF table1.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;What does it mean.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How it differs from this declaration:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: a1 type table1.&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;- Deepan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 17:20:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/declaration-what-do-mean-by-table-of/m-p/3211530#M765666</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T17:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: declaration: what do mean by TABLE OF</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/declaration-what-do-mean-by-table-of/m-p/3211531#M765667</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 suppose &amp;lt;TABLE1&amp;gt; is a dictionary table or staructure, there are several way to define an internal table, one is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: A1 TYPE TABLE OF &amp;lt;TABLE1&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This declaration creates a standard table, so it's equal to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: A1 TYPE STANDARD TABLE OF &amp;lt;TABLE1&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In both cases it creates an internal (standard) table without header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Probably u can use declaration like these:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF A1 OCCURS 0.&lt;/P&gt;&lt;P&gt;              INCLUDE STRUCTURE &amp;lt;TABLE1&amp;gt;.&lt;/P&gt;&lt;P&gt;DATA: END    OF A1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: A1 TYPE &amp;lt;TABLE1&amp;gt; OCCURS 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can use one of those definitions to create an internal (standard) table structurated like TABLE1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: A1 TYPE &amp;lt;TABLE1&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This creates a variable A1 structurated as &amp;lt;TABL1&amp;gt;, so it could be used as header line for a internal table declarated like above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 17:31:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/declaration-what-do-mean-by-table-of/m-p/3211531#M765667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T17:31:09Z</dc:date>
    </item>
    <item>
      <title>Re: declaration: what do mean by TABLE OF</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/declaration-what-do-mean-by-table-of/m-p/3211532#M765668</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;DATA: a1 type TABLE OF table1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Above statement declares an internal table without header line of type table, which may be a standard table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: a1 type table1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Above statement creates a structure or workarea which of type table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sriram Ponna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 17:40:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/declaration-what-do-mean-by-table-of/m-p/3211532#M765668</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T17:40:24Z</dc:date>
    </item>
  </channel>
</rss>

