<?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: write-write to in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-write-to/m-p/2018906#M412966</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;WRITE is to simply write out to the screen where WRITE TO will be used when you want to move a value from one variable to another, yet take advantage of the implicit formatting options that a WRITE command provides. MOVE will not provide you with such features.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 Mar 2007 17:38:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-23T17:38:31Z</dc:date>
    <item>
      <title>write-write to</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-write-to/m-p/2018904#M412964</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;  Can you please send me the difference between the&amp;lt;b&amp;gt; write and write to&amp;lt;/b&amp;gt; ...&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 17:33:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-write-to/m-p/2018904#M412964</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-23T17:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: write-write to</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-write-to/m-p/2018905#M412965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;write: / w_str  --&amp;gt; the values in the variable is displayed on the list&lt;/P&gt;&lt;P&gt;write 'hello' to w_str --&amp;gt; the value gets passed to the string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Generally you WRITE TO a variable to use the formatting options. Press F1 on WRITE &amp;amp; you will know a lot more.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 17:38:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-write-to/m-p/2018905#M412965</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2007-03-23T17:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: write-write to</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-write-to/m-p/2018906#M412966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;WRITE is to simply write out to the screen where WRITE TO will be used when you want to move a value from one variable to another, yet take advantage of the implicit formatting options that a WRITE command provides. MOVE will not provide you with such features.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 17:38:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-write-to/m-p/2018906#M412966</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-23T17:38:31Z</dc:date>
    </item>
    <item>
      <title>Re: write-write to</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-write-to/m-p/2018907#M412967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;WRITE will display any text/variable on the list.&lt;/P&gt;&lt;P&gt;ex: write 'Hello'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE TO will assign the contents of one variable to another variable, and in the output display format.&lt;/P&gt;&lt;P&gt;ex: write abc to xyz.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope I am clear &lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 21:39:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-write-to/m-p/2018907#M412967</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-23T21:39:37Z</dc:date>
    </item>
    <item>
      <title>Re: write-write to</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-write-to/m-p/2018908#M412968</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 -&amp;gt; write the results as a list-output.&lt;/P&gt;&lt;P&gt;Write to -&amp;gt; writes the results into a workarea and can be moved into an internal table. You can use all formatting options in these two stmts.&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;Subramanian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 21:42:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-write-to/m-p/2018908#M412968</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-23T21:42:55Z</dc:date>
    </item>
    <item>
      <title>Re: write-write to</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-write-to/m-p/2018909#M412969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Suresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write to w_str&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;does not work if str is defined as type STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A great disadvantage!.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Mar 2007 01:09:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-write-to/m-p/2018909#M412969</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2007-03-24T01:09:46Z</dc:date>
    </item>
    <item>
      <title>Re: write-write to</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-write-to/m-p/2018910#M412970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the link -&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="3010045"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Mar 2007 01:19:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-write-to/m-p/2018910#M412970</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2007-03-24T01:19:23Z</dc:date>
    </item>
    <item>
      <title>Re: write-write to</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-write-to/m-p/2018911#M412971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Write w_str.  * This writes the value in w_str to list..&lt;/P&gt;&lt;P&gt;Write w_str to w_str1.  * This writes the value in w_str to w_str1 variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The WRITE TO statement always checks the settings in the user&amp;#146;s master record. These specify, for example, whether the decimal point appears as a period (.) or a comma (,). You can also use all of the formatting options available with the WRITE statement, apart from UNDER and NO-GAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement converts the contents of a data object &amp;lt;f1&amp;gt; to type C, and places the string in the variable &amp;lt;f2&amp;gt;. The data type of &amp;lt;f1&amp;gt; must be convertible into a character field; if it is not, a syntax or runtime error occurs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write to is mainly used to apply the user master settings to the date and p type variables ( the date format and decimal format )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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;&lt;/P&gt;&lt;P&gt;reward helpful answers...&lt;/P&gt;&lt;P&gt;sai ramesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Mar 2007 02:42:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-write-to/m-p/2018911#M412971</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-24T02:42:12Z</dc:date>
    </item>
  </channel>
</rss>

