<?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: regarding conversion of currecny function module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-conversion-of-currecny-function-module/m-p/3607796#M869080</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;  CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      DATE             = P_P_DATE&lt;/P&gt;&lt;P&gt;      FOREIGN_AMOUNT   = 1&lt;/P&gt;&lt;P&gt;      FOREIGN_CURRENCY = P_VBAK-WAERK&lt;/P&gt;&lt;P&gt;      LOCAL_CURRENCY   = 'INR'&lt;/P&gt;&lt;P&gt;      RATE             = 0&lt;/P&gt;&lt;P&gt;      TYPE_OF_RATE     = 'M'&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      EXCHANGE_RATE    = P_EXCRATE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Mar 2008 10:39:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-25T10:39:07Z</dc:date>
    <item>
      <title>regarding conversion of currecny function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-conversion-of-currecny-function-module/m-p/3607790#M869074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which is the function which converts currency from one format to another format?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2008 10:29:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-conversion-of-currecny-function-module/m-p/3607790#M869074</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-25T10:29:10Z</dc:date>
    </item>
    <item>
      <title>Re: regarding conversion of currecny function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-conversion-of-currecny-function-module/m-p/3607791#M869075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FM-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/SAPHT/DRM_CONVERT_CURRENCY	&lt;/P&gt;&lt;P&gt;Convert amount from one currency to another&lt;/P&gt;&lt;P&gt;CONVERT_TO_FOREIGN_CURRENCY    &lt;/P&gt;&lt;P&gt;Translate local currency amount into foreign currency&lt;/P&gt;&lt;P&gt;CONVERT_TO_LOCAL_CURRENCY      &lt;/P&gt;&lt;P&gt;Translate foreign currency amount to local currency&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this Helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinayak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2008 10:32:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-conversion-of-currecny-function-module/m-p/3607791#M869075</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-25T10:32:20Z</dc:date>
    </item>
    <item>
      <title>Re: regarding conversion of currecny function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-conversion-of-currecny-function-module/m-p/3607792#M869076</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;You can use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FM '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;CONVERT_AMOUNT_TO_CURRENCY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

CALL FUNCTION 'CONVERT_TO_FOREIGN_CURRENCY'

EXPORTING DATE = BKPF-WWERT

FOREIGN_CURRENCY = BKPF-WAERS

LOCAL_CURRENCY = T001-WAERS

LOCAL_AMOUNT = BSEG-DMBTR

RATE = BKPF-KURSF

TYPE_OF_RATE = 'M'

IMPORTING EXCHANGE_RATE = KURS

FOREIGN_AMOUNT = BSEG-WRBTR

FOREIGN_FACTOR = FAKTOR-F

LOCAL_FACTOR = FAKTOR-L

EXCEPTIONS NO_RATE_FOUND = 4

NO_FACTORS_FOUND = 8.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dhruv Shah&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2008 10:35:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-conversion-of-currecny-function-module/m-p/3607792#M869076</guid>
      <dc:creator>dhruv_shah3</dc:creator>
      <dc:date>2008-03-25T10:35:02Z</dc:date>
    </item>
    <item>
      <title>Re: regarding conversion of currecny function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-conversion-of-currecny-function-module/m-p/3607793#M869077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use FM : CONVERT_TO_FOREIGN_CURRENCY&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2008 10:35:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-conversion-of-currecny-function-module/m-p/3607793#M869077</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-25T10:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: regarding conversion of currecny function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-conversion-of-currecny-function-module/m-p/3607794#M869078</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;Check FM &lt;/P&gt;&lt;P&gt;CONVERT_TO_FOREIGN_CURRENCY "Translate local currency amount into foreign currency&lt;/P&gt;&lt;P&gt;CONVERT_TO_LOCAL_CURRENCY "Translate foreign currency amount to local currency&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2008 10:36:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-conversion-of-currecny-function-module/m-p/3607794#M869078</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-25T10:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: regarding conversion of currecny function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-conversion-of-currecny-function-module/m-p/3607795#M869079</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;Check the following link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://sapdev.co.uk/country/country_curr.htm" target="test_blank"&gt;http://sapdev.co.uk/country/country_curr.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2008 10:36:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-conversion-of-currecny-function-module/m-p/3607795#M869079</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-25T10:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: regarding conversion of currecny function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-conversion-of-currecny-function-module/m-p/3607796#M869080</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;  CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      DATE             = P_P_DATE&lt;/P&gt;&lt;P&gt;      FOREIGN_AMOUNT   = 1&lt;/P&gt;&lt;P&gt;      FOREIGN_CURRENCY = P_VBAK-WAERK&lt;/P&gt;&lt;P&gt;      LOCAL_CURRENCY   = 'INR'&lt;/P&gt;&lt;P&gt;      RATE             = 0&lt;/P&gt;&lt;P&gt;      TYPE_OF_RATE     = 'M'&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      EXCHANGE_RATE    = P_EXCRATE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2008 10:39:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-conversion-of-currecny-function-module/m-p/3607796#M869080</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-25T10:39:07Z</dc:date>
    </item>
  </channel>
</rss>

