<?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: table type in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type/m-p/1601946#M270272</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With TABLE TYPE you defined an internal table with the same fields and structure of an Transparent table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: MY_TAB TYPE STANDARD TABLE OF MARA WITH HEADER LINE.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Oct 2006 14:35:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-02T14:35:40Z</dc:date>
    <item>
      <title>table type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type/m-p/1601944#M270270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is TABLE TYPE.HOW TO CREATE AND USE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2006 14:32:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-type/m-p/1601944#M270270</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-02T14:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: table type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type/m-p/1601945#M270271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Srinivas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table type&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/90/8d7304b1af11d194f600a0c929b3c3/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/90/8d7304b1af11d194f600a0c929b3c3/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In SE11 you can create table type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This table type is similar to tables, but not the same way as you create tables. You can create table type with either Line type ( Nothing but a structure), Built-in ABAP types or Reference type. Assume that we have created one table type TYTAB with line type LITYP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So when you declare like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: ITAB type TYTAB - Now ITAB acts as a internal table of type TYTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: LS_TYP TYPE LITYP - This LS_TYP now acts as a structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, it is clear that linetype and structure are one and the same.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2006 14:33:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-type/m-p/1601945#M270271</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-02T14:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: table type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type/m-p/1601946#M270272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With TABLE TYPE you defined an internal table with the same fields and structure of an Transparent table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: MY_TAB TYPE STANDARD TABLE OF MARA WITH HEADER LINE.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2006 14:35:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-type/m-p/1601946#M270272</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-02T14:35:40Z</dc:date>
    </item>
    <item>
      <title>Re: table type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type/m-p/1601947#M270273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srinivas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLE TYPE is used to create an interanl table.&lt;/P&gt;&lt;P&gt;You can specify type of internal table after TYPE clause.&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>Mon, 02 Oct 2006 14:36:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-type/m-p/1601947#M270273</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-02T14:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: table type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type/m-p/1601948#M270274</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 in ABAP. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, A table type YSAM as a struture YSAMPLE.&lt;/P&gt;&lt;P&gt;Then while declaring a internal table it can be just declared as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: i_data type ysam.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then while looping the internal it should be looped like,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: wa_data type ysample.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at i_data into wa_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prakash.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2006 14:38:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-type/m-p/1601948#M270274</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-02T14:38:36Z</dc:date>
    </item>
  </channel>
</rss>

