<?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: Syntax  of move corresponding in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-of-move-corresponding/m-p/1751754#M326010</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;syntax is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move-corresponding &amp;lt;itab1&amp;gt; to &amp;lt;itab2&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will only move those fields values which are common between itab1 and itab2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;other fields of itab2 be as they are in previous state (i.e. before using the command)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Dec 2006 10:36:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-21T10:36:53Z</dc:date>
    <item>
      <title>Syntax  of move corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-of-move-corresponding/m-p/1751747#M326003</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;Can anyone give me the syntax of move corresponding.&lt;/P&gt;&lt;P&gt;I even want to know wat does this exactly do.&lt;/P&gt;&lt;P&gt;Can I have some sample sof move corresponding.&lt;/P&gt;&lt;P&gt;Its urgent.U'll get points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking you&lt;/P&gt;&lt;P&gt;Chandrika.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 10:32:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-of-move-corresponding/m-p/1751747#M326003</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-21T10:32:40Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax  of move corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-of-move-corresponding/m-p/1751748#M326004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;move-correspoding xtab to itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assume that xtab and itab are two work areas(structure).&lt;/P&gt;&lt;P&gt;xtab has field1 field2 field4 as the fields inside.&lt;/P&gt;&lt;P&gt;itab has field1 field2 field3 field4.&lt;/P&gt;&lt;P&gt;then after executing this statement, itab will have the values for field1 field2 and field4 copied from xtab structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Ravi Kanth Talagana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 10:34:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-of-move-corresponding/m-p/1751748#M326004</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-21T10:34:37Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax  of move corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-of-move-corresponding/m-p/1751749#M326005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;MOVE-CORRESPONDING looks for the corresponding field names in the target structure and move those values only..

DATA: BEGIN OF source,
matnr type matnr,
end of source.

DATA: BEGIN OF target,
vbeln type vbeln,
matnr type matnr,
end of target.

source-matnr = 'asdfasf'.

MOVE-CORRESPONDING source to target.

write: / 'vbeln- ', target-vbeln.
write: / 'matnr- ', target-matnr.

clear: target.

skip 1.

MOVE source to target.
write: / 'vbeln- ', target-vbeln.
write: / 'matnr- ', target-matnr.

