<?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 SAP Script format currency in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-format-currency/m-p/11111623#M1904124</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;&lt;/P&gt;&lt;P&gt;I am using sap script and i use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;KOMK-FKWRT(I13)&amp;amp; to write total&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am getting 17719.020,00 and i would like to receive 17.719.020,00 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I cheked user settings and are 1.234.567,00&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I check currency settings too &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i change this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you and best regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;João Lages Fernandes&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 May 2015 11:55:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2015-05-28T11:55:27Z</dc:date>
    <item>
      <title>SAP Script format currency</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-format-currency/m-p/11111623#M1904124</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;&lt;/P&gt;&lt;P&gt;I am using sap script and i use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;KOMK-FKWRT(I13)&amp;amp; to write total&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am getting 17719.020,00 and i would like to receive 17.719.020,00 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I cheked user settings and are 1.234.567,00&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I check currency settings too &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i change this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you and best regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;João Lages Fernandes&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 May 2015 11:55:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-format-currency/m-p/11111623#M1904124</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-05-28T11:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Script format currency</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-format-currency/m-p/11111624#M1904125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joao,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can make use of the &lt;SPAN style="font-size: 10pt;"&gt;SET COUNTRY country_key command. The amount field will then be displayed according to the settings maintained in table T005X which stores country dependent formatting options. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will also ensure that the format is same across all users irrespective of the user settings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tanmay.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 May 2015 12:12:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-format-currency/m-p/11111624#M1904125</guid>
      <dc:creator>TanmayVerma</dc:creator>
      <dc:date>2015-05-28T12:12:32Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Script format currency</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-format-currency/m-p/11111625#M1904126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As mentioned by Tanmay, you can use SET COUNTRY &amp;lt;Country Name&amp;gt; command in your driver program before the call to OPEN_FORM happens and all the currency, date etc. values will be displayed per the format maintaind in table T005X.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also if your requirement is to pass a specific format always you can move the value &lt;SPAN style="color: #333333; font-size: 12px;"&gt;KOMK-FKWRT&amp;nbsp; to a string/char variable&amp;nbsp; with desired format and output as is on the form.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 May 2015 16:36:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-format-currency/m-p/11111625#M1904126</guid>
      <dc:creator>Ankit_Maskara</dc:creator>
      <dc:date>2015-05-28T16:36:58Z</dc:date>
    </item>
  </channel>
</rss>

