<?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 internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2714623#M629540</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the diffrence between structure and internal table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Aug 2007 04:42:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-20T04:42:15Z</dc:date>
    <item>
      <title>internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2714623#M629540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the diffrence between structure and internal table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2007 04:42:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2714623#M629540</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-20T04:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2714624#M629541</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;structure is central object we can use that from any program.and it will hold only one record(row) of data.&lt;/P&gt;&lt;P&gt;internal table is only useful with in the program in which u have defined.and it will hold number of records(rows).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;reward if helpful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2007 04:44:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2714624#M629541</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-20T04:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2714625#M629542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Structure holds only one record at runtime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Internal table can hold multiple records at runtime. Workarea of internal table holds only a single record, same as structure.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2007 04:46:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2714625#M629542</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-20T04:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2714626#M629543</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;&lt;/P&gt;&lt;P&gt;An internal table can contain many record where as a structure can contain only one record .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Internal table declaration:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data : begin of  itab occurs 3 ,&lt;/P&gt;&lt;P&gt;             ebeln   type   ekpo-ebeln,&lt;/P&gt;&lt;P&gt;             ebelp   type   ekpo-ebelp ,&lt;/P&gt;&lt;P&gt;          end of itab .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;work area  declaration&lt;/P&gt;&lt;P&gt;Data : begin of  itab  ,&lt;/P&gt;&lt;P&gt;             ebeln   type   ekpo-ebeln,&lt;/P&gt;&lt;P&gt;             ebelp   type   ekpo-ebelp ,&lt;/P&gt;&lt;P&gt;          end of itab .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2007 04:47:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2714626#M629543</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-20T04:47:37Z</dc:date>
    </item>
    <item>
      <title>Re: internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2714627#M629544</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;structure will be a reference .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but internal table will be having the records in the run time&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if an internal table format is being used in several programs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we wil declare it globally in the se11 transaction so that every one can use it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but an internal table can use the format of a structure and can store the data&lt;/P&gt;&lt;P&gt;in the run time&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;structure will not store data but they too can store data only in the runtime&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;they can store one record at a time&lt;/P&gt;&lt;P&gt;but the internal table can store more than one record and max depends onthe &lt;/P&gt;&lt;P&gt;how we declare the internal table&lt;/P&gt;&lt;P&gt;like &lt;/P&gt;&lt;P&gt;begin of itba occurs 0 ( dynamic memory)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like this ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;structure will be created in se11 transaction&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;internal tables wil be creatd in the programms&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and strurctures can be used as work areas also in the run time&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Venkatesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2007 04:48:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2714627#M629544</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-20T04:48:34Z</dc:date>
    </item>
    <item>
      <title>Re: internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2714628#M629545</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;structure can't store any data&lt;/P&gt;&lt;P&gt;structure can be useful for creating a type of it.&lt;/P&gt;&lt;P&gt;it doesn't occupy any memory.&lt;/P&gt;&lt;P&gt;it doesn't have diff types as with internal tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;internal tables are used for storing data temporarily.&lt;/P&gt;&lt;P&gt;internal tables are created from existing sap objects , structures, or user defined.&lt;/P&gt;&lt;P&gt;it occupies memory [ using occurs keyword].&lt;/P&gt;&lt;P&gt;internal tables are of two types&lt;/P&gt;&lt;P&gt;    1. internal table with out header line.&lt;/P&gt;&lt;P&gt;     2. internal table with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helpful reward some points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;Suresh Aluri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2007 04:53:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/2714628#M629545</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-20T04:53:36Z</dc:date>
    </item>
  </channel>
</rss>

