<?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: like vs type in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/like-vs-type/m-p/1753775#M326723</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;refer to this link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb2ff3358411d1829f0000e829fbfe/frameset.htm"&amp;gt;Like vs Type&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Dec 2006 07:31:19 GMT</pubDate>
    <dc:creator>amit_khare</dc:creator>
    <dc:date>2006-12-27T07:31:19Z</dc:date>
    <item>
      <title>like vs type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/like-vs-type/m-p/1753773#M326721</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;what is the difference between like and type? &amp;amp; how come in OO context can't use like?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Charles&lt;/P&gt;&lt;P&gt;abap newbie &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 07:24:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/like-vs-type/m-p/1753773#M326721</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T07:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: like vs type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/like-vs-type/m-p/1753774#M326722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LIKE means the datatype of the variable is similar to the referenced variable.&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;&lt;/P&gt;&lt;P&gt;Eg: &lt;/P&gt;&lt;P&gt;DATA int TYPE i.&lt;/P&gt;&lt;P&gt;Here int is of integer data type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA var LIKE int.&lt;/P&gt;&lt;P&gt;var IS a variable having same data type of int. which in turn is integer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can find these helpful when you reference database table variables... You need not know what is the datatype defined. &lt;/P&gt;&lt;P&gt;Also it adds to FLEXIBILITY.&lt;/P&gt;&lt;P&gt;Whenever you make changes to your database tables and fields,&lt;/P&gt;&lt;P&gt;that change is REFLECTED back to your program that is,&lt;/P&gt;&lt;P&gt;You need not change all your program code when you change your table fields...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 07:29:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/like-vs-type/m-p/1753774#M326722</guid>
      <dc:creator>SantoshKallem</dc:creator>
      <dc:date>2006-12-27T07:29:20Z</dc:date>
    </item>
    <item>
      <title>Re: like vs type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/like-vs-type/m-p/1753775#M326723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;refer to this link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb2ff3358411d1829f0000e829fbfe/frameset.htm"&amp;gt;Like vs Type&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 07:31:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/like-vs-type/m-p/1753775#M326723</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2006-12-27T07:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: like vs type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/like-vs-type/m-p/1753776#M326724</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;Refer the Thread&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Type, Types, Data, Like&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="176504"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Prakash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 07:32:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/like-vs-type/m-p/1753776#M326724</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T07:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: like vs type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/like-vs-type/m-p/1753777#M326725</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;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb2ff3358411d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb2ff3358411d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For TYPE&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/d3/2e974d35c511d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/d3/2e974d35c511d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For LIKE&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/d3/2e974d35c511d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/d3/2e974d35c511d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb367a358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb367a358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;LIKE means the datatype of the variable is similar to the referenced variable.&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;&lt;/P&gt;&lt;P&gt;Eg: &lt;/P&gt;&lt;P&gt;DATA int TYPE i.&lt;/P&gt;&lt;P&gt;Here int is of integer data type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA var LIKE int.&lt;/P&gt;&lt;P&gt;var IS a variable having same data type of int. which in turn is integer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can find these helpful when you reference database table variables... You need not know what is the datatype defined. &lt;/P&gt;&lt;P&gt;Also it adds to FLEXIBILITY.&lt;/P&gt;&lt;P&gt;Whenever you make changes to your database tables and fields,&lt;/P&gt;&lt;P&gt;that change is REFLECTED back to your program that is,&lt;/P&gt;&lt;P&gt;You need not change all your program code when you change your table fields...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anver&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 07:35:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/like-vs-type/m-p/1753777#M326725</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-12-27T07:35:13Z</dc:date>
    </item>
    <item>
      <title>Re: like vs type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/like-vs-type/m-p/1753778#M326726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TYPE:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You use the 'TYPE' in various ABAP statements for defining data types and specifying the types of interface parameters or field symbols.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The TYPE addition allows you to construct new data types in the TYPES, DATA; CONSTANTS;and STATICS statements. In the TYPES statement, these are local data types in the program. In the other statements, they are attributes of new data objects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;#149; Definition of local program types using&lt;/P&gt;&lt;P&gt;TYPES &amp;lt;t&amp;gt; TYPE &amp;lt;type&amp;gt;.&lt;/P&gt;&lt;P&gt;The new data type &amp;lt;t&amp;gt; has the same type as &amp;lt;type&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;#149; Declaration of data objects using&lt;/P&gt;&lt;P&gt;DATA &amp;lt;f&amp;gt; TYPE &amp;lt;type&amp;gt;.&lt;/P&gt;&lt;P&gt;CLASS-DATA &amp;lt;f&amp;gt; TYPE &amp;lt;type&amp;gt;.&lt;/P&gt;&lt;P&gt;CONSTANTS &amp;lt;f&amp;gt; TYPE &amp;lt;type&amp;gt;.&lt;/P&gt;&lt;P&gt;STATICS &amp;lt;f&amp;gt; TYPE &amp;lt;type&amp;gt;.&lt;/P&gt;&lt;P&gt;PARAMETERS &amp;lt;f&amp;gt; TYPE &amp;lt;type&amp;gt;.&lt;/P&gt;&lt;P&gt;The data object &amp;lt;f&amp;gt; has a data type corresponding to the type &amp;lt;type&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;#149; Dynamic creation of data objects using&lt;/P&gt;&lt;P&gt;CREATE DATA &amp;lt;dref&amp;gt; TYPE &amp;lt;type&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;#149; Specification of the type of a formal parameter in a subroutine using&lt;/P&gt;&lt;P&gt;FORM &amp;lt;sub&amp;gt; ... USING|CHANGING &amp;lt;p&amp;gt; TYPE &amp;lt;type&amp;gt; ...&lt;/P&gt;&lt;P&gt;The technical attributes of the formal parameter &amp;lt;p&amp;gt; are inherited from those of the&lt;/P&gt;&lt;P&gt;declared data type &amp;lt;type&amp;gt;. You can then only pass actual parameters that have these attributes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;#149; Specification of the type of a formal parameter in a method using&lt;/P&gt;&lt;P&gt;METHODS &amp;lt;meth&amp;gt; ... IMPORTING|EXPORTING|CHANGING &amp;lt;p&amp;gt; TYPE &amp;lt;type&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LIKE:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You use the LIKE, similarly to the TYPE addition, in various ABAP statements for&lt;/P&gt;&lt;P&gt;defining data types and specifying the types of interface parameters or field symbols. The addition LIKE &amp;lt;obj&amp;gt; can be used in the same ABAP statements as the TYPE addition to refer to any data object &amp;lt;obj&amp;gt; that is already visible at that point in the program. The expression &amp;lt;obj&amp;gt; is either the name of the data object or the expression LINE OF &amp;lt;table-object&amp;gt;&lt;/P&gt;&lt;P&gt;In this case, the LIKE addition describes the line type of a table object that is visible at that point in the program.&lt;/P&gt;&lt;P&gt;You use LIKE to make the new object or type inherit the technical attributes of an existing data object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;#149; Definition of local types in a program using&lt;/P&gt;&lt;P&gt;TYPES &amp;lt;t&amp;gt; LIKE &amp;lt;obj&amp;gt;.&lt;/P&gt;&lt;P&gt;The new data type &amp;lt;t&amp;gt; inherits all of the technical attributes of the data object &amp;lt;obj&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;#149; Declaration of data objects using&lt;/P&gt;&lt;P&gt;DATA &amp;lt;f&amp;gt; LIKE &amp;lt;obj&amp;gt;.&lt;/P&gt;&lt;P&gt;CLASS-DATA &amp;lt;f&amp;gt; LIKE &amp;lt;obj&amp;gt;.&lt;/P&gt;&lt;P&gt;CONSTANTS &amp;lt;f&amp;gt; LIKE &amp;lt;obj&amp;gt;.&lt;/P&gt;&lt;P&gt;STATICS &amp;lt;f&amp;gt; LIKE &amp;lt;obj&amp;gt;.&lt;/P&gt;&lt;P&gt;PARAMETERS &amp;lt;f&amp;gt; LIKE &amp;lt;obj&amp;gt;.&lt;/P&gt;&lt;P&gt;The data object &amp;lt;f&amp;gt; inherits all of the technical attributes of the data object &amp;lt;obj&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;#149; Dynamic creation of data objects using&lt;/P&gt;&lt;P&gt;CREATE DATA &amp;lt;dref&amp;gt; LIKE &amp;lt;obj&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;#149; Specification of the type of a formal parameter in a subroutine using&lt;/P&gt;&lt;P&gt;FORM &amp;lt;sub&amp;gt; ... USING|CHANGING &amp;lt;p&amp;gt; LIKE &amp;lt;obj&amp;gt; ...&lt;/P&gt;&lt;P&gt;The technical attributes of the formal parameter &amp;lt;p&amp;gt; are inherited from those of the&lt;/P&gt;&lt;P&gt;declared data object &amp;lt;obj&amp;gt;. You can then only pass actual parameters that have these attributes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 07:37:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/like-vs-type/m-p/1753778#M326726</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T07:37:26Z</dc:date>
    </item>
    <item>
      <title>Re: like vs type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/like-vs-type/m-p/1753779#M326727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;so how come in OO, can't use like?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 07:44:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/like-vs-type/m-p/1753779#M326727</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T07:44:12Z</dc:date>
    </item>
    <item>
      <title>Re: like vs type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/like-vs-type/m-p/1753780#M326728</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;like is indirectly addressed to the existing data object where as type is directly addressed to the existing data type .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 07:53:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/like-vs-type/m-p/1753780#M326728</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T07:53:33Z</dc:date>
    </item>
    <item>
      <title>Re: like vs type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/like-vs-type/m-p/1753781#M326729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;so how come in OO,&lt;/P&gt;&lt;P&gt;only type is supported and not like?????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 09:51:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/like-vs-type/m-p/1753781#M326729</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T09:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: like vs type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/like-vs-type/m-p/1753782#M326730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Charles,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you just give me an example where you would want to use 'LIKE; in ABAP Objects?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; We use only the 'TYPE REF TO' to define abap objects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sharadha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 09:59:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/like-vs-type/m-p/1753782#M326730</guid>
      <dc:creator>Sharadha1</dc:creator>
      <dc:date>2006-12-27T09:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: like vs type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/like-vs-type/m-p/1753783#M326731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;eg.&lt;/P&gt;&lt;P&gt;data: matnr like mara-matnr.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 10:04:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/like-vs-type/m-p/1753783#M326731</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T10:04:56Z</dc:date>
    </item>
    <item>
      <title>Re: like vs type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/like-vs-type/m-p/1753784#M326732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Charles,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; You should use "TYPE" to refer ABAP dictionary types and you can use "LIKE" to refer local data objects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sharadha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 10:24:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/like-vs-type/m-p/1753784#M326732</guid>
      <dc:creator>Sharadha1</dc:creator>
      <dc:date>2006-12-27T10:24:19Z</dc:date>
    </item>
    <item>
      <title>Re: like vs type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/like-vs-type/m-p/1753785#M326733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i thought should be the opposite?&lt;/P&gt;&lt;P&gt;use like for data dictionary objects and type for locally declared objects?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Dec 2006 09:41:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/like-vs-type/m-p/1753785#M326733</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-28T09:41:29Z</dc:date>
    </item>
  </channel>
</rss>

