<?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 convert amount into US format in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-amount-into-us-format/m-p/4289322#M1023215</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;can anybody suggest me to convert amount to U.S. format&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like &lt;/P&gt;&lt;P&gt;amount = 3000&lt;/P&gt;&lt;P&gt;US format = 3,000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Aditya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Aug 2008 10:50:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-05T10:50:07Z</dc:date>
    <item>
      <title>convert amount into US format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-amount-into-us-format/m-p/4289322#M1023215</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;can anybody suggest me to convert amount to U.S. format&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like &lt;/P&gt;&lt;P&gt;amount = 3000&lt;/P&gt;&lt;P&gt;US format = 3,000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Aditya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 10:50:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-amount-into-us-format/m-p/4289322#M1023215</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T10:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: convert amount into US format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-amount-into-us-format/m-p/4289323#M1023216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Aditya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it depends how your user setting are defined.&lt;/P&gt;&lt;P&gt;just goto transaction SU01&amp;gt;user name&amp;gt;default &amp;gt;look at the decimal notation.set from here.and logoff system and login again to reflect your changes.&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 10:54:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-amount-into-us-format/m-p/4289323#M1023216</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T10:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: convert amount into US format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-amount-into-us-format/m-p/4289324#M1023217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aditya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer these Function modules Related to Amount and Currency &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CURRENCY_AMOUNT_SAP_TO_IDOC&lt;/STRONG&gt; - Convert currency to IDOC format&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CONVERT_TO_LOCAL_CURRENCY&lt;/STRONG&gt; - Conversion of currency&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CLOI_PUT_SIGN_IN_FRONT&lt;/STRONG&gt; Move the negative sign from the left hand side of a number, to the right hand side of the number. Note that The result will be left justified (like all&lt;/P&gt;&lt;P&gt;character fields), not right justifed as numbers normally are.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CONVERT_TO_FOREIGN_CURRENCY&lt;/STRONG&gt; Convert local currency to foreign currency.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CONVERT_TO_LOCAL_CURRENCY&lt;/STRONG&gt; Convert from foreign currency to local currency&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Example&lt;/EM&gt; : Convert amount to/from string&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Amount to string&lt;/U&gt;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'HRCM_AMOUNT_TO_STRING_CONVERT'
EXPORTING
betrg = 3000
WAERS = 'DKK'
* NEW_DECIMAL_SEPARATOR =
* NEW_THOUSANDS_SEPARATOR =
IMPORTING
STRING = slam
.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;String to amount&lt;/U&gt;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'HRCM_STRING_TO_AMOUNT_CONVERT'
EXPORTING
string = slam2
DECIMAL_SEPARATOR = '.'
* THOUSANDS_SEPARATOR =

WAERS = 'HUF'
IMPORTING
BETRG = b2
* EXCEPTIONS
* CONVERT_ERROR = 1
* OTHERS = 2.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vivek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 14:23:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-amount-into-us-format/m-p/4289324#M1023217</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T14:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: convert amount into US format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-amount-into-us-format/m-p/4289325#M1023218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the statement in ur program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET COUNTRY 'US'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect:&lt;/P&gt;&lt;P&gt;SET COUNTRY cntry. &lt;/P&gt;&lt;P&gt;This statement specifies the predefined output formats for the decimal format (selection of decimal separators and thousand separators) and the date format in all programs of the current internal session for all subsequent outputs in ABAP lists. If the value specified in cntry exists as the country key in the column COUNTRY of the database table T005X, the output of numbers and dates is formatted according to the entries in columns XDEZP and DATFM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 14:34:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-amount-into-us-format/m-p/4289325#M1023218</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T14:34:40Z</dc:date>
    </item>
  </channel>
</rss>

