<?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: differancec between table type and structure in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/differancec-between-table-type-and-structure/m-p/3429098#M823694</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for table type memory allocates.&lt;/P&gt;&lt;P&gt;for structure type memory not allocates.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 24 Feb 2008 12:10:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-24T12:10:23Z</dc:date>
    <item>
      <title>differancec between table type and structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differancec-between-table-type-and-structure/m-p/3429097#M823693</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;what is the differancec between table type and structure&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Feb 2008 09:56:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differancec-between-table-type-and-structure/m-p/3429097#M823693</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-24T09:56:43Z</dc:date>
    </item>
    <item>
      <title>Re: differancec between table type and structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differancec-between-table-type-and-structure/m-p/3429098#M823694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for table type memory allocates.&lt;/P&gt;&lt;P&gt;for structure type memory not allocates.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Feb 2008 12:10:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differancec-between-table-type-and-structure/m-p/3429098#M823694</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-24T12:10:23Z</dc:date>
    </item>
    <item>
      <title>Re: differancec between table type and structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differancec-between-table-type-and-structure/m-p/3429099#M823695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;lt_filetable will be act as a Internal table...can hold multiple records....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ls_file will be act as a workarea...which will helps you to do the process (read, append, modify, insert) in the lt_filetable...because it can hold only one record...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Structures&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;A structure is a sequence of any other data types from the ABAP Dictionary, that is, data elements, structures, table types, or database tables. When you create a structure in the ABAP Dictionary, each component must have a name and a data type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table types&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Table types are construction blueprints for internal tables that are stored in the ABAP Dictionary. When you create a table type in the ABAP Dictionary, you specify the line type, access type, and key. The line type can be any data type from the ABAP Dictionary, that is, a data element, a structure, a table type, or the type of a database table. You can also enter a predefined Dictionary type directly as the line type, in the same way that you can with a domain.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Feb 2008 14:23:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differancec-between-table-type-and-structure/m-p/3429099#M823695</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-24T14:23:08Z</dc:date>
    </item>
    <item>
      <title>Re: differancec between table type and structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differancec-between-table-type-and-structure/m-p/3429100#M823696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1.&lt;STRONG&gt;The basic difference between&lt;/STRONG&gt; Structure and the Table is that the Structure does not exist at the underlying data base level. Structure exists as Definition in the Dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.. Structure will hold only one record at a time but table will hold n no of records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.. When u activate the table, this will created in undeylying data base but this not in structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structure and table both are 2/2 matrices but there are many differences between table and structure..........like for example - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Table can store the data physically but a structure dose not store.&lt;/P&gt;&lt;P&gt;2. Table can have primary key but a structure dose not have.&lt;/P&gt;&lt;P&gt;3. Table can have the technical attribute but a structure dose not have.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structure doesn't contain technical attributes.&lt;/P&gt;&lt;P&gt;Structure doesn't contain primary key.&lt;/P&gt;&lt;P&gt;structure doesn't stores underline database level.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2008 03:12:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differancec-between-table-type-and-structure/m-p/3429100#M823696</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-25T03:12:28Z</dc:date>
    </item>
    <item>
      <title>Re: differancec between table type and structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differancec-between-table-type-and-structure/m-p/3429101#M823697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Struture : A field called mandt is not used that makes it client dependent. It allows reusability.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table: A table is a metadata which is client dependent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Mohinder Singh Chauhan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2008 04:29:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differancec-between-table-type-and-structure/m-p/3429101#M823697</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-25T04:29:10Z</dc:date>
    </item>
  </channel>
</rss>

