<?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 Corrency Conversion in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/corrency-conversion/m-p/4784016#M1120616</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 have currency conversion problem. COuld you please suggest me the best way to do it.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
From Currency: KRW
From Factor: 100
To currency: USD
To Factor: 1
Exchange Rate: 0.15555
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;There are table TCURR and TCURX. &lt;STRONG&gt;How to use these&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;I tried using all the converion function modules, but failed. Could you please suggest me the code if any. or FMs how to use &lt;STRONG&gt;with example code Please&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Nov 2008 20:17:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-20T20:17:24Z</dc:date>
    <item>
      <title>Corrency Conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/corrency-conversion/m-p/4784016#M1120616</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 have currency conversion problem. COuld you please suggest me the best way to do it.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
From Currency: KRW
From Factor: 100
To currency: USD
To Factor: 1
Exchange Rate: 0.15555
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;There are table TCURR and TCURX. &lt;STRONG&gt;How to use these&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;I tried using all the converion function modules, but failed. Could you please suggest me the code if any. or FMs how to use &lt;STRONG&gt;with example code Please&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 20:17:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/corrency-conversion/m-p/4784016#M1120616</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T20:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: Corrency Conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/corrency-conversion/m-p/4784017#M1120617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/scn/advancedsearch?cat=sdn_all&amp;amp;query=function" target="test_blank"&gt;https://www.sdn.sap.com/irj/scn/advancedsearch?cat=sdn_all&amp;amp;query=function&lt;/A&gt;&lt;EM&gt;module&lt;/EM&gt;for&lt;EM&gt;Currency&lt;/EM&gt;Conversion+++&amp;amp;adv=false&amp;amp;sortby=cm_rnd_rankvalue&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 20:24:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/corrency-conversion/m-p/4784017#M1120617</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T20:24:44Z</dc:date>
    </item>
    <item>
      <title>Re: Corrency Conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/corrency-conversion/m-p/4784018#M1120618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi I wrote this : and it returns some thing &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  zj_test LINE-SIZE 162.
DATA: lv_amount TYPE p DECIMALS 3.

CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY'
  EXPORTING
   client                  = sy-mandt
    date                    = sy-datum
    foreign_amount          = '50000'
    foreign_currency        = 'KRW'
    local_currency          = 'USD'
*   RATE                    = 0
*   TYPE_OF_RATE            = 'M'
*   READ_TCURR              = 'X'
 IMPORTING
*   EXCHANGE_RATE           =
*   FOREIGN_FACTOR          =
   local_amount            = lv_amount
*   LOCAL_FACTOR            =
*   EXCHANGE_RATEX          =
*   FIXED_RATE              =
*   DERIVED_RATE_TYPE       =
 EXCEPTIONS
   no_rate_found           = 1
   overflow                = 2
   no_factors_found        = 3
   no_spread_found         = 4
   derived_2_times         = 5
   OTHERS                  = 6
          .
IF sy-subrc &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
WRITE: lv_amount.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 22:32:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/corrency-conversion/m-p/4784018#M1120618</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-11-20T22:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: Corrency Conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/corrency-conversion/m-p/4784019#M1120619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've one CO module report in my hands,Can you please help to write this quickly,as i've bunch of work besides me &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 22:47:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/corrency-conversion/m-p/4784019#M1120619</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T22:47:06Z</dc:date>
    </item>
  </channel>
</rss>

