<?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: diff between internal table and structre ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-table-and-structre/m-p/1150423#M117369</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;was that a typo??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;shouldn't it be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHAT A TABLE IS TO DDIC ..INTERNAL TABLE IS TO ABAP PROGRAM during runtime...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 25 Feb 2006 12:51:49 GMT</pubDate>
    <dc:creator>suresh_datti</dc:creator>
    <dc:date>2006-02-25T12:51:49Z</dc:date>
    <item>
      <title>diff between internal table and structre ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-table-and-structre/m-p/1150417#M117363</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;What is the difference between internal table and structure and structure ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P0001 is an internal table or structure ?&lt;/P&gt;&lt;P&gt;In se11 it showing as a structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any way to see the internal table (expect in debugging )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;charan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Feb 2006 12:25:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-table-and-structre/m-p/1150417#M117363</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-25T12:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: diff between internal table and structre ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-table-and-structre/m-p/1150418#M117364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI ravicharan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Both are tables, &lt;/P&gt;&lt;P&gt;   but the difference is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.  Internal table : its defined and used&lt;/P&gt;&lt;P&gt;       in abap program and is part of run time memory&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   structure : its defined first in data dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. P0001 is an internal table or structure ?&lt;/P&gt;&lt;P&gt;In se11 it showing as a structure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  P0001 is DEFINED AS STRUCTURE in data dictionary.&lt;/P&gt;&lt;P&gt;  Hence its a strcutrue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; when we use it in program like :&lt;/P&gt;&lt;P&gt;  data : itab like table of p0001 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   or&lt;/P&gt;&lt;P&gt;  data : P0001 like table of p0001 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then here itab/ p0001 becomes internal table.&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;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Amit Mittal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Feb 2006 12:30:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-table-and-structre/m-p/1150418#M117364</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-25T12:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: diff between internal table and structre ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-table-and-structre/m-p/1150419#M117365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Adding onto what Amit mentioned..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN an ABAP Program, when you put the statement&lt;/P&gt;&lt;P&gt;INFOTYPES:0001&lt;/P&gt;&lt;P&gt;The system declares an internal table p0001 with ref to Dic Struc P0001 with a header line. This itab is available with the employee's 0001 info during each loop pass of the GET PERNR event of the Program..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Feb 2006 12:35:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-table-and-structre/m-p/1150419#M117365</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-02-25T12:35:52Z</dc:date>
    </item>
    <item>
      <title>Re: diff between internal table and structre ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-table-and-structre/m-p/1150420#M117366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;   Internal tables are basically used to deal with the data either pushing into the database or pulling out of the application tables for the output purpose to show on the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Internal tables are defined in ABAP programs, you can not define them in SE11 whereas structures are defined in SE11 and they work as a table itself.&lt;/P&gt;&lt;P&gt;Another difference is internal tables can be with or without header line however this is not the case with Structures.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P0001 is an structure, you are right. It's defined as structure in data dictionary. You can define an internaltable on the basis of an application table or a structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is no other way out except Debuging to see the internal tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls do not forget to assign points, if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Feb 2006 12:39:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-table-and-structre/m-p/1150420#M117366</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-25T12:39:12Z</dc:date>
    </item>
    <item>
      <title>Re: diff between internal table and structre ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-table-and-structre/m-p/1150421#M117367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IN SIMPLE TERMS &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHAT A STRUCTURE IS TO DDIC ..INTERNAL TABLE IS TO ABAP...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Feb 2006 12:49:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-table-and-structre/m-p/1150421#M117367</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-25T12:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: diff between internal table and structre ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-table-and-structre/m-p/1150422#M117368</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 heard that internal tables and structure are filled at runtime only. If both are them then why should i go for structure, because i can desin internal table as i like but not a structure ?&lt;/P&gt;&lt;P&gt;So is there any fundamental difference and can u explain with  a scenario plz?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;charan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Feb 2006 12:50:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-table-and-structre/m-p/1150422#M117368</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-25T12:50:29Z</dc:date>
    </item>
    <item>
      <title>Re: diff between internal table and structre ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-table-and-structre/m-p/1150423#M117369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;was that a typo??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;shouldn't it be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHAT A TABLE IS TO DDIC ..INTERNAL TABLE IS TO ABAP PROGRAM during runtime...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Feb 2006 12:51:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-table-and-structre/m-p/1150423#M117369</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-02-25T12:51:49Z</dc:date>
    </item>
    <item>
      <title>Re: diff between internal table and structre ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-table-and-structre/m-p/1150424#M117370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; then why should i go for structure, because i can desin internal table as i like but not a structure ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A structure when used in a Program provides you with a work area that enables you to hold one record at a time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An internal table can hold more than one record during the runtime of the Program. When you loop AT an itab, one record is moved into its HEADER in every loop pass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Feb 2006 12:56:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-table-and-structre/m-p/1150424#M117370</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-02-25T12:56:36Z</dc:date>
    </item>
  </channel>
</rss>

