<?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  B/w Table type  and Structure ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-table-type-and-structure/m-p/3070097#M727658</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Table Type: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is a structure which is defined with a 'OCCURS 0' extension with the definition of the structure and can hold data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structure:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is a definition with the field details and which can not hold any data in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the case given by you:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Data: lt_filetable TYPE filetable, (Table type)&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;    The 'filetable' is a table declaration with 'OCCURS 0' parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) ls_file TYPE file_table. (Structure).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    the 'file_table' is a structure definition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewards if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Nov 2007 04:40:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-26T04:40:31Z</dc:date>
    <item>
      <title>Diff  B/w Table type  and Structure ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-table-type-and-structure/m-p/3070094#M727655</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;&lt;/P&gt;&lt;P&gt;Data: lt_filetable TYPE   filetable, (Table type)&lt;/P&gt;&lt;P&gt;         ls_file TYPE    file_table.  (Structure).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is what is the difference between Above two declarations ? i mean &lt;/P&gt;&lt;P&gt;Table type and Structure ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Sriram...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 04:26:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-table-type-and-structure/m-p/3070094#M727655</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T04:26:11Z</dc:date>
    </item>
    <item>
      <title>Re: Diff  B/w Table type  and Structure ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-table-type-and-structure/m-p/3070095#M727656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;table type u can refer any field.A table type describes the structure and functional attributes of an internal table in ABAP. In ABAP programs you can reference a table type TTYP defined in the ABAP Dictionary with the command DATA &amp;lt;inttab&amp;gt; TYPE TTYP. An internal table &amp;lt;inttab&amp;gt; is created in the program with the attributes defined for TTYP in the ABAP Dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To construct a new structured data type struc_typein a program, you use several TYPES statements:&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 04:30:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-table-type-and-structure/m-p/3070095#M727656</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T04:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: Diff  B/w Table type  and Structure ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-table-type-and-structure/m-p/3070096#M727657</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;/P&gt;&lt;P&gt;Structures&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;Table types&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>Mon, 26 Nov 2007 04:36:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-table-type-and-structure/m-p/3070096#M727657</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T04:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: Diff  B/w Table type  and Structure ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-table-type-and-structure/m-p/3070097#M727658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Table Type: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is a structure which is defined with a 'OCCURS 0' extension with the definition of the structure and can hold data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structure:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is a definition with the field details and which can not hold any data in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the case given by you:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Data: lt_filetable TYPE filetable, (Table type)&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;    The 'filetable' is a table declaration with 'OCCURS 0' parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) ls_file TYPE file_table. (Structure).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    the 'file_table' is a structure definition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewards if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 04:40:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-table-type-and-structure/m-p/3070097#M727658</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T04:40:31Z</dc:date>
    </item>
    <item>
      <title>Re: Diff  B/w Table type  and Structure ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-table-type-and-structure/m-p/3070098#M727659</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;Object class table types&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Semantic domain. A data element describes the role of a (technical) domain in a certain business-oriented context for the fields on which it depends and defines how thse fields are displayed on the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Examples&lt;/P&gt;&lt;P&gt;Different roles, that is data elements, are possible for the domain "cost center", depending on the application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cost center&lt;/P&gt;&lt;P&gt;Sending cost center&lt;/P&gt;&lt;P&gt;Receiving cost center&lt;/P&gt;&lt;P&gt;Responsible cost center&lt;/P&gt;&lt;P&gt;etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Object class structures (structured types)&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Structures globally define the data structure occurring in program calculations or when data is passed between programs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structures are used in particular to define the data at the interface of module pools and screens and to define the types of the parameters of reusable forms or function modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structures are defined (almost) exactly like tables, but no database tables are generated from them. The same data elements and domains can be used in structures as in tables. Tables can also be included.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward i fuisefull&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 04:47:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-table-type-and-structure/m-p/3070098#M727659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T04:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: Diff  B/w Table type  and Structure ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-table-type-and-structure/m-p/3070099#M727660</link>
      <description>&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt;Actually Table type is like internal table, but it globally we are declared in se11 (DDIC) into repository.&lt;/P&gt;&lt;P&gt;main purpose is once create table type, the table type are used  different se38 program with single creation of table type.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table type:&lt;/STRONG&gt; is Combination row and columns,but it is hold the data at run time.&lt;/P&gt;&lt;P&gt;different table types are there standared,sorted,hashed,index type and other at the same time we are given input default parameters also.&lt;/P&gt;&lt;P&gt;Table type like table(like internal table) thats why no need to create declare the &lt;STRONG&gt;table of .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Data: lt_filetable TYPE filetable, (Table type)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Structuer:&lt;/STRONG&gt; is the combination of different columns with single record...like work area.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ex:ls_file TYPE file_table. (Structure).&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 02 Jun 2019 08:31:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-table-type-and-structure/m-p/3070099#M727660</guid>
      <dc:creator>former_member650568</dc:creator>
      <dc:date>2019-06-02T08:31:12Z</dc:date>
    </item>
  </channel>
</rss>

