<?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 conversion help reqd in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/currency-conversion-help-reqd/m-p/6580647#M1434309</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When trying this BAPI under SE37 I get this for CTRL&lt;EM&gt;SHIFT&lt;/EM&gt;F3 (Where used)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Function Module BAPI_CURRENCY_GETDECIMALS not found in Programs (possibly dynamic calls!)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Message no. ES200&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;which makes me think it cannot be deactivated on demand.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 01 Apr 2010 20:13:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-04-01T20:13:14Z</dc:date>
    <item>
      <title>currency conversion help reqd</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/currency-conversion-help-reqd/m-p/6580642#M1434304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks,&lt;/P&gt;&lt;P&gt;When I check for an entry in the table BSEG, it displays the value of the field PSWBT as 200.00, but when I double click the row and check the value it was 20000. the local currency was USD and the foreign currency(field PSWSL) was JPY.  In the select statement I was able to fetch the value 200 only. Could you pls tell me how to fetch the exact value 20000 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;nani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 11:33:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/currency-conversion-help-reqd/m-p/6580642#M1434304</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-27T11:33:34Z</dc:date>
    </item>
    <item>
      <title>Re: currency conversion help reqd</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/currency-conversion-help-reqd/m-p/6580643#M1434305</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;The currency JPY will not have a decimal value. Thats why the system internally multiplies the value by 100. So you have to do the same thing after fetching the value after the select. If the curreny is JPY, then multiply the value by 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 11:36:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/currency-conversion-help-reqd/m-p/6580643#M1434305</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-27T11:36:26Z</dc:date>
    </item>
    <item>
      <title>Re: currency conversion help reqd</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/currency-conversion-help-reqd/m-p/6580644#M1434306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;System follows some conversion factors for couple of currencies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For &lt;STRONG&gt;JPY,HUF,KRW....&lt;/STRONG&gt; it multiplies by 100 , for 'ITL' by 1000 and so on&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can multiply 100 with JPY currencies to get with your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Manas M.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 11:44:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/currency-conversion-help-reqd/m-p/6580644#M1434306</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-27T11:44:03Z</dc:date>
    </item>
    <item>
      <title>Re: currency conversion help reqd</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/currency-conversion-help-reqd/m-p/6580645#M1434307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Nani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use the addition CURRENCY while displaying the amount, SAP will auto-format this &amp;amp; mutliply by 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure you use this addition while displaying any amount field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Else you can use this code to get the correction factor :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA:
 v_curr TYPE waers,
 l_corr_factor TYPE i,
 lf_bapi1090_1 TYPE bapi1090_1.
CALL FUNCTION 'BAPI_CURRENCY_GETDECIMALS'
  EXPORTING
    currency          = v_curr
  IMPORTING
    currency_decimals = lf_bapi1090_1.
IF lf_bapi1090_1-curdecimals EQ 2.
  l_corr_factor = 1.
ELSE.
  l_corr_factor = 10 ** ( 2 - lf_bapi1090_1-curdecimals ).
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2010 11:44:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/currency-conversion-help-reqd/m-p/6580645#M1434307</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-01-27T11:44:39Z</dc:date>
    </item>
    <item>
      <title>Re: currency conversion help reqd</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/currency-conversion-help-reqd/m-p/6580646#M1434308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you write to me where I can turn off this function in SAP?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance for your help. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anka&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Anka on Apr 1, 2010 12:49 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Apr 2010 10:30:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/currency-conversion-help-reqd/m-p/6580646#M1434308</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-01T10:30:27Z</dc:date>
    </item>
    <item>
      <title>Re: currency conversion help reqd</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/currency-conversion-help-reqd/m-p/6580647#M1434309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When trying this BAPI under SE37 I get this for CTRL&lt;EM&gt;SHIFT&lt;/EM&gt;F3 (Where used)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Function Module BAPI_CURRENCY_GETDECIMALS not found in Programs (possibly dynamic calls!)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Message no. ES200&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;which makes me think it cannot be deactivated on demand.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Apr 2010 20:13:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/currency-conversion-help-reqd/m-p/6580647#M1434309</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-01T20:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: currency conversion help reqd</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/currency-conversion-help-reqd/m-p/6580648#M1434310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check out function:  CURRENCY_AMOUNT_SAP_TO_DISPLAY&lt;/P&gt;&lt;P&gt;It looks at table TCURX.  I'm not sure if this is the best function to use.  I was looking for a FM where you plug in info from BKPF and/or BSEG, the from currency and the to currency, reads the conversion factor from table TCURF, does whatever logic is necessary, and returns the result.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2011 16:13:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/currency-conversion-help-reqd/m-p/6580648#M1434310</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-26T16:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: currency conversion help reqd</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/currency-conversion-help-reqd/m-p/6580649#M1434311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm going to add another note here.  I noticed the currency KRW had a factor of 1 in the TCURF table (not 100 like JPY), yet when I display data in transaction FS10N, it is multiplying by 100.  It is using the TCURX table.  So, for my purposes, I think I will stick with FM CURRENCY_AMOUNT_SAP_TO_DISPLAY.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2011 16:25:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/currency-conversion-help-reqd/m-p/6580649#M1434311</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-26T16:25:23Z</dc:date>
    </item>
    <item>
      <title>Re: currency conversion help reqd</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/currency-conversion-help-reqd/m-p/6580650#M1434312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;  CLIENT                         = SY-MANDT&lt;/P&gt;&lt;P&gt;    date                         = SY-DATUM&lt;/P&gt;&lt;P&gt;    foreign_amount               = V_FA              " Foreign Amount &lt;/P&gt;&lt;P&gt;    foreign_currency             = 'USD'             " Foreign Currency Key&lt;/P&gt;&lt;P&gt;    local_currency               = 'EUR'             " Local Currency Key &lt;/P&gt;&lt;P&gt;    RATE                         = Rate              " Exchange Rate &lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   LOCAL_AMOUNT                  = V_LA              " Local Amount&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2011 17:56:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/currency-conversion-help-reqd/m-p/6580650#M1434312</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-26T17:56:05Z</dc:date>
    </item>
    <item>
      <title>Re: currency conversion help reqd</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/currency-conversion-help-reqd/m-p/6580651#M1434313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bear in mind the date of the OP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2011 18:30:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/currency-conversion-help-reqd/m-p/6580651#M1434313</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-26T18:30:59Z</dc:date>
    </item>
  </channel>
</rss>