* If you see the second output the value in matnr is moved to
* vbeln in target.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 10:35:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-of-move-corresponding/m-p/1751749#M326005</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-21T10:35:15Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax  of move corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-of-move-corresponding/m-p/1751750#M326006</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;MOVE-CORRESPONDING source_struct TO destination_struct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here source_struct &amp;amp; destination_struct are two structures (work area/header lines) which have at least 1 field in common ( same field name &amp;amp; type).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;null&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 10:35:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-of-move-corresponding/m-p/1751750#M326006</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-21T10:35:19Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax  of move corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-of-move-corresponding/m-p/1751751#M326007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sarath!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here move corresponding is used to move indetical fields from a transparent table to an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Name of transparent table: bkpf&lt;/P&gt;&lt;P&gt;Name of internal table        : itob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: 	BEGIN OF T_BTOP,&lt;/P&gt;&lt;P&gt;		CPUDT LIKE BKPF-CPUDT,&lt;/P&gt;&lt;P&gt;		BUKRS LIKE BKPF-BUKRS,&lt;/P&gt;&lt;P&gt;		GJAHR LIKE BKPF-GJAHR,&lt;/P&gt;&lt;P&gt;		BLART LIKE BKPF-BLART,&lt;/P&gt;&lt;P&gt;	END OF T_ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: itop type t_itop occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM  BKPF&lt;/P&gt;&lt;P&gt;       WHERE  CPUDT       = PCPUDT.&lt;/P&gt;&lt;P&gt;      MOVE-CORRESPONDING BKPF TO ITOP.    &lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 10:35:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-of-move-corresponding/m-p/1751751#M326007</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-21T10:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax  of move corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-of-move-corresponding/m-p/1751752#M326008</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;MOVE-CORRESPONDING &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basic form &lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING struc1 TO struc2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Interprets struc1 and struc2 as structures. If, for example, struc1 and struc2 are tables, it executes the statement for their header lines. &lt;/P&gt;&lt;P&gt;Searches for the sub-fields which occur both in struc1 and struc2 and then generates, for all relevant field pairs which correspond to the sub-fields ni, statements of the form &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE struc1-ni TO struc2-ni. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The other fields remain unchanged. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With complex structures, the full names of the corresponding field pairs must be identical. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF INT_TABLE OCCURS 10, &lt;/P&gt;&lt;P&gt;        WORD(10), &lt;/P&gt;&lt;P&gt;        NUMBER TYPE I, &lt;/P&gt;&lt;P&gt;        INDEX  LIKE SY-INDEX, &lt;/P&gt;&lt;P&gt;      END   OF INT_TABLE, &lt;/P&gt;&lt;P&gt;      BEGIN OF RECORD, &lt;/P&gt;&lt;P&gt;        NAME(10) VALUE 'not WORD', &lt;/P&gt;&lt;P&gt;        NUMBER TYPE I, &lt;/P&gt;&lt;P&gt;        INDEX(20), &lt;/P&gt;&lt;P&gt;      END   OF RECORD. &lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING INT_TABLE TO RECORD. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This MOVE-CORRESPONDING statement is equivalent to both the following statements: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE INT_TABLE-NUMBER TO RECORD-NUMBER. &lt;/P&gt;&lt;P&gt;MOVE INT_TABLE-INDEX  TO RECORD-INDEX. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF ROW1_3, &lt;/P&gt;&lt;P&gt;         CO1 TYPE I, &lt;/P&gt;&lt;P&gt;         CO2 TYPE I, &lt;/P&gt;&lt;P&gt;         CO3 TYPE I, &lt;/P&gt;&lt;P&gt;       END   OF ROW1_3. &lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF ROW2_4, &lt;/P&gt;&lt;P&gt;         CO2 TYPE I, &lt;/P&gt;&lt;P&gt;         CO3 TYPE I, &lt;/P&gt;&lt;P&gt;         CO4 TYPE I, &lt;/P&gt;&lt;P&gt;       END   OF ROW2_4. &lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF MATRIX1, &lt;/P&gt;&lt;P&gt;         R1 TYPE ROW1_3, &lt;/P&gt;&lt;P&gt;         R2 TYPE ROW1_3, &lt;/P&gt;&lt;P&gt;         R3 TYPE ROW1_3, &lt;/P&gt;&lt;P&gt;       END OF   MATRIX1. &lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF MATRIX2, &lt;/P&gt;&lt;P&gt;         R2 TYPE ROW2_4, &lt;/P&gt;&lt;P&gt;         R3 TYPE ROW2_4, &lt;/P&gt;&lt;P&gt;         R4 TYPE ROW2_4, &lt;/P&gt;&lt;P&gt;       END OF   MATRIX2. &lt;/P&gt;&lt;P&gt;DATA: ROW TYPE ROW1_3, &lt;/P&gt;&lt;P&gt;      M1  TYPE MATRIX1, &lt;/P&gt;&lt;P&gt;      M2  TYPE MATRIX2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ROW-CO1 = 1. ROW-CO2 = 2. ROW-CO3 = 3. &lt;/P&gt;&lt;P&gt;MOVE: ROW TO M1-R1, ROW TO M1-R2, ROW TO M1-R3. &lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING  M1 TO M2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The last MOVE-CORRESPONDING statement is equivalent to the statements: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE: M1-R2-CO2 TO M2-R2-CO2, &lt;/P&gt;&lt;P&gt;      M1-R2-CO3 TO M2-R2-CO3, &lt;/P&gt;&lt;P&gt;      M1-R3-CO2 TO M2-R3-CO2, &lt;/P&gt;&lt;P&gt;      M1-R3-CO3 TO M2-R3-CO3. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;The same runtime errors may occur as with MOVE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;This statement assigns values based on pairs of fields with identical names. To avoid unwanted assignments, you should consider all fields of the source and target structures. If either is defined with reference to an ABAP Dictionary type (for example, a database table), remember that any subsequent extension to the type could cause coincidental pairs of identically-named fields, which could lead to incorrect program logic. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sourabh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 10:36:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-of-move-corresponding/m-p/1751752#M326008</guid>
      <dc:creator>sourabhshah</dc:creator>
      <dc:date>2006-12-21T10:36:15Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax  of move corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-of-move-corresponding/m-p/1751753#M326009</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;MOVE-CORRESPONDING struc1 TO struc2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structures must be specified for struc1 and struc2. All components with the same name are searched for in struc1 und struc2 and the content of components in struc1 is assigned to the components with the same name in struc2. All other components are not affected. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards&lt;/P&gt;&lt;P&gt;Balasubramanian .S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 10:36:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-of-move-corresponding/m-p/1751753#M326009</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-21T10:36:49Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax  of move corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-of-move-corresponding/m-p/1751754#M326010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;syntax is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move-corresponding &amp;lt;itab1&amp;gt; to &amp;lt;itab2&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will only move those fields values which are common between itab1 and itab2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;other fields of itab2 be as they are in previous state (i.e. before using the command)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 10:36:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-of-move-corresponding/m-p/1751754#M326010</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-21T10:36:53Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax  of move corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-of-move-corresponding/m-p/1751755#M326011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;data : begin of itab1 occurs 0,
            matnr like mara-matnr,
            vbeln like vbap-vbeln,
         end of itab1.

data : begin of itab2 occurs 0,
            matnr like mara-matnr,
            posnr like vbap-posnr,,
         end of itab1.

loop at itab1.
  move-corresponding itab1 to itab2.
  append itab2.
endloop.


move-corresponding  will move the fields whose names are same in both the tables

In the above statement only MATNR will be moved to ITAB2 as both the fieldnames are same in itab1 and itab2&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 10:37:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-of-move-corresponding/m-p/1751755#M326011</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-21T10:37:22Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax  of move corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-of-move-corresponding/m-p/1751756#M326012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: beging of itab occurs 0,&lt;/P&gt;&lt;P&gt;       fld1 type matnr,&lt;/P&gt;&lt;P&gt;       fld2 type  werks,&lt;/P&gt;&lt;P&gt;       fld3 type  lgort,&lt;/P&gt;&lt;P&gt;end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: beging of jtab occurs 0,&lt;/P&gt;&lt;P&gt;       fld3 type matnr,&lt;/P&gt;&lt;P&gt;       fld2 type  werks,&lt;/P&gt;&lt;P&gt;       fld1 type  lgort,&lt;/P&gt;&lt;P&gt;end of jtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move-corresponding itab to jtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will move the field values of itab to jtab. Even though the fields in jtab are not in order as itab, move corresponding will look for filed name and moves the itab content into jtab. So the jtab field values are similar to that of itab.&lt;/P&gt;&lt;P&gt;jtab-fld1 = itab-fld1.&lt;/P&gt;&lt;P&gt;jtab-fld2= itab-fld2.&lt;/P&gt;&lt;P&gt;jtabfld = itabfld3.&lt;/P&gt;&lt;P&gt;If helpful award points.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 10:43:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-of-move-corresponding/m-p/1751756#M326012</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-21T10:43:16Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax  of move corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-of-move-corresponding/m-p/1751757#M326013</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Sep 2011 04:49:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-of-move-corresponding/m-p/1751757#M326013</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-05T04:49:13Z</dc:date>
    </item>
  </channel>
</rss>

