<?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 Differnece Type and Table Type in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/differnece-type-and-table-type/m-p/4985683#M1161529</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can any one tell me the difference between Type and Tabel type.&lt;/P&gt;&lt;P&gt;For Exa while declaring an internal table we do it as follows: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Type:Begin of tt_infy,
          infty TYPE t582s-infty,
        End of tt_infy.

Data : I_infy type standard table of tt_infy.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the above what tt_infy called as: Is it Table type or Type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tell me the exact difference between Table type &amp;amp; Type with example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code Formatted by: Alvaro Tejada Galindo on Jan 8, 2009 3:27 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Jan 2009 10:35:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-01-08T10:35:13Z</dc:date>
    <item>
      <title>Differnece Type and Table Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differnece-type-and-table-type/m-p/4985683#M1161529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can any one tell me the difference between Type and Tabel type.&lt;/P&gt;&lt;P&gt;For Exa while declaring an internal table we do it as follows: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Type:Begin of tt_infy,
          infty TYPE t582s-infty,
        End of tt_infy.

Data : I_infy type standard table of tt_infy.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the above what tt_infy called as: Is it Table type or Type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tell me the exact difference between Table type &amp;amp; Type with example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code Formatted by: Alvaro Tejada Galindo on Jan 8, 2009 3:27 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2009 10:35:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differnece-type-and-table-type/m-p/4985683#M1161529</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-08T10:35:13Z</dc:date>
    </item>
    <item>
      <title>Re: Differnece Type and Table Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differnece-type-and-table-type/m-p/4985684#M1161530</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;Type : it is refering technical charac&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table type: it'll refer structure of the table as well all the tech info of the fields which are there in the table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2009 10:40:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differnece-type-and-table-type/m-p/4985684#M1161530</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-08T10:40:36Z</dc:date>
    </item>
    <item>
      <title>Re: Differnece Type and Table Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differnece-type-and-table-type/m-p/4985685#M1161531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravindar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is called only 'Table Type' but not 'Type'. Table type refers to a table where as 'table of Type ' refers to a strucutre.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is the declarations for them individually.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Strucutre declaration&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Types:Begin of type_infy,&lt;/P&gt;&lt;P&gt;infty TYPE t582s-infty,&lt;/P&gt;&lt;P&gt;End of type_infy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table type declaration&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Types: tt_infy type standard table of type_infy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Internal table using TYPES declaration&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Data : I_infy type standard table of &lt;STRONG&gt;type_infy&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Internal table using TABLE TYPE declaration&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Data : I_infy type &lt;STRONG&gt;tt_infy&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you reference table type using 'TYPE' it refers to table where as if you reference standard table of using 'TYPE' refers to structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2009 10:42:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differnece-type-and-table-type/m-p/4985685#M1161531</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-08T10:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: Differnece Type and Table Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differnece-type-and-table-type/m-p/4985686#M1161532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; hope this example helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*Structure type: a line of a table
types : begin of t_record,
           line(255),
          end of t_record. 
         
*Tables type: how the internal table is structured
types : tt_type type standard table of t_record. 

*Internal table: the final variable
data : itab type tt_type.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.s : You can create table type also globally in SE11 transaction&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye&lt;/P&gt;&lt;P&gt;Andrea&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2009 10:46:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differnece-type-and-table-type/m-p/4985686#M1161532</guid>
      <dc:creator>andrea_galluccio2</dc:creator>
      <dc:date>2009-01-08T10:46:51Z</dc:date>
    </item>
    <item>
      <title>Re: Differnece Type and Table Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differnece-type-and-table-type/m-p/4985687#M1161533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A table type describes the structure and functional attributes of an internal table.The table type that you will use depends on how the typical internal table operations will be most frequently executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex: If u want to pass table as a parameter then use TABLE TYPE (in type of parameter).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also refer : &lt;A href="http://abapdictionary.blogspot.com/2007/11/table-types-in-abap.html" target="test_blank"&gt;http://abapdictionary.blogspot.com/2007/11/table-types-in-abap.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2009 10:53:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differnece-type-and-table-type/m-p/4985687#M1161533</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-08T10:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: Differnece Type and Table Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differnece-type-and-table-type/m-p/4985688#M1161534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check this to understand table type:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/search/highlightContent.jsp" target="test_blank"&gt;http://help.sap.com/search/highlightContent.jsp&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Types statement is used to declare a structure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
types: begin of record,
          material like matnr,
          materialtype like mtart,
         end of record.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;through above declaration you are informing runtime environment that record is a structure which can hold values of type mentioned in record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Through data statement actual memory will be created for record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code Formatted by: Alvaro Tejada Galindo on Jan 8, 2009 3:27 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2009 11:00:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differnece-type-and-table-type/m-p/4985688#M1161534</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-08T11:00:12Z</dc:date>
    </item>
    <item>
      <title>Re: Differnece Type and Table Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differnece-type-and-table-type/m-p/4985689#M1161535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Answered&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2009 07:14:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differnece-type-and-table-type/m-p/4985689#M1161535</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-08T07:14:46Z</dc:date>
    </item>
  </channel>
</rss>

