<?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: Move and Move-corresponding in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/3673849#M884796</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;hi,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;move is used when the target structure and source structure have same fields with same names...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;move corresponding in when u use different structures and movin some particular fields which are same&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;regards,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;priya..&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Apr 2008 13:20:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-15T13:20:06Z</dc:date>
    <item>
      <title>Move and Move-corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/3673846#M884793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THis is regarding to Upgrade to ECC 6.0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first Question.&lt;/P&gt;&lt;P&gt;I am a bit confused as how the move and move corresponding statements would work in ECC - 6.0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: begin of t_cash,      "cash transactions
         D1(08),    "Post Date
         D2(40),    "Employee Name
         *D3(40),*    "Employee Vendor Id
       end of t_cash.
data: begin of t_card,      "card transactions
         D1(08),    "Post Date
         D2(40),    "Employee Name
         *D4(25),*    "Merchant Name
       end of t_card.

Now on the above internal tables I have the below statement.

move-corresponding t_card to t_cash.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above statement is Valid in 4.7 and below but is the above statement Valid in Ecc 6.0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have heard that both should have the same structure when we use a move-corresponding statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLs let me know if you have any ideas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second Question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for the above declaration can I use a move statement instead of move-corresponding in 4.7 and similarly in 6.0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any Suggestions,&lt;/P&gt;&lt;P&gt;THanks,&lt;/P&gt;&lt;P&gt;Ster&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2008 13:15:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/3673846#M884793</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-15T13:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: Move and Move-corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/3673847#M884794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Same structure is not required.  MOVE-CORRESPONDING will move ONLY fields names that are named exactly the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wouldn't think they'd change the function of this verb from one version to the next.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2008 13:17:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/3673847#M884794</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-15T13:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: Move and Move-corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/3673848#M884795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Move-corresponding will only look for the corresponding&lt;/P&gt;&lt;P&gt;fields in both internal tables .. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No need that t_card &amp;amp; t_cash have the same structure ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2008 13:19:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/3673848#M884795</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-15T13:19:57Z</dc:date>
    </item>
    <item>
      <title>Re: Move and Move-corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/3673849#M884796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;hi,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;move is used when the target structure and source structure have same fields with same names...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;move corresponding in when u use different structures and movin some particular fields which are same&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;regards,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;priya..&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2008 13:20:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/3673849#M884796</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-15T13:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: Move and Move-corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/3673850#M884797</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 statement is used when both of the tables have same structure. But move corresponding can be useful if they are different structures. In your case fields are differnt so you have to use move corresponding only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sarada&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2008 13:22:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/3673850#M884797</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-15T13:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: Move and Move-corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/3673851#M884798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can MOVE instead of MOVE-CORRESPONDING.&lt;/P&gt;&lt;P&gt;Because MOVE is for Similar structures and &lt;/P&gt;&lt;P&gt;MOVE-CORREPSONDING is for non-similar structures.&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>Tue, 15 Apr 2008 13:24:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/3673851#M884798</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-15T13:24:47Z</dc:date>
    </item>
    <item>
      <title>Re: Move and Move-corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/3673852#M884799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In upgrade &lt;/P&gt;&lt;P&gt;ex :&lt;/P&gt;&lt;P&gt;data :  ls_p1005        like p1005,&lt;/P&gt;&lt;P&gt;data :  lt_wplog        like wplog    &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; lt_wplog = ls_p1005.&lt;/P&gt;&lt;P&gt; If the structures are not similar  then this is prone error in  UCCHECK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE source_field to Target &amp;#150;field . &lt;/P&gt;&lt;P&gt;Or &lt;/P&gt;&lt;P&gt;Here MOVE-CORRESPONDING   works out only if field names are same in both structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Correct code . &lt;/P&gt;&lt;P&gt;a&amp;gt;&lt;/P&gt;&lt;P&gt;Move ls_p1005-f1 to lt_wplog-f1.&lt;/P&gt;&lt;P&gt;Move ls_p1005-f2 to lt_wplog-f2.&lt;/P&gt;&lt;P&gt;&amp;#133;&amp;#133;&amp;#133;&amp;#133;&amp;#133;&amp;#133;&amp;#133;&amp;#133;&amp;#133;&amp;#133;&amp;#133;&amp;#133;&amp;#133;.&lt;/P&gt;&lt;P&gt;Move ls_p1005-fn to lt_wplog-fn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even if fields names in both structures are different. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;b.&amp;gt;&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING   ls_p1005 to lt_wplog only when both field names are same. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data :  ls_p1005        like p1005,&lt;/P&gt;&lt;P&gt;data :  lt_wplog        like wplog    &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    lt_wplog = ls_p1005.&lt;/P&gt;&lt;P&gt; If the structures are not similar  then this is prone error in  UCCHECK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE source_field to Target &amp;#150;field . &lt;/P&gt;&lt;P&gt;Or &lt;/P&gt;&lt;P&gt;Here MOVE-CORRESPONDING   works out only if field names are same in both structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Correct code . &lt;/P&gt;&lt;P&gt;a&amp;gt;&lt;/P&gt;&lt;P&gt;Move ls_p1005-f1 to lt_wplog-f1.&lt;/P&gt;&lt;P&gt;Move ls_p1005-f2 to lt_wplog-f2.&lt;/P&gt;&lt;P&gt;&amp;#133;&amp;#133;&amp;#133;&amp;#133;&amp;#133;&amp;#133;&amp;#133;&amp;#133;&amp;#133;&amp;#133;&amp;#133;&amp;#133;&amp;#133;.&lt;/P&gt;&lt;P&gt;Move ls_p1005-fn to lt_wplog-fn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even if fields names in both structures are different. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;b.&amp;gt;&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING   ls_p1005 to lt_wplog only when both field names are same. .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For ur scenario you can use Move-corresponding. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2008 13:27:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/3673852#M884799</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-15T13:27:17Z</dc:date>
    </item>
    <item>
      <title>Re: Move and Move-corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/3673853#M884800</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: transfer the data from a structure to another one in according to the length of original structure;&lt;/P&gt;&lt;P&gt;- Move-corresponding:  transfer the data from a structure to another one in according to the name of the fields, so in your case:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: begin of t_cash,      "cash transactions
         D1(08),    "Post Date
         D2(40),    "Employee Name
         *D3(40),*    "Employee Vendor Id
       end of t_cash.
