<?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: PROBLEM IN MOVE STATEMENT IN ECC 6.0 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-move-statement-in-ecc-6-0/m-p/1746934#M323973</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , &lt;/P&gt;&lt;P&gt;  If you look at the structure of  i0008 and innnn they are differeent , i0008 has many more fileds than innnn , so insted of move use move corresponding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps , if not please revert back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Dec 2006 04:39:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-19T04:39:52Z</dc:date>
    <item>
      <title>PROBLEM IN MOVE STATEMENT IN ECC 6.0</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-move-statement-in-ecc-6-0/m-p/1746932#M323971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi EXPERTS,&lt;/P&gt;&lt;P&gt; THE FOLLOWING CODE WORKS FINE IN 4.6C BUT IN ECC 6.0 THE MOVE STATEMENT AT THE END THROWS ERROR.&lt;/P&gt;&lt;P&gt;""INNNN" and "I0008" are not mutually convertible. In Unicode systems, "INNNN" must have the same structure layout (fragment view) as"I0008", regardless of the length of the Unicode character."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: i0001 LIKE p0001 OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;      i0008 LIKE p0008 ,&lt;/P&gt;&lt;P&gt;      innnn like PRELP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * INTO CORRESPONDING FIELDS OF TABLE i0001&lt;/P&gt;&lt;P&gt;      FROM pa0001&lt;/P&gt;&lt;P&gt;      WHERE begda &amp;lt;= 20061201&lt;/P&gt;&lt;P&gt;      AND endda &amp;gt;= 20061201&lt;/P&gt;&lt;P&gt;      AND pernr = 00014442 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE i0001 INDEX 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      i0008-trfgr = i0001-persk.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CASE i0001-persg.&lt;/P&gt;&lt;P&gt;        WHEN '4'.&lt;/P&gt;&lt;P&gt;          i0008-trfst = i0001-persg.&lt;/P&gt;&lt;P&gt;        WHEN '7'.&lt;/P&gt;&lt;P&gt;          i0008-trfst = i0001-persg.&lt;/P&gt;&lt;P&gt;        WHEN '8'.&lt;/P&gt;&lt;P&gt;          i0008-trfst = i0001-persg.&lt;/P&gt;&lt;P&gt;        WHEN OTHERS.&lt;/P&gt;&lt;P&gt;          i0008-trfst = '1' .&lt;/P&gt;&lt;P&gt;      ENDCASE.&lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;P&gt;      MOVE i0008 TO innnn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'VE ALSO CHECKED THE SAME PROGRAM IN DEBUGGER IN 4.6C.&lt;/P&gt;&lt;P&gt;I'VE FOUND THAT THE VALUES FOR i0008-trfgr i0008-trfst ARE TOGETHER STORED IN THE FIELD DATA1 OF INNNN. BUT THIS DOES NOT HAPPEN IN ECC 6.0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLEASE HELP.&lt;/P&gt;&lt;P&gt;ITS URGENT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 04:33:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-move-statement-in-ecc-6-0/m-p/1746932#M323971</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T04:33:52Z</dc:date>
    </item>
    <item>
      <title>Re: PROBLEM IN MOVE STATEMENT IN ECC 6.0</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-move-statement-in-ecc-6-0/m-p/1746933#M323972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi priya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;iN the program attributes remove the checking for uniocde checks.it will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 04:37:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-move-statement-in-ecc-6-0/m-p/1746933#M323972</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2006-12-19T04:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: PROBLEM IN MOVE STATEMENT IN ECC 6.0</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-move-statement-in-ecc-6-0/m-p/1746934#M323973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , &lt;/P&gt;&lt;P&gt;  If you look at the structure of  i0008 and innnn they are differeent , i0008 has many more fileds than innnn , so insted of move use move corresponding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps , if not please revert back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 04:39:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-move-statement-in-ecc-6-0/m-p/1746934#M323973</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T04:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: PROBLEM IN MOVE STATEMENT IN ECC 6.0</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-move-statement-in-ecc-6-0/m-p/1746935#M323974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I CAN'T CHANGE THE ATTRBUTES AS IT IS A USER EXIT AND MOREOVER DOES NOT HAVE ANY CHECKBOX FOR UNICODE CHECK.&lt;/P&gt;&lt;P&gt;I' VE TRIED WITH MOVE CORRESPONDING BUT IT STILL DOESNOT WORK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLEASE SUGGEST SOMETHING ELSE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 05:00:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-move-statement-in-ecc-6-0/m-p/1746935#M323974</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T05:00:26Z</dc:date>
    </item>
    <item>
      <title>Re: PROBLEM IN MOVE STATEMENT IN ECC 6.0</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-move-statement-in-ecc-6-0/m-p/1746936#M323975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi priya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: i0001 LIKE p0001 OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;i0008 LIKE p0008 ,&lt;/P&gt;&lt;P&gt;declare innnn like this and check&lt;/P&gt;&lt;P&gt;innnn like p008.&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;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 05:07:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-move-statement-in-ecc-6-0/m-p/1746936#M323975</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2006-12-19T05:07:40Z</dc:date>
    </item>
    <item>
      <title>Re: PROBLEM IN MOVE STATEMENT IN ECC 6.0</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-move-statement-in-ecc-6-0/m-p/1746937#M323976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello priya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead of select * ,pls choose the only concerned field which u want to fetch and then use corresponding clause..&lt;/P&gt;&lt;P&gt;hope it wil help..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 05:09:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-move-statement-in-ecc-6-0/m-p/1746937#M323976</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T05:09:38Z</dc:date>
    </item>
    <item>
      <title>Re: PROBLEM IN MOVE STATEMENT IN ECC 6.0</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-move-statement-in-ecc-6-0/m-p/1746938#M323977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Priya , &lt;/P&gt;&lt;P&gt;  Could you please compare whether the structure of both the structure are the same or not in ECC system.&lt;/P&gt;&lt;P&gt;If they are same one method would be try to move each field one by one and see where does the incompatibility occure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 05:11:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-move-statement-in-ecc-6-0/m-p/1746938#M323977</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T05:11:32Z</dc:date>
    </item>
  </channel>
</rss>

