<?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: Diff....LIKE and TYPE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-like-and-type/m-p/3718413#M895134</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check this..&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="310376"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type is used for the predifed and basic data types...&lt;/P&gt;&lt;P&gt;data: char type c ( it cannot be done with like).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: test type mara-matnr .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like is used to refer the existing..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: test like mara-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here like brings all the properties of matnr to the test..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 Apr 2008 09:22:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-25T09:22:08Z</dc:date>
    <item>
      <title>Diff....LIKE and TYPE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-like-and-type/m-p/3718407#M895128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please tell me the Difference Between .. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LIKE and TYPE........&lt;/P&gt;&lt;P&gt; in ABAP COding...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 09:16:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-like-and-type/m-p/3718407#M895128</guid>
      <dc:creator>SurendarT</dc:creator>
      <dc:date>2008-04-25T09:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: Diff....LIKE and TYPE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-like-and-type/m-p/3718408#M895129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check out this related thread&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;santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 09:19:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-like-and-type/m-p/3718408#M895129</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T09:19:59Z</dc:date>
    </item>
    <item>
      <title>Re: Diff....LIKE and TYPE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-like-and-type/m-p/3718409#M895130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;1.TYpe does not require memory allocation.&lt;/P&gt;&lt;P&gt; 2.Like can occupy the memory at run time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shiva.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 09:20:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-like-and-type/m-p/3718409#M895130</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T09:20:42Z</dc:date>
    </item>
    <item>
      <title>Re: Diff....LIKE and TYPE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-like-and-type/m-p/3718410#M895131</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;Difference between type and like;&lt;/P&gt;&lt;P&gt;Types: var1(20) type c. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: var2 type var1. ( type is used bcoz var1 is defined with TYPES and it &lt;/P&gt;&lt;P&gt;does not occupy any memory spce. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: var3 like var2. ( like is used here bcoz var2 is defined with DATA &lt;/P&gt;&lt;P&gt;so it does occupy space in memory ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: material like mara-matnr. ( like is used here bcoz mara-matnr is stored in memory).&lt;/P&gt;&lt;P&gt;type refers the existing data type&lt;/P&gt;&lt;P&gt;like refers the existing data object&lt;/P&gt;&lt;P&gt;type is for predefined data type&lt;/P&gt;&lt;P&gt;where as like is for usedefined datatype.&lt;/P&gt;&lt;P&gt;TYPE, you assign datatype directly to the data object while declaring.&lt;/P&gt;&lt;P&gt;LIKE,you assign the datatype of another object to the declaring data object. The datatype is referenced indirectly&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;Arun Joseph&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 09:20:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-like-and-type/m-p/3718410#M895131</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T09:20:55Z</dc:date>
    </item>
    <item>
      <title>Re: Diff....LIKE and TYPE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-like-and-type/m-p/3718411#M895132</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&lt;/P&gt;&lt;P&gt;You use the TYPE addition in various ABAP statements for defining data types and specifying the types of interface parameters or field symbols. The TYPE addition can have various meanings depending on the syntax and context.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LIKE&lt;/P&gt;&lt;P&gt;You use the LIKE addition, similarly to the TYP E addition , in various ABAP statements for defining data types and specifying the types of interface parameters or field symbols. The addition&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LIKE &amp;lt;obj&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&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.&lt;/P&gt;&lt;P&gt;&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;type we can use to refer system defined or user defined data types and data dictionary objects..&lt;/P&gt;&lt;P&gt;like we will use in case of refering data dictionary objects only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go through the link.&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/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb2ff3358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE - Type is used to tell the system what is the type of data object(variable) you want to create .&lt;/P&gt;&lt;P&gt;LIKE: If there is already a data object declared and you want to declare a similar data object you can just refer to the previous data object using like.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type is generally used for declaring variables, parameters for existing data types in abap&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for ex: to declare a inter value and character variable of length 10 is as,&lt;/P&gt;&lt;P&gt;data: i1 type i,&lt;/P&gt;&lt;P&gt;c1(10) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like generally refers to existing data objects in abap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for ex:&lt;/P&gt;&lt;P&gt;data: matnr like mara-matnr,&lt;/P&gt;&lt;P&gt;vbeln like vbap-vbeln.&lt;/P&gt;&lt;P&gt;creating variables matnr, vbeln from existing fields of tables mara, vbap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when user creates a user defiend structure for work areas, internal tables we generally use type keyword as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of itab,&lt;/P&gt;&lt;P&gt;.........&lt;/P&gt;&lt;P&gt;.........&lt;/P&gt;&lt;P&gt;........&lt;/P&gt;&lt;P&gt;end of itab.&lt;/P&gt;&lt;P&gt;data: itab1 type itab occurs 0 with header line&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this thread.&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.sdn.sap.com/click.jspa?searchID=711746&amp;amp;messageID=2270752" target="test_blank"&gt;https://forums.sdn.sap.com/click.jspa?searchID=711746&amp;amp;messageID=2270752&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.sdn.sap.com/click.jspa?searchID=711746&amp;amp;messageID=512214" target="test_blank"&gt;https://forums.sdn.sap.com/click.jspa?searchID=711746&amp;amp;messageID=512214&lt;/A&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;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 09:21:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-like-and-type/m-p/3718411#M895132</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T09:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: Diff....LIKE and TYPE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-like-and-type/m-p/3718412#M895133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After LIKE, you must specify a data object directly. For the casting, the data type of the data object is used. Within a procedure, for dobj you must not specify a completely generically typed formal parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After TYPE, you can specify either a data type type directly or a character-type data object name in brackets, which must, during execution, contain the label of a data object. The data type specified after TYPE can be generic. However, you cannot specify table types or REF TO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 09:21:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-like-and-type/m-p/3718412#M895133</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T09:21:30Z</dc:date>
    </item>
    <item>
      <title>Re: Diff....LIKE and TYPE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-like-and-type/m-p/3718413#M895134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check this..&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="310376"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type is used for the predifed and basic data types...&lt;/P&gt;&lt;P&gt;data: char type c ( it cannot be done with like).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: test type mara-matnr .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like is used to refer the existing..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: test like mara-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here like brings all the properties of matnr to the test..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 09:22:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-like-and-type/m-p/3718413#M895134</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T09:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: Diff....LIKE and TYPE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-like-and-type/m-p/3718414#M895135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;*This is type definition do not hold any data its just a structure..&lt;/P&gt;&lt;P&gt;types : begin of itab,&lt;/P&gt;&lt;P&gt;f1 type c,&lt;/P&gt;&lt;P&gt;f2 type c,&lt;/P&gt;&lt;P&gt;end of itab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you can use TYPE not LIKE for this because this is just a structure.defining an internal table/ DATA OBJECT&lt;/P&gt;&lt;P&gt;data : it_itab TYPE STANDARD TABLE OF itab. "you are using type to structures&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now another table&lt;/P&gt;&lt;P&gt;data ITAB2 LIKE it_itab. "you can use LIKE to data Objects&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can 't do like this&lt;/P&gt;&lt;P&gt;data itab2 like itab. "this is wrong&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*********&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type is generally used for declaring variables, parameters for existing data types in abap&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for ex: to declare a inter value and character variable of length 10 is as,&lt;/P&gt;&lt;P&gt;data: i1 type i,&lt;/P&gt;&lt;P&gt;c1(10) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like generally refers to existing data objects in abap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for ex:&lt;/P&gt;&lt;P&gt;data: matnr like mara-matnr,&lt;/P&gt;&lt;P&gt;vbeln like vbap-vbeln.&lt;/P&gt;&lt;P&gt;creating variables matnr, vbeln from existing fields of tables mara, vbap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when user creates a user defiend structure for work areas, internal tables we generally use type keyword as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of itab,&lt;/P&gt;&lt;P&gt;.........&lt;/P&gt;&lt;P&gt;.........&lt;/P&gt;&lt;P&gt;........&lt;/P&gt;&lt;P&gt;end of itab.&lt;/P&gt;&lt;P&gt;data: itab1 type itab occurs 0 with header line&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;&lt;/P&gt;&lt;P&gt;Go through the link.&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/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb2ff3358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE - Type is used to tell the system what is the type of data object(variable) you want to create .&lt;/P&gt;&lt;P&gt;LIKE: If there is already a data object declared and you want to declare a similar data object you can just refer to the previous data object using like.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this thread.&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.sdn.sap.com/click.jspa?searchID=711746&amp;amp;messageID=2270752" target="test_blank"&gt;https://forums.sdn.sap.com/click.jspa?searchID=711746&amp;amp;messageID=2270752&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.sdn.sap.com/click.jspa?searchID=711746&amp;amp;messageID=512214" target="test_blank"&gt;https://forums.sdn.sap.com/click.jspa?searchID=711746&amp;amp;messageID=512214&lt;/A&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;Kiran Sure&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 09:27:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-like-and-type/m-p/3718414#M895135</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T09:27:13Z</dc:date>
    </item>
    <item>
      <title>Re: Diff....LIKE and TYPE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-like-and-type/m-p/3718415#M895136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Have a look &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE, you assign datatype directly to the data object while declaring. &lt;/P&gt;&lt;P&gt;LIKE,you assign the datatype of another object to the declaring data object. The datatype is referenced indirectly. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Type is a keyword used to refer to a data type whereas Like is a keyword used to copy the existing properties of already existing data object. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type refers the existing data type &lt;/P&gt;&lt;P&gt;like refers the existing data object &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward,if useful.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chandu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 09:29:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-like-and-type/m-p/3718415#M895136</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T09:29:38Z</dc:date>
    </item>
    <item>
      <title>Re: Diff....LIKE and TYPE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-like-and-type/m-p/3718416#M895137</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; Kindly clse the thread once you got the answer.&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;Arun Joseph&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 09:39:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-like-and-type/m-p/3718416#M895137</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T09:39:37Z</dc:date>
    </item>
  </channel>
</rss>