data: begin of t_card,      "card transactions
         D1(08),    "Post Date
         D2(40),    "Employee Name
         *D4(25),*    "Merchant Name
       end of t_card.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use MOVE, u shoudl consider T_CARD is shorter than T_CASH: the last field D4 is long 25 CHAR, but the last field D3 is long 40 char. So u'll loose the last 15 digit of T_CASH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MOVE T_CASH TO T_CARD.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;T_CARD = T_CASH(73).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use MOVE-CORRESPONDING, u'll transfer only the information of the field D1 and D2:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MOVE-CORRESPONDING T_CASH TO T_CARD.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;T_CARD-D1 = T_CASH-D1.
T_CARD-D2 = T_CASH-D2.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the problem is ECC 6.00 is unicode release, so the statament MOVE-CORRESPONDING can't be used if the original and destination variable have a different structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2008 13:27:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/3673853#M884800</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-15T13:27:28Z</dc:date>
    </item>
    <item>
      <title>Re: Move and Move-corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/3673854#M884801</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;I have written a test program to see if it works.&lt;/P&gt;&lt;P&gt;the move-corresponding fails in ECC 6.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT  z_test.

TABLES : vbak.

DATA : t_vbak LIKE vbak OCCURS 0 WITH HEADER LINE.

DATA : BEGIN OF it_vbak OCCURS 0,
        vbeln LIKE vbak-vbeln,
        erdat LIKE vbak-erdat,
        erzet LIKE vbak-erzet,
        ernam LIKE vbak-ernam,
        angdt LIKE vbak-angdt,
       END OF it_vbak.

START-OF-SELECTION.


  SELECT * FROM vbak INTO TABLE t_vbak UP TO 10 ROWS.

  move-corresponding t_vbak to it_vbak.


  WRITE : it_vbak.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the above program t_vbak had data however after the move-corresponding statement I dont see any data in it_vbak.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2008 13:35:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/3673854#M884801</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-15T13:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: Move and Move-corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/3673855#M884802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;write as :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  SELECT * FROM vbak INTO TABLE t_vbak UP TO 10 ROWS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at   t_vbak.&lt;/P&gt;&lt;P&gt;  move-corresponding t_vbak to it_vbak.&lt;/P&gt;&lt;P&gt;  append  it_vbak.&lt;/P&gt;&lt;P&gt;endloop. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Loop at   it_vbak.&lt;/P&gt;&lt;P&gt;  WRITE : it_vbak.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2008 13:39:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/3673855#M884802</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-15T13:39:10Z</dc:date>
    </item>
    <item>
      <title>Re: Move and Move-corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/3673856#M884803</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 are missing the "loop at t_vbak" statement around the move-corresponding and write statements.  Without a loop, t_vbak will contain just the header line data which, in this case, would be empty outside the loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jamie&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2008 13:43:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/3673856#M884803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-15T13:43:23Z</dc:date>
    </item>
    <item>
      <title>Re: Move and Move-corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/3673857#M884804</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;No need to use that t_card &amp;amp; t_cash have the same structure ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Muneesh Gitta.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 04:29:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/3673857#M884804</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T04:29:21Z</dc:date>
    </item>
  </channel>
</rss>

