<?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 Difference between DDIC Table Type and structure in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-ddic-table-type-and-structure/m-p/2830800#M662502</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;  Please tell me what is is basic difference between DDIC Table Type and DDIC Structure ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ajoy Chatterjee&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Sep 2007 06:16:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-25T06:16:59Z</dc:date>
    <item>
      <title>Difference between DDIC Table Type and structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-ddic-table-type-and-structure/m-p/2830800#M662502</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;  Please tell me what is is basic difference between DDIC Table Type and DDIC Structure ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ajoy Chatterjee&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2007 06:16:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-ddic-table-type-and-structure/m-p/2830800#M662502</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-25T06:16:59Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between DDIC Table Type and structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-ddic-table-type-and-structure/m-p/2830801#M662503</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;&amp;lt;b&amp;gt;Structures (structured types)&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Structured types describe the structure and functions of any structured data objects, that is of data structures with components of any type.&lt;/P&gt;&lt;P&gt;A component can be a field with an elementary type or can itself be a structure. A table can also be used as a component in a structure.&lt;/P&gt;&lt;P&gt;A database table always has a structure and is therefore implicitly a structured type. However, the fields of a database table can only have an elementary type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Table types&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Table types describe the structure and functions of internal tables in the ABAP program. Their rows can have any row type. Table types with elementary row type therefore can be defined just the same as multi-dimensional table types (table types with a table type as row type) or table types using structures with table-like components.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a simple words,&lt;/P&gt;&lt;P&gt;Structure is just a flat structure but Table type is an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample code how to use them to create internal table:&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Create Internal table from a structure:&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DATA: IT_DATA TYPE STANDART TABLE OF Structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Create Internal table from a table type:&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DATA: IT_DATA TYPE table_type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2007 06:19:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-ddic-table-type-and-structure/m-p/2830801#M662503</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-25T06:19:57Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between DDIC Table Type and structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-ddic-table-type-and-structure/m-p/2830802#M662504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;one difference is that when you create a variable of a table type you get an internal table. when you use a structure instead, you get a work area.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2007 06:21:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-ddic-table-type-and-structure/m-p/2830802#M662504</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-25T06:21:58Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between DDIC Table Type and structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-ddic-table-type-and-structure/m-p/2830803#M662505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Difference between structure and table type is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;U&gt;&lt;STRONG&gt;Table type&lt;/STRONG&gt;&lt;/U&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The table type specifies how you can access individual table rows via ABAP.&lt;/P&gt;&lt;P&gt;Generally all  internal tables are treated as table types.&lt;/P&gt;&lt;P&gt;There are different types of table types like standard,sorted and hashed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Internal tables are used only during program execution i.e data flows  into internal table only during program execution.&lt;/P&gt;&lt;P&gt;Data manipulations in internal table during debugging will  not effect database.No memory is allocated for table types like internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;U&gt;structure&lt;/U&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structure contains data only when it is inserted in database table using append or include. &lt;/P&gt;&lt;P&gt;We change the data in structure which will effect Database.&lt;/P&gt;&lt;P&gt;Memory is allocated to structure only when it is included in table using append or include.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 06:55:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-ddic-table-type-and-structure/m-p/2830803#M662505</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-14T06:55:47Z</dc:date>
    </item>
  </channel>
</rss>

