<?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: what is diffrence between like and type in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-diffrence-between-like-and-type/m-p/990751#M74142</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Narayna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take a look in this thread:&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="514654"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ville&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Aug 2005 07:39:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-08-04T07:39:03Z</dc:date>
    <item>
      <title>what is diffrence between like and type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-diffrence-between-like-and-type/m-p/990750#M74141</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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one tell me the difference between the type and like.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lets take i have a structure or table  of some material data(MARA).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is the difference between these two statements.&lt;/P&gt;&lt;P&gt;data wa like MARA.&lt;/P&gt;&lt;P&gt;data wa type mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help me in this matter ,i was little bit confused.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Aug 2005 07:29:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-diffrence-between-like-and-type/m-p/990750#M74141</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-04T07:29:41Z</dc:date>
    </item>
    <item>
      <title>Re: what is diffrence between like and type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-diffrence-between-like-and-type/m-p/990751#M74142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Narayna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take a look in this thread:&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="514654"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ville&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Aug 2005 07:39:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-diffrence-between-like-and-type/m-p/990751#M74142</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-04T07:39:03Z</dc:date>
    </item>
    <item>
      <title>Re: what is diffrence between like and type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-diffrence-between-like-and-type/m-p/990752#M74143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;These statements are the same, because MARA is DDIC table. LIKE is not recommended to be used any more if TYPE can be used. LIKE can not be used in ABAP Objects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Svetlin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Aug 2005 07:40:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-diffrence-between-like-and-type/m-p/990752#M74143</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-04T07:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: what is diffrence between like and type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-diffrence-between-like-and-type/m-p/990753#M74144</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 is a keyword to refer data type.&lt;/P&gt;&lt;P&gt;LIKE is a keyword to refer data object.&lt;/P&gt;&lt;P&gt;data types are purely descriptive means no memory allocation.&lt;/P&gt;&lt;P&gt;data objects have memory allocation.&lt;/P&gt;&lt;P&gt;data types will define technical properties data objects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;sai chand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Aug 2005 07:54:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-diffrence-between-like-and-type/m-p/990753#M74144</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-04T07:54:50Z</dc:date>
    </item>
  </channel>
</rss>

