<?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: Regarding SAP Script in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-sap-script/m-p/2800028#M653816</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;The Decimal values are formatted as per the USER PROFILE default settings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To change this:&lt;/P&gt;&lt;P&gt;Menu path:  SYSTEM -&amp;gt; USER PROFILE -&amp;gt; OWN DATA -&amp;gt; Defaults Tab&lt;/P&gt;&lt;P&gt;Select the Decimal Format as needed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now check the Form..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;reward if Helpful.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Sep 2007 08:38:48 GMT</pubDate>
    <dc:creator>varma_narayana</dc:creator>
    <dc:date>2007-09-12T08:38:48Z</dc:date>
    <item>
      <title>Regarding SAP Script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-sap-script/m-p/2800023#M653811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey  Guys,&lt;/P&gt;&lt;P&gt;One problem I am facing in SAP Script.. thing is  numeric values are printed it in some different way..&lt;/P&gt;&lt;P&gt;I mean to say KOMVD-KBETR(12)  contains value " &amp;lt;b&amp;gt;12,000.00&amp;lt;/b&amp;gt;" But it contains values &amp;lt;b&amp;gt;12.000,00&amp;lt;/b&amp;gt;. Which is wrong. Cause the instead of comma(,) Dot is coming(.) and Instead of dot(.)  comma (,) is comming.. Please suggest how to solve it in SAP Script&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2007 07:11:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-sap-script/m-p/2800023#M653811</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-12T07:11:50Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding SAP Script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-sap-script/m-p/2800024#M653812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Mike,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you have to go like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : lv_kbetr TYPE komvd-kbter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE : komvd-kbter TO lv_kbetr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now you have to print lv_kbter instead of komvd-kbetr, but it will be fine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;ec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2007 07:18:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-sap-script/m-p/2800024#M653812</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2007-09-12T07:18:38Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding SAP Script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-sap-script/m-p/2800025#M653813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eric,&lt;/P&gt;&lt;P&gt;I am passing the correct value from the driver program but in debugging mode the format get changed.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2007 08:02:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-sap-script/m-p/2800025#M653813</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-12T08:02:39Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding SAP Script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-sap-script/m-p/2800026#M653814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mike,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write ur field value in this format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose Bsega-wrshb is the currency field u wanna write.&lt;/P&gt;&lt;P&gt;So use this extension for it.&lt;/P&gt;&lt;P&gt;write:/ BSEGA-WRSHB CURRENCY BSID-WAERS.&lt;/P&gt;&lt;P&gt;This will definately help u out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly reward points.......&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sapna A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2007 08:07:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-sap-script/m-p/2800026#M653814</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-12T08:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding SAP Script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-sap-script/m-p/2800027#M653815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It picks up the user settings, I guess. If that is the case than you either change the user settings, or modify the printout during program run, i.e. move the value to a character type field and replace dots and comas with each other.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2007 08:34:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-sap-script/m-p/2800027#M653815</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2007-09-12T08:34:35Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding SAP Script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-sap-script/m-p/2800028#M653816</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;The Decimal values are formatted as per the USER PROFILE default settings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To change this:&lt;/P&gt;&lt;P&gt;Menu path:  SYSTEM -&amp;gt; USER PROFILE -&amp;gt; OWN DATA -&amp;gt; Defaults Tab&lt;/P&gt;&lt;P&gt;Select the Decimal Format as needed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now check the Form..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;reward if Helpful.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2007 08:38:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-sap-script/m-p/2800028#M653816</guid>
      <dc:creator>varma_narayana</dc:creator>
      <dc:date>2007-09-12T08:38:48Z</dc:date>
    </item>
  </channel>
</rss>

