<?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: movedate between tables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/movedate-between-tables/m-p/3958726#M945855</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;/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;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of t_cash,      "cash transactions&lt;/P&gt;&lt;P&gt;         D1(08),    "Post Date&lt;/P&gt;&lt;P&gt;         D2(40),    "Employee Name&lt;/P&gt;&lt;P&gt;         &lt;STRONG&gt;D3(40),&lt;/STRONG&gt;    "Employee Vendor Id&lt;/P&gt;&lt;P&gt;       end of t_cash.&lt;/P&gt;&lt;P&gt;data: begin of t_card,      "card transactions&lt;/P&gt;&lt;P&gt;         D1(08),    "Post Date&lt;/P&gt;&lt;P&gt;         D2(40),    "Employee Name&lt;/P&gt;&lt;P&gt;         &lt;STRONG&gt;D4(25),&lt;/STRONG&gt;    "Merchant Name&lt;/P&gt;&lt;P&gt;       end of t_card.&lt;/P&gt;&lt;P&gt;&lt;/P&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;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE T_CASH TO T_CARD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T_CARD = T_CASH(73).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&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;P&gt;&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING T_CASH TO T_CARD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T_CARD-D1 = T_CASH-D1.&lt;/P&gt;&lt;P&gt;T_CARD-D2 = T_CASH-D2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&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;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Jun 2008 07:57:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-04T07:57:20Z</dc:date>
    <item>
      <title>movedate between tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/movedate-between-tables/m-p/3958724#M945853</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 2 tables (itab1,itab2 same almost same structures ) and i wont to move the data from &lt;/P&gt;&lt;P&gt;itab1 to itab2 but in itab2 i miss one Colman (i don't need this Colman  data) there is a way  to move it except move for every field and append .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 07:38:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/movedate-between-tables/m-p/3958724#M945853</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T07:38:55Z</dc:date>
    </item>
    <item>
      <title>Re: movedate between tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/movedate-between-tables/m-p/3958725#M945854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use MOVE-CORRESPONDING.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 07:50:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/movedate-between-tables/m-p/3958725#M945854</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-06-04T07:50:51Z</dc:date>
    </item>
    <item>
      <title>Re: movedate between tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/movedate-between-tables/m-p/3958726#M945855</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;/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;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of t_cash,      "cash transactions&lt;/P&gt;&lt;P&gt;         D1(08),    "Post Date&lt;/P&gt;&lt;P&gt;         D2(40),    "Employee Name&lt;/P&gt;&lt;P&gt;         &lt;STRONG&gt;D3(40),&lt;/STRONG&gt;    "Employee Vendor Id&lt;/P&gt;&lt;P&gt;       end of t_cash.&lt;/P&gt;&lt;P&gt;data: begin of t_card,      "card transactions&lt;/P&gt;&lt;P&gt;         D1(08),    "Post Date&lt;/P&gt;&lt;P&gt;         D2(40),    "Employee Name&lt;/P&gt;&lt;P&gt;         &lt;STRONG&gt;D4(25),&lt;/STRONG&gt;    "Merchant Name&lt;/P&gt;&lt;P&gt;       end of t_card.&lt;/P&gt;&lt;P&gt;&lt;/P&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;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE T_CASH TO T_CARD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T_CARD = T_CASH(73).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&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;P&gt;&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING T_CASH TO T_CARD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T_CARD-D1 = T_CASH-D1.&lt;/P&gt;&lt;P&gt;T_CARD-D2 = T_CASH-D2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 07:57:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/movedate-between-tables/m-p/3958726#M945855</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T07:57:20Z</dc:date>
    </item>
    <item>
      <title>Re: movedate between tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/movedate-between-tables/m-p/3958727#M945856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use &lt;/P&gt;&lt;P&gt;move-corresponding itab2 to itab1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 08:07:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/movedate-between-tables/m-p/3958727#M945856</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T08:07:30Z</dc:date>
    </item>
  </channel>
</rss>

