<?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: Function to know Decimals Currency in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-know-decimals-currency/m-p/6011827#M1346201</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Finally I consulted TCURX, that table contains information about decimals places for every currency. I need truncate a numeric value with decimals specified in that table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Aug 2009 18:03:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-08-12T18:03:58Z</dc:date>
    <item>
      <title>Function to know Decimals Currency</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-know-decimals-currency/m-p/6011823#M1346197</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to some function to know decimals currency, or format an input with a specific currency format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g. &lt;/P&gt;&lt;P&gt;input 1234,5678 and USD&lt;/P&gt;&lt;P&gt;output 1234,56 or 1234,57&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Sebastian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 16:11:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-know-decimals-currency/m-p/6011823#M1346197</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-12T16:11:49Z</dc:date>
    </item>
    <item>
      <title>Re: Function to know Decimals Currency</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-know-decimals-currency/m-p/6011824#M1346198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : l_descr_ref TYPE REF TO cl_abap_structdescr.&lt;/P&gt;&lt;P&gt;l_descr_ref ?= cl_abap_typedescr=&amp;gt;describe_by_data( itab ).&lt;/P&gt;&lt;P&gt;Now l_descr_ref-&amp;gt;components holds the entire list of fields in itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Shreemohan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 16:39:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-know-decimals-currency/m-p/6011824#M1346198</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-12T16:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: Function to know Decimals Currency</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-know-decimals-currency/m-p/6011825#M1346199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Doesn't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to convert 123.123 and USD in 123.12&lt;/P&gt;&lt;P&gt;or 123.123 and JAP in 123 (yens hasn't decimals)&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 17:25:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-know-decimals-currency/m-p/6011825#M1346199</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-12T17:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: Function to know Decimals Currency</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-know-decimals-currency/m-p/6011826#M1346200</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;Following are FM with respect to Currency,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERT_TO_FOREIGN_CURRENCY 	Convert local currency to foreign currency. &lt;/P&gt;&lt;P&gt;CONVERT_TO_LOCAL_CURRENCY 	Convert from foreign currency to local currency &lt;/P&gt;&lt;P&gt;CONVERT_AMOUNT_TO_CURRENCY 	Convert an amount from a currency to another (exchange rate taken from database tables) &lt;/P&gt;&lt;P&gt;CONVERT_CURRENCY_BY_RATE 	Convert an amount from a currency to another, according to the passed exchange rate &lt;/P&gt;&lt;P&gt;BAPI_CURRENCY_CONV_TO_EXTERNAL 	Conversion of Currency Amounts into External Data Format &lt;/P&gt;&lt;P&gt;BAPI_CURRENCY_CONV_TO_INTERNAL 	Conversion of Currency Amounts into Internal Data Format &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Shreemohan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 17:28:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-know-decimals-currency/m-p/6011826#M1346200</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-12T17:28:11Z</dc:date>
    </item>
    <item>
      <title>Re: Function to know Decimals Currency</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-know-decimals-currency/m-p/6011827#M1346201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Finally I consulted TCURX, that table contains information about decimals places for every currency. I need truncate a numeric value with decimals specified in that table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 18:03:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-know-decimals-currency/m-p/6011827#M1346201</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-12T18:03:58Z</dc:date>
    </item>
    <item>
      <title>Re: Function to know Decimals Currency</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-know-decimals-currency/m-p/6011828#M1346202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can use Write with currency option to let SAp do that automatically.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
write  xx currency 'USD' to yy.

or write  xx currency 'JPY' to yy.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 18:11:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-know-decimals-currency/m-p/6011828#M1346202</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-12T18:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: Function to know Decimals Currency</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-know-decimals-currency/m-p/6011829#M1346203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, thanks! but I need those values inside a Web Dynpro for Java.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 18:16:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-know-decimals-currency/m-p/6011829#M1346203</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-12T18:16:23Z</dc:date>
    </item>
  </channel>
</rss>

