<?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: currency error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/currency-error/m-p/4968298#M1157980</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First of all check your settings in user profile. the format you are getting is german format. Search in se37 using Convert&lt;STRONG&gt;cur&lt;/STRONG&gt; else write your own using replace statement. Press f1 on replace statement, you will see the help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Jan 2009 17:47:39 GMT</pubDate>
    <dc:creator>former_member191735</dc:creator>
    <dc:date>2009-01-09T17:47:39Z</dc:date>
    <item>
      <title>currency error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/currency-error/m-p/4968297#M1157979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Frineds,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am facing some currency error, I am getting currency value like 1000012,59, after comma 2 decimals but in comma place I have to replace with "." dot, is any function module is available for this or any other way to solve.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you any one hlep.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Gourisankar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2009 17:13:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/currency-error/m-p/4968297#M1157979</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-09T17:13:58Z</dc:date>
    </item>
    <item>
      <title>Re: currency error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/currency-error/m-p/4968298#M1157980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First of all check your settings in user profile. the format you are getting is german format. Search in se37 using Convert&lt;STRONG&gt;cur&lt;/STRONG&gt; else write your own using replace statement. Press f1 on replace statement, you will see the help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2009 17:47:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/currency-error/m-p/4968298#M1157980</guid>
      <dc:creator>former_member191735</dc:creator>
      <dc:date>2009-01-09T17:47:39Z</dc:date>
    </item>
    <item>
      <title>Re: currency error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/currency-error/m-p/4968299#M1157981</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;DATA : V_FORMAT LIKE  VFKP-NETWR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use this FM :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION SD_CONVERT_CURRENCY_FORMAT&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    I_CURRENCY                  = INR&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   E_CURRENCY_INT_FORMAT       = V_FORMAT&lt;/P&gt;&lt;P&gt;  CHANGING&lt;/P&gt;&lt;P&gt;    C_CURRENCY_EXT_FORMAT       = 23444&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;   WRONG_FORMAT                = 1&lt;/P&gt;&lt;P&gt;   OTHERS                      = 2&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN U EXECUTE  THIS  FM YOU WILL GET OUTPUT IN INDIAN CURRENCY IN VARIABLE : &lt;/P&gt;&lt;P&gt;V_FORMAT .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IT WILL WORK &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REGARDS &lt;/P&gt;&lt;P&gt;NILESH JAIN .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Jan 2009 11:15:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/currency-error/m-p/4968299#M1157981</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-10T11:15:47Z</dc:date>
    </item>
    <item>
      <title>Re: currency error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/currency-error/m-p/4968300#M1157982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;use  SD_CONVERT_CURRENCY_FORMAT&lt;/P&gt;&lt;P&gt;CONVERT_TO_LOCAL_CURRENCY&lt;/P&gt;&lt;P&gt;CONVERT_TO_FOREIGN_CURRENCY&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, 10 Jan 2009 21:05:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/currency-error/m-p/4968300#M1157982</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-10T21:05:49Z</dc:date>
    </item>
    <item>
      <title>Re: currency error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/currency-error/m-p/4968301#M1157983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the field is character-like, just use this ABAP statement:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TRANSLATE &amp;lt;your_field_name&amp;gt; USING ',.'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Jan 2009 00:14:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/currency-error/m-p/4968301#M1157983</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2009-01-11T00:14:38Z</dc:date>
    </item>
  </channel>
</rss>

