<?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: Reg : Table Type in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-table-type/m-p/3761516#M904955</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;Table types are similer to internal tables, which can be created in data dictionary so that it can be used by many programs.&lt;/P&gt;&lt;P&gt;These are specially helpful while using unicode enabled SAP systems.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To create table types, go to SE11 and select Data Type.&lt;/P&gt;&lt;P&gt;First you need to create a line type/structure and then you can refer it while creating a table type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Sreenivasa Reddy Vallem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Apr 2008 11:37:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-23T11:37:41Z</dc:date>
    <item>
      <title>Reg : Table Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-table-type/m-p/3761513#M904952</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;can anyone tell me &lt;/P&gt;&lt;P&gt;What does table type mean?&lt;/P&gt;&lt;P&gt;Why table type is used?&lt;/P&gt;&lt;P&gt;What are the advantages of using Table Type?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandra Prakash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Apr 2008 11:23:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-table-type/m-p/3761513#M904952</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-23T11:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: Reg : Table Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-table-type/m-p/3761514#M904953</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;STRONG&gt;Table Types&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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;&lt;STRONG&gt;A table type is defined by:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its line type, that defines the structure and data type attributes of a line of the internal table &lt;/P&gt;&lt;P&gt;the options for managing and accessing the data ( access mode) in the internal table &lt;/P&gt;&lt;P&gt;the key ( key definition and key category) of the internal table&lt;/P&gt;&lt;P&gt;The row type is defined by directly entering the data type, length and number of decimal places or by referencing a  data element, structured type (  structure,  table or  view) or other table type. Or the row type can be a reference type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table type TABTYPE shown in the graphic can be used with the statement DATA &amp;lt;name&amp;gt; TYPE TABTYPE in ABAP programs to define an internal table &amp;lt;name&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A local type &amp;lt;name&amp;gt; that takes on the attributes of type TABTYPE can be defined in the program with TYPES &amp;lt;name&amp;gt; TYPE TABTYPE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reward if Helpful&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Apr 2008 11:24:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-table-type/m-p/3761514#M904953</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-23T11:24:42Z</dc:date>
    </item>
    <item>
      <title>Re: Reg : Table Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-table-type/m-p/3761515#M904954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&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;P&gt;&lt;/P&gt;&lt;P&gt;In an ABAP program, you can use the TYPE addition to refer directly to a table type. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; See table type LB_T_BIL_HD_ADR in SE11 used in structure LBBIL_INVOICE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Line type is LBBIL_HD_ADR.&lt;/P&gt;&lt;P&gt;  Access type is Sorted table&lt;/P&gt;&lt;P&gt;  Key category is Non-unique with key components BIL_NUMBER, PARTN_ROLE &amp;amp; PARTN_NUMB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Apr 2008 11:33:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-table-type/m-p/3761515#M904954</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-23T11:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: Reg : Table Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-table-type/m-p/3761516#M904955</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;Table types are similer to internal tables, which can be created in data dictionary so that it can be used by many programs.&lt;/P&gt;&lt;P&gt;These are specially helpful while using unicode enabled SAP systems.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To create table types, go to SE11 and select Data Type.&lt;/P&gt;&lt;P&gt;First you need to create a line type/structure and then you can refer it while creating a table type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Sreenivasa Reddy Vallem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Apr 2008 11:37:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-table-type/m-p/3761516#M904955</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-23T11:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: Reg : Table Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-table-type/m-p/3761517#M904956</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;Table Types &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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;A table type is defined by:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its line type, that defines the structure and data type attributes of a line of the internal table &lt;/P&gt;&lt;P&gt;the options for managing and accessing the data ( access mode) in the internal table &lt;/P&gt;&lt;P&gt;the key ( key definition and key category) of the internal table&lt;/P&gt;&lt;P&gt;The row type is defined by directly entering the data type, length and number of decimal places or by referencing a data element, structured type ( structure, table or view) or other table type. Or the row type can be a reference type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table type TABTYPE shown in the graphic can be used with the statement DATA &amp;lt;name&amp;gt; TYPE TABTYPE in ABAP programs to define an internal table &amp;lt;name&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A local type &amp;lt;name&amp;gt; that takes on the attributes of type TABTYPE can be defined in the program with TYPES &amp;lt;name&amp;gt; TYPE TABTYPE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if Helpful&lt;/P&gt;&lt;P&gt;prasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Apr 2008 11:38:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-table-type/m-p/3761517#M904956</guid>
      <dc:creator>prasanth_kasturi</dc:creator>
      <dc:date>2008-04-23T11:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: Reg : Table Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-table-type/m-p/3761518#M904957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chandra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have seen your reply for sending a mail as an attachment posted on mar 2nd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am having one query on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; The program which are created' using below function modules. RSPO_OPEN_SPOOLREQUEST'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This program is working fine.I am receiving mail with an attachement. While opening that attachemnt I am getting an erroe that This file does't contain any pages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I s this program working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry for sending message through this thread. Because I con't send in another way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 13:34:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-table-type/m-p/3761518#M904957</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-24T13:34:39Z</dc:date>
    </item>
  </channel>
</rss>

