<?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: type key word in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-key-word/m-p/2238041#M482152</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;You can use the TYPE addition of an appropriate ABAP statement to refer to these data types in any ABAP program in the system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In ABAP programs, you can use the TYPE addition with the data type of a database table or view. You may refer to the whole structure or to individual components:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... TYPE &amp;lt;dbtab&amp;gt; ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;refers to the complex data type of the structure,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... TYPE &amp;lt;dbtab&amp;gt;-&amp;lt;ci&amp;gt; ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;refers to the elementary data type of component &amp;lt;ci&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you define a complex data type &amp;lt;t&amp;gt; as a structure using&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES &amp;lt;t&amp;gt; TYPE &amp;lt;dbtab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the components of the data type &amp;lt;t&amp;gt; inherit the names of the components of the database table or view, and can be addressed in the program using &amp;lt;t&amp;gt;-&amp;lt;ci&amp;gt;.&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;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 May 2007 15:53:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-11T15:53:25Z</dc:date>
    <item>
      <title>type key word</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-key-word/m-p/2238038#M482149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is types keyword used for?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 15:41:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-key-word/m-p/2238038#M482149</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T15:41:40Z</dc:date>
    </item>
    <item>
      <title>Re: type key word</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-key-word/m-p/2238039#M482150</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;It defines a new type within the program..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF type_material_plant,&lt;/P&gt;&lt;P&gt;               MATNR type MATNR,&lt;/P&gt;&lt;P&gt;               WERKS type werks_d,&lt;/P&gt;&lt;P&gt;            END OF type_material_plant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: WA TYPE type_material_plant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 15:44:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-key-word/m-p/2238039#M482150</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T15:44:32Z</dc:date>
    </item>
    <item>
      <title>Re: type key word</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-key-word/m-p/2238040#M482151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/types.htm" target="test_blank"&gt;http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/types.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 15:44:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-key-word/m-p/2238040#M482151</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T15:44:36Z</dc:date>
    </item>
    <item>
      <title>Re: type key word</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-key-word/m-p/2238041#M482152</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;You can use the TYPE addition of an appropriate ABAP statement to refer to these data types in any ABAP program in the system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In ABAP programs, you can use the TYPE addition with the data type of a database table or view. You may refer to the whole structure or to individual components:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... TYPE &amp;lt;dbtab&amp;gt; ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;refers to the complex data type of the structure,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... TYPE &amp;lt;dbtab&amp;gt;-&amp;lt;ci&amp;gt; ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;refers to the elementary data type of component &amp;lt;ci&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you define a complex data type &amp;lt;t&amp;gt; as a structure using&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES &amp;lt;t&amp;gt; TYPE &amp;lt;dbtab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the components of the data type &amp;lt;t&amp;gt; inherit the names of the components of the database table or view, and can be addressed in the program using &amp;lt;t&amp;gt;-&amp;lt;ci&amp;gt;.&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;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 15:53:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-key-word/m-p/2238041#M482152</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T15:53:25Z</dc:date>
    </item>
    <item>
      <title>Re: type key word</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-key-word/m-p/2238042#M482153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Krishna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use the key work types&lt;/P&gt;&lt;P&gt;it will create a structure for your&lt;/P&gt;&lt;P&gt;given fields.&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;Types : Begin of str,&lt;/P&gt;&lt;P&gt;            Vbeln like anla-vbeln,&lt;/P&gt;&lt;P&gt;            Bukrs like anla-bukrs,&lt;/P&gt;&lt;P&gt;            end of str,&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Now the above commands will&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;create a structure for the two fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data itab type table of str with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;This will create one internal table for your&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;structure with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually when you doing some coding,&lt;/P&gt;&lt;P&gt;in that if u need to create an internal table&lt;/P&gt;&lt;P&gt;you should follow this way only.&lt;/P&gt;&lt;P&gt;Dont declare directly an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope u got.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if it useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 May 2007 04:55:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-key-word/m-p/2238042#M482153</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-12T04:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: type key word</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-key-word/m-p/2238043#M482154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi krishna,&lt;/P&gt;&lt;P&gt;TYPES are used to define structures....it does include any memory area...&lt;/P&gt;&lt;P&gt;it defines an internal table without header line..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Define:&lt;/P&gt;&lt;P&gt;TYPES : begin of TY_ITAB,&lt;/P&gt;&lt;P&gt;              field type DBtable-field,&lt;/P&gt;&lt;P&gt;              End of ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will define a structure. to define an internal table use the following command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types : TT_ITAB type table of TY_ITAB.&lt;/P&gt;&lt;P&gt;this will define an internal table without header line...&lt;/P&gt;&lt;P&gt;so when you are defining an internal table with types always define the work area for that internal table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this could solve ur problem...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 May 2007 07:44:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-key-word/m-p/2238043#M482154</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-12T07:44:10Z</dc:date>
    </item>
    <item>
      <title>Re: type key word</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-key-word/m-p/2238044#M482155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TYPES is used to declare a data type. Anything declared using this keyword will NOT have any memory allocated with it, just a data type will be declared. This datatype is then used to declare data objects using the keyword DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that the use of TYPES is a must from ECC 6 onwards, to avoid EPC errors.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 May 2007 05:11:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-key-word/m-p/2238044#M482155</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-13T05:11:23Z</dc:date>
    </item>
    <item>
      <title>Re: type key word</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-key-word/m-p/2238045#M482156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai, Krishna latha.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; The TYPES statement introduces user-defined data types . &lt;/P&gt;&lt;P&gt;As with standard data types, you can use them when creating data objects and when assigning types to formal parameters and field symbols. User-defined data types are an essential component of the ABAP/4 type concept .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 May 2007 07:45:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-key-word/m-p/2238045#M482156</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-13T07:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: type key word</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-key-word/m-p/2238046#M482157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;   Type keyword is mainly used for grouping the different fields/variables which comes under single category like&lt;/P&gt;&lt;P&gt;  Type : begin of itab_final,&lt;/P&gt;&lt;P&gt;            matnr like mara-matnr,&lt;/P&gt;&lt;P&gt;            werks like mara-werks,&lt;/P&gt;&lt;P&gt;            end of itab_final.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you type keyword the memory will not be allocated immeadiately instead it would be allocated during runtime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REWARD IT PLEASE....!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 08:02:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-key-word/m-p/2238046#M482157</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T08:02:59Z</dc:date>
    </item>
    <item>
      <title>Re: type key word</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-key-word/m-p/2238047#M482158</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;TYPE means it is a predefined data type.&lt;/P&gt;&lt;P&gt;and refer the link &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="204025"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Murali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 08:11:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-key-word/m-p/2238047#M482158</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T08:11:52Z</dc:date>
    </item>
  </channel>
</rss>

