<?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: Problem With Currency Conversion in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-currency-conversion/m-p/2028750#M416113</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;Currency values are different from country to country.&lt;/P&gt;&lt;P&gt;In some countries, comma become full stop. it's not a problem.&lt;/P&gt;&lt;P&gt;You can change the user settings in SU01 t code.&lt;/P&gt;&lt;P&gt;or you can  write SET COUNTRY ..&amp;lt;name&amp;gt; in script to print that country specific settings for currencies.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Mar 2007 12:43:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-16T12:43:27Z</dc:date>
    <item>
      <title>Problem With Currency Conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-currency-conversion/m-p/2028749#M416112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am printing currency values in a SAP Script, for INR, GBP, dollar or any other currency it is giving the values correctly but for the currenvy EURO , it is replacing the comma with the dot and dot with comma  For ex for 45,66.88 its showing 45.66,88.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest what can be the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 12:40:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-currency-conversion/m-p/2028749#M416112</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T12:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: Problem With Currency Conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-currency-conversion/m-p/2028750#M416113</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;Currency values are different from country to country.&lt;/P&gt;&lt;P&gt;In some countries, comma become full stop. it's not a problem.&lt;/P&gt;&lt;P&gt;You can change the user settings in SU01 t code.&lt;/P&gt;&lt;P&gt;or you can  write SET COUNTRY ..&amp;lt;name&amp;gt; in script to print that country specific settings for currencies.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 12:43:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-currency-conversion/m-p/2028750#M416113</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T12:43:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problem With Currency Conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-currency-conversion/m-p/2028751#M416114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Country-Dependent Formatting: SET COUNTRY The formatting for certain field types depends on the country settings. These field types include, for example, date fields and number fields that include either a decimal point or the &amp;#145;thousands&amp;#146; separator character. The formatting options defined in the user master record are usually the ones used here. To choose a formatting option other than the one specified in the user master record, use the SET COUNTRY control command. &amp;lt;b&amp;gt;The country-dependent formatting options are stored in the T005X table.&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax: /: SET COUNTRY country_key You can enter the country key either as a literal value enclosed in quotes or as a symbol. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------" /&gt;&lt;P&gt;when this is behaving okay for all the currencies and only Euro is giving u the problem &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Euro currency key is missing somewhere in the tables/spro settings  to support the same .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case ..&lt;/P&gt;&lt;P&gt;So Euro cannot be classified as a country .Normally we can use this to do the thousands or the decimals separator .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;alternative is pick the currency Key from  table TCURC for  Euro  and &lt;/P&gt;&lt;P&gt;apply the condition &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If waers = 'EUR'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;( logic to make the currency behave as required like replace ',' with '.' etc stuff ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This might suffice as an&amp;lt;b&amp;gt; intermediate solution&amp;lt;/b&amp;gt; but i suppose complete solution will be from a standard customize setting .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the final solution &lt;/P&gt;&lt;P&gt;set the EURO currency setting in SPRO .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;vijay.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 17:20:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-currency-conversion/m-p/2028751#M416114</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T17:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: Problem With Currency Conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-currency-conversion/m-p/2028752#M416115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sniper,Thanks for ur reply,&lt;/P&gt;&lt;P&gt;I tried to find out the currency settings in the SPRO transaction but unable to find it,&lt;/P&gt;&lt;P&gt;Can u please tell me where to go to(In transaction SPRO which subtree)  set the currency settings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Mar 2007 03:56:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-currency-conversion/m-p/2028752#M416115</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-17T03:56:21Z</dc:date>
    </item>
    <item>
      <title>Re: Problem With Currency Conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-currency-conversion/m-p/2028753#M416116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SPRO&lt;DEL&gt;-&amp;gt;sap rEf img&lt;/DEL&gt;&amp;gt; general settings ---&amp;gt;sub node currencies  (entry here)&lt;/P&gt;&lt;P&gt;                                                                +&lt;/P&gt;&lt;P&gt;                                                            ---&amp;gt; set decimal places for currencies.&lt;/P&gt;&lt;P&gt;                                                                    (entry here)&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;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Mar 2007 08:47:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-currency-conversion/m-p/2028753#M416116</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-17T08:47:33Z</dc:date>
    </item>
  </channel>
</rss>

