<?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 Why do we have WRITE TO  ?? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-do-we-have-write-to/m-p/1801754#M344154</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Move can do all the operations that WRITE TO  can do .... then why do we have that option??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 24 Dec 2006 14:18:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-24T14:18:08Z</dc:date>
    <item>
      <title>Why do we have WRITE TO  ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-do-we-have-write-to/m-p/1801754#M344154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Move can do all the operations that WRITE TO  can do .... then why do we have that option??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Dec 2006 14:18:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-do-we-have-write-to/m-p/1801754#M344154</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-24T14:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: Why do we have WRITE TO  ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-do-we-have-write-to/m-p/1801755#M344155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;WRITE TO will move the value of the source field to the target field which should be of type character..&lt;/P&gt;&lt;P&gt;but with MOVE TO the target field can be of any type..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Abdul Hakim&lt;/P&gt;&lt;P&gt;Mark all useful answers..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Dec 2006 14:57:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-do-we-have-write-to/m-p/1801755#M344155</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2006-12-24T14:57:58Z</dc:date>
    </item>
    <item>
      <title>Re: Why do we have WRITE TO  ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-do-we-have-write-to/m-p/1801756#M344156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When using WRITE TO,  it will apply the formatting that you see in a list display.  For example, if you write a date using the WRITE TO, it will apply the user specific formatting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;20061224  -&amp;gt;  12/24/2006&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also if writing type P fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1234.00  -&amp;gt;  1,234.00&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Dec 2006 16:21:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-do-we-have-write-to/m-p/1801756#M344156</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-12-24T16:21:01Z</dc:date>
    </item>
    <item>
      <title>Re: Why do we have WRITE TO  ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-do-we-have-write-to/m-p/1801757#M344157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;read this i think this will help u &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use either WRITE or MOVE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using WRITE the format of the target field will be the same as when you write to a list. That means that the settings in the user's master record for decimal point and date are taking into account.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use MOVE, the decimal point is always a periode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move t1 + offset(length) to t2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write t1 + offset(length) to t2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: t1(10) type c, t2(10) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;t1 = '0123456789'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move t1+3(5) to t2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;t2 will contain 34567&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of move you could have used write. In this example the result would have been the same.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Dec 2006 16:25:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-do-we-have-write-to/m-p/1801757#M344157</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-24T16:25:28Z</dc:date>
    </item>
    <item>
      <title>Re: Why do we have WRITE TO  ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-do-we-have-write-to/m-p/1801758#M344158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for that answer....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Dec 2006 15:25:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-do-we-have-write-to/m-p/1801758#M344158</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-25T15:25:36Z</dc:date>
    </item>
  </channel>
</rss>

