<?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: Query on MOVE statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-move-statement/m-p/3889767#M934295</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sameer,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Look at below program:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  Z_TEST_PROGRAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: x type i, y type f.&lt;/P&gt;&lt;P&gt;data: z(10) value 'abcd123'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;y = '10.50'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move y to x.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write x.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Output is 11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move z to x. " This leads to dump&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write x.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The data object destination can be any data object that can be listed at a write position, and the data object source can be a data object, a predefined function or a functional method (as of release 6.10). The data type of the data object destination must either be compatible with the data type of source, or it must be possible to convert the content of source into the data type of destination according to one of the conversion rules. (This is from SAP docs)&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  So as Destination is compatible to accept the data coming in you can use required data types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 May 2008 18:41:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-26T18:41:45Z</dc:date>
    <item>
      <title>Query on MOVE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-move-statement/m-p/3889765#M934293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a query regarding move statement when the source structure is char and the target structure is different than char.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can i know the different possibilities of the target structure for the declaration ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex: move v1 to v2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;V1 is declared as char. What are the different possibilities of declaration of V2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Move statement has to be used. i cant replace it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 17:58:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-move-statement/m-p/3889765#M934293</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T17:58:33Z</dc:date>
    </item>
    <item>
      <title>Re: Query on MOVE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-move-statement/m-p/3889766#M934294</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;data:v_char(10) type  c  value '45.65',&lt;/P&gt;&lt;P&gt;      j type f .&lt;/P&gt;&lt;P&gt;j = v_char .&lt;/P&gt;&lt;P&gt;   write:/  j .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:v_char(10) type  c  value '45',&lt;/P&gt;&lt;P&gt;      i type i .&lt;/P&gt;&lt;P&gt;           i = v_char .&lt;/P&gt;&lt;P&gt;write:/ i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/move.htm" target="test_blank"&gt;http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/move.htm&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;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 18:06:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-move-statement/m-p/3889766#M934294</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T18:06:11Z</dc:date>
    </item>
    <item>
      <title>Re: Query on MOVE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-move-statement/m-p/3889767#M934295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sameer,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Look at below program:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  Z_TEST_PROGRAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: x type i, y type f.&lt;/P&gt;&lt;P&gt;data: z(10) value 'abcd123'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;y = '10.50'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move y to x.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write x.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Output is 11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move z to x. " This leads to dump&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write x.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The data object destination can be any data object that can be listed at a write position, and the data object source can be a data object, a predefined function or a functional method (as of release 6.10). The data type of the data object destination must either be compatible with the data type of source, or it must be possible to convert the content of source into the data type of destination according to one of the conversion rules. (This is from SAP docs)&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  So as Destination is compatible to accept the data coming in you can use required data types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 18:41:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-move-statement/m-p/3889767#M934295</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T18:41:45Z</dc:date>
    </item>
    <item>
      <title>Re: Query on MOVE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-move-statement/m-p/3889768#M934296</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; V2 can be N, I or P ... You can move character to any of these variables ..&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>Mon, 26 May 2008 18:46:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-move-statement/m-p/3889768#M934296</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T18:46:32Z</dc:date>
    </item>
  </channel>
</rss>

