<?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 Local &amp; Document Currency in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/local-document-currency/m-p/3449260#M828526</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could anyone explain me about, waht is difference between Amount in Local Currancy and Document Currency?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looking for reply ASAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Prasad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Feb 2008 09:50:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-19T09:50:41Z</dc:date>
    <item>
      <title>Local &amp; Document Currency</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/local-document-currency/m-p/3449260#M828526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could anyone explain me about, waht is difference between Amount in Local Currancy and Document Currency?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looking for reply ASAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Prasad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 09:50:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/local-document-currency/m-p/3449260#M828526</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T09:50:41Z</dc:date>
    </item>
    <item>
      <title>Re: Local &amp; Document Currency</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/local-document-currency/m-p/3449261#M828527</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;The R/3 System distinguishes between the transaction currency (entry currency) and the local currency (ledger currency). The transaction currency is the currency in which a transaction, such as posting an incoming invoice, is entered. The amount entered in transaction currency is then translated into the local currency and both amounts are stored in the document. This means you can always make reference to the business partner&amp;#146;s currency when sending correspondence such as payment reminders. You can therefore enter business transactions in national currency in the R/3 System even after the changeover to the euro. This corresponds to a foreign currency transaction with the only difference being that the euro has fixed exchange rates. Before changing over the ledger currency to the euro, the euro is managed as a foreign currency. Between the changeover and the end of the dual currency phase, the national currency will appear as a foreign currency.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vasudha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Feb 19, 2008 6:11 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 09:55:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/local-document-currency/m-p/3449261#M828527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T09:55:09Z</dc:date>
    </item>
    <item>
      <title>Re: Local &amp; Document Currency</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/local-document-currency/m-p/3449262#M828528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Refer this for converting currency from one to another&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdev.co.uk/country/country_curr.htm" target="test_blank"&gt;http://www.sapdev.co.uk/country/country_curr.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: gd_fcurr TYPE tcurr-fcurr,
      gd_tcurr TYPE tcurr-tcurr,
      gd_date  TYPE sy-datum,
      gd_value TYPE i.

gd_fcurr = 'EUR'.
gd_tcurr = 'GBP'.
gd_date  = sy-datum.
gd_value = 10.

PERFORM currency_conversion USING gd_fcurr
                                  gd_tcurr
                                  gd_date
                         CHANGING gd_value.



* Convert value to Currency value
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  currency_conversion
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*      --&amp;gt;P_GD_FCURR  text
*      --&amp;gt;P_GD_TCURR  text
*      --&amp;gt;P_GD_DATE   text
*      &amp;lt;--P_GD_VALUE  text
*----------------------------------------------------------------------*
FORM currency_conversion  USING    p_fcurr
                                   p_tcurr
                                   p_date
                          CHANGING p_value.

  DATA: t_er        TYPE tcurr-ukurs,
        t_ff        TYPE tcurr-ffact,
        t_lf        TYPE tcurr-tfact,
        t_vfd       TYPE datum,
        ld_erate(12)   TYPE c.

  CALL FUNCTION 'READ_EXCHANGE_RATE'
    EXPORTING
*       CLIENT                  = SY-MANDT
      date                    = p_date
      foreign_currency        = p_fcurr
      local_currency          = p_tcurr
      TYPE_OF_RATE            = 'M'
*       EXACT_DATE              = ' '
   IMPORTING
      exchange_rate           = t_er
      foreign_factor          = t_ff
      local_factor            = t_lf
      valid_from_date         = t_vfd
*       DERIVED_RATE_TYPE       =
*       FIXED_RATE              =
*       OLDEST_RATE_FROM        =
   EXCEPTIONS
     no_rate_found           = 1
     no_factors_found        = 2
     no_spread_found         = 3
     derived_2_times         = 4
     overflow                = 5
     zero_rate               = 6
     OTHERS                  = 7
            .
  IF sy-subrc EQ 0.
    ld_erate = t_er / ( t_ff / t_lf ).
    p_value = p_value * ld_erate.
  ENDIF.
ENDFORM.                    " currency_conversion&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 10:02:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/local-document-currency/m-p/3449262#M828528</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T10:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: Local &amp; Document Currency</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/local-document-currency/m-p/3449263#M828529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi prasad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Document Currency :(VBAK-WAERK)&lt;/P&gt;&lt;P&gt;The system proposes the document currency from the customer master record of the sold-to party. You can change the currency manually in the document. If you change the currency, the system recalculates prices for the entire document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Local Currency -&lt;/P&gt;&lt;P&gt; The currency of a company code (country currency) in which the local ledgers are managed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sachin M M&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Feb 19, 2008 6:13 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 10:46:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/local-document-currency/m-p/3449263#M828529</guid>
      <dc:creator>sachin_mathapati</dc:creator>
      <dc:date>2008-02-19T10:46:27Z</dc:date>
    </item>
    <item>
      <title>Re: Local &amp; Document Currency</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/local-document-currency/m-p/3449264#M828530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Mar 2011 14:58:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/local-document-currency/m-p/3449264#M828530</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-10T14:58:40Z</dc:date>
    </item>
  </channel>
</rss>

