Regarding the exchange rate used in shopping cart

Hi,
Iam facing one problem regarding the currency conversion while crerating the shopping cart. The basic currency in my organizational profile is CHF. But I have a requirement to create a shopping cart in NZD(New Zealand dollars). After entering all the details and click on Shop, Iam going back to the home page and the error Iam getting is " Error during currency translation from NZD to CHF". I have checked for some other currencies like EURO, AUD etc and for all these currencies Iam not getting any error and the value gets converted to CHF with some exchange rate.
I want to know which table the system looks at for getting the exchange rate and why this error is coming only for NZD to CHF?
I checked some standard tables like TCURR and TCURX.
Any feed back will be very much appreciated.
Thanks and regards,
Ramachandra DN

Hi,
I am also facing this same issue.... Currency conversion is working fine for other currencies except for GBP to IDR.
Is it some config issue or wht as  the functional guys have checked every thing.. they have maintained the exhange rate and etc...
we tried runing the report BBP_GET_EXRATE also butit says No records found.
Please help.
Thanks,
Vaibhav Goel.
Edited by: Vaibhav goel on Sep 3, 2010 12:09 PM

Similar Messages

  • Change the exchange rate of a line item manually

    My company has an issue regarding the exchange rates.  We are in a country using EURO.
    Though from one of our vendor we take prices in USD. In our pricing procedure in the sales orders we post the price of the vendor and in the prices we maintain another condition type for our profit.
    In the case of the vendor price that gives us USD, we have want to give the price in the usd and the system to translate the usd in eur (in the next line of the procing procedure) accourding to an exchange rate that the user will give per line item.
    At the moment the system thanslates the price to eur accourding to the exchange rate from the system (automatically) and I haven't have the possibility to change the predifined exchange rate manually as I want to do.

    Hi,
    Exchange rate are maintained in the T.Code "OB08".
    Goto the T.Code "OB08".
    Change the exchange rate as per your requirement.
    If you want to get different currency then goto the T.Code "XD02".
    Enter your customer number,Company code and sales area.
    Goto Sales area data.Sales tab.
    Change the currency to your value as per your requirement.
    If you create a new order with that customer,then we will get this new currency.
    After creating the invoice,pass the accounting document number into "FB03" and enter the company code and fiscal year.
    Enter.
    Click on "Currency".
    It gives you the value in base currency.
    Regards,
    Krishna.

  • Which table field stored the exchange rate for controlling documents?

    Hi,
    May i know which table field stores the exchange rate used for a controlling document?

    Hi,
    The exchange rate is not specifically stored in CO. In table COEP, the data in transaction currency, object currency and controlling Area currency is stored. You can derive the exchange rate from here.
    Rgds
    Shivram.

  • Can I assign the exchange rate data to consignment when I use MRKO

    We with the selling on consignment supplier are the foreign currency transactions
    The exchange rate was changed between the consignment withdrawal in inventory management and the posting of the consignment invoice.
    Then the transfer posting occur between consignment liabilities account and an exchange rate difference account .
    The consignment liabilities account is not cleared afterwards.
    I want to know how can I configure for the consignment liabilities account is  cleared.

    The functionality with the clearing of the consingment account
    after you posting the invoice  isn't available here.
    It means if there different exchange rates were used
    in the inventory management
    and in in the transaction MRKO, the consingment account won't be
    cleared in the local currency. You have to do it unfortunately
    manually in FI.
    The transaction MRKO just posts the invoices with the posting date of
    the documents. You have to post manually from the consignment account
    to the exchange rate gain/loss account. Sorry about it but this the only
    way to do it. Otherwise, the exchange rate will be taken from table RKWA
    Check note  393571

  • Use Current Exchange Rate from the Exchange Rate Table itu00B4s not working

    Hi Experts:
    Working with manager user, Iu2019m trying to create a Goods Receipt PO through the Draw Document Wizard, but the option u201CUse Current Exchange Rate from the Exchange Rate Tableu201D it is not working, it does not bring me the USD exchange rate of today defined in  the table;  it brings the USD exchange rate from the base document (AP Reserve Invoice), and Iu2019m not allowed to change it. What should I do?. We are working wih SAP Business One SP01 PL06. Thanks
    CLAUDIA

    Hi,
    There is a SAP Note related to your issue, have a look at this.
    [http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes/sdn_oss_sbo_adm/~form/handler%7b5f4150503d3030323030363832353030303030303031393732265f4556454e543d444953504c4159265f4e4e554d3d373033303238%7d]
    ...For companies using the Continous Stock System feature, there are three additional scenarios in which the row Exchange Rate will be copied from the base document regardless of the calculation method chosen in the 'Draw Document Wizard':
    a) Goods Receipt PO -> Goods Return.
    b) Goods Return -> Goods Receipt PO.
    c) AP Reserve Invoice -> Goods Receipt PO.
    Hope this helps,
    Son.

  • How to change the exchange rate filled in a posted Invoice?

    Hi All,
    an user has posted an invoice in foreign currency. He has forgotten filling in a particular exchange rate.
    I wonder if is possible to change the document filling, in the exchange rate required, so to have the right amount in local currency.
    Thanks
    G.Rossi

    Hi,
    You can not change exchang rate in the already posted document.
    You need to reverse that document and have to create a new one using correct exchange rate.
    Regards,
    Gaurav

  • Exchange Rate: Routine to copy  the "Exchange Rate" value From TCURR table

    Dear experts,
    I have created a cutomised Key Figure (ZEXCHRATE) with the 0currency as the unit and this field is included in my ZCOPA_C21 Infocube.
    In the update rule, it was then appointed with a simple routine below;
    (PROGRAM UPDATE_ROUTINE.
    $$ begin of global - insert your declaration only below this line  -
    TABLES: TCURR.
    DATA: IT_TCURT Type TCURR occurs 0 with header line.
    $$ end of global - insert your declaration only before this line   -
    FORM compute_data_field
      TABLES   MONITOR STRUCTURE RSMONITOR "user defined monitoring
      USING    COMM_STRUCTURE LIKE /BIC/CSZCOPA_TPL_IS
               RECORD_NO LIKE SY-TABIX
               RECORD_ALL LIKE SY-TABIX
               SOURCE_SYSTEM LIKE RSUPDSIMULH-LOGSYS
      CHANGING RESULT LIKE /BIC/VZCOPA_C21T-/BIC/ZEXCHRATE
               RETURNCODE LIKE SY-SUBRC
               ABORT LIKE SY-SUBRC. "set ABORT <> 0 to cancel update
    $$ begin of routine - insert your code only below this line        -
    fill the internal table "MONITOR", to make monitor entries
      SELECT        * FROM  TCURR appending corresponding fields of table
      IT_TCURT
             WHERE  KURST  = 'M'
             AND    FCURR  = 'USD'
             AND    TCURR  = 'IDR'.
          AND    GDATU  = ___.
          AND    UKURS  = ___.
      Sort IT_TCURT by GDATU descending.
      Loop at IT_TCURT.
        Move IT_TCURT-UKURS to RESULT.
        Exit.
      Endloop.
    result value of the routine
    RESULT = space.
    if the returncode is not equal zero, the result will not be updated
      RETURNCODE = 0.
    if abort is not equal zero, the update process will be canceled
      ABORT = 0.
    $$ end of routine)
    Which will basically copy all the contents of TCURR into an internal table (IT_TCURT), sort it and then only copy out the UKURS (Exchange rate) data into the customised ZEXCHRATE to get the latest exchange rate value.
    Routine was checked and its fine.
    The problem is, upon checking the update rule, it returned an error message;
    "No Unit maintain for Key Figure Exchange Rate Local".
    Double checked the declaration of ZEXCHRATE, the unit was there.
    My questions;
    1. Is this the correct way of doing it ? I just want to be able to show the exchange rate value in my query (hence the existence of ZEXCHRATE).
    2. Is there an alternative way of achieving the same result ?
    Your help or advice will be greatly appreciated.
    Thanks
    KG

    Hi Sreeni,
    Referring to the " but the conversion from VEF to USD is happening at a rate @0.23256 which is valid till 02/13/2013 only" part in your post, the date given in OB08 for currency rate is valid from and not valid till.  Hence, please check the setting once.  Once you enter the rate from 02/13/2013, the rate is valid till you enter another date later than 02/13/2013.
    Regards,

  • Edit the exchange rate during LIV

    Dear all,
    I created a import PO in which the exchange rate is not fixed. When I try to post the invoice in MIRO against this import PO the exchange rate in the details tab is non editable ie. grey. Ideally the exchange rate shall be editable unless it is fixed in PO. ( The fixed indicator in PO is ticked)
    Will you pls help me out?
    Regards.
    Milind

    Hi Milind,
    Once you enter the PO no system programatically makes the field non editable. Even in SHD0 you cannot change this setting. This is because at the time of entering the PO system normally takes the exchange rate from the table in FI. If entered before it by pases the rate maintained and calculated on the value maintained.
    Re transaction SHD0 : Give the transaction as MIRO and the transaction variant as ZMIRO and press on create button. Then start the recording and select the fields you may use and give the selection i.e mandatory, display etc and finally save the recording. This variant will have to then be made active and there on system will work with Zmiro variant insterad of standard. This is easilt done without help of ABAP. Hope it is useful.
    Rgds
    Janardhanan

  • User Exit / Enhancement Point to set exchange rate using GR date in MIRO

    Dear experts,
    I'm trying to set exchange rate not as default but using GR date (When I input the PO number and click enter, the exchange rate should be set). So when system set the exchange rate, it will use the PO date, not GR date.
    What user exit / enhancement point / BADI should I use?
    I've already tried all user exit and BADI for MIRO but still not succeed. Is there anyone who could help me?
    Thank you very much..
    Regards,
    Shirley

    Hi,
    So as to capture Exchange Rate w.r.t PO date, it is suggested to go for Development/Enhancement with required import purchasing doc types in it. While doing GR and before posting the document you need to capture the Exch Rate as per PO date and replace with GR date Exch rate present in it through development.
    Regards,

  • Is it possible to change the exchange rate after completion of miro documen

    Dear sap guru's,
        Please suggest me user can raise an po with account assignment cateagory (asset) ie AUC Asset. at the time they are giving exchange rate is 39.41. after doing migo he setteled the AUC asset to Main asset.
    Month ending he is doing MIRO At this time System is caputuring the exchange rate as 39.58. so the differnce amount is comes under AUC Asset.Already the AUC Asset is setteled but exchange rate difference amount is showing in asset. how do i resolved this one Kindly suggest me this is an urgent issue.
    Regards,
    Kumar.

    Hi Kumar,
    There are two solutions,
    1. At the time of MIRO, you can give the exchange rate in the details tab screen which can be an exchanged rate which was used at the time of capitalisation.  Hence, there will not be any differences between capitalised value and MIRO value.
    2. You can post the difference in the AuC asset and again you can distribute it to an expenditure or an assets based on business process / decision.
    Hope it clears your doubt.
    Regards
    A.Saravanan.

  • Does anybody know if I can substitute the exchange rate in a CO document?

    Dear experts,
    Does anybody know if I can substitute the exchange rate field in a CO document creation?
    We have a header substitution in FI to populate the constant 1 in the exchange rate field every time we use a specific currency. And this substitution is working fine in FI, but if in the FI document we post an expense account, it generate a controlling document and this controlling document take as an exchange rate the one that the system has, not the constant. Does anybody know if I can create the same substitution for CO documents?
    Best Regards,
    Tatiana

    Hi Tatiana ,
    I guess you cannot do that .. but never tried that ..
    Please refer OSS Note : 392273  which specifies when Validation/Substitution is called in CO
    Regards
    Sarada

  • Redetermine the exchange rates during the billing.

    Hi
    I would like to redetermine the exchange rates during the billing.
    When we are creating a sales order we are maintaining exchange rate in sales order header, but in case of any change in rates
    I have to change it in sales orders first and then i have to create an invoice. Instead of doing this i would like the exchange rates
    to be redetermined during billing automatically.
    Please help
    Suresh

    Hi,
          Firstly let us know If you want to redetermine the pricing exchange rate or the exchange rate to accounting? I imagine that the pricing exchange rate you are talking about ,the pricing exchange rate type should definetely work no matter  what the  pricing source is . Normal sales cycle always has the price source as order, which controls from where and in what sequence the conditions from the reference documents are copied to the billing document. It does not control the exchange rate. Check the billing date in your sales order(its always advisable to take the service rendered date as the base to calculate the exhcange rate which is PGI date when a delivery is involved) , not the actual billed date. If you want the system to determine the exhcange rate on the date when the Invoice has been raised(Different from the billing date in the sales order) then go for the option of "E" which will take the service rendered date.
    But If you want the exchange rate for accounting then you have to append a routine at the item level in "VTFL" .The Logic would be to read the exchange rate from TCURR table using the function module "READ_EXCHANGE_RATE. If you have specified the exchage rate in the header(Accouting tab) of the sales order this gets copied to the billing document This is SAP standard behaviour. To over write this you have to go for the routine ammendment as suggested above.(In case of billing dates and the exchange rates differ). Kindly please let me know If you need any more help on this.
    Regards
    Ram Pedarla

  • Incorrect Exchange rate used for return deliveries

    Hello Friends I have following problem can someone please help
    Germany has produced a return document for a delivery in the month of April. The document type WL (GR) has been used for this. The customizing is set up for this document type to use the exchange rate type P. Anyhow, the system has used this x-rate type for the entry on the account 5000000 but the account  5500000 was translated with a different x-rate. After investigating we found out that the x-rate used is the ZPLN rate which was due on document day plus one (13th of April). As a result the account clearing with the transaction F.13 did not work. Additionally a PPV (exchange rate related) has been booked to bring the journal to zero were no PPV should have been booked.
    After my research i found Return was done for 7 pc u2013 based on different exchange rate than goods receipt (exchange rate type P) u2013 now we are not able to clear this documents (using F.13) becouse amounts are not balanced.
    Could someone Please  help.and provide details what i need to do fix this
    Regards
    Vishal

    can someone please help

  • How can the exchange rate of a sales document can be added in PA report?

    Hi!!!!!!!!!!!!!
    The main issue, is that I have to add  the ammount of  the sales document in the "sales document currency" , I already have it in local currency, so I was trying to add the exchange rate  and create a fomula it in the form in order to get the information.
    Do somebody knows if it has to be created as a characteristic or value fied? How do I know if it has to be created an enhancement?
    Thanks!!!!!

    Hi
    As far as my knowledge goes, you cant add the exchange rate of the sales order to your COPA report
    Whatever currency is posted in your FI, only that currency can come into COPA plus your op concern currency...
    If it is so imperative in your case to report the transaction currency, You can, may be, think of creating one custom char (for Currency Code USD or INR, etc) and one value field and you can update them using user exit in COPA (COPA000*)... In this VF and Char, you can update, say 100 as the value and USD as the currency...
    Or may be wait for other suggestions from group members
    Regards
    Ajay

  • How to automate the exchange rates in BI

    Hi Guys
    can any one let me know the step by step approach of how to automate the exchange rates in BI...I know that if we right click in source system and say transfer exchange rates ..we will get those values ....But I want to automate this process in BI with a Process chain...I have created a start variant and connected it to a ABAP process type and calling the RSIMPCURR programm in sync..local....Do I need to call any Program event ? Iam not able automate this..please advice step by stepp
    After ABAP process type do I need to create any other steps ?
    regards

    Hi,
    All you have to do is to define the ABAP Process as new process variant, call mode syncronous, called from local, program name RSIMPCURR, and define a program variant for example number 12 and create it, there you select the update exchange rates., go to attributes, give a meaning and save all. You can automate the start of the porocess chain and select it as period job.
    Regards
    MK

Maybe you are looking for

  • How to sync apple tv 1st gen

    hey there - trying to sinc my first gen apple tv to my new 27" imac but its not happening. am following instructions in itunes help but when i try to find apple tv in itunes preferences, it's not there. the apple tv says there is a connection to my w

  • Error to transport request when activate the Data Source: 2LIS_13_VDKON

    Hi people, When I try to transport the request about my activation from Standard DataSource 2LIS_13_VDKON, the systen (in ECC6) show me a error: " 8: Transport carried out with errors. Individual objects could not be transported successfully" I alrea

  • Audiobooks no longer play in itunes 10.5

    Downloaded itunes 10.5  and installed. Now my audiobooks will not play, the progress bar moves, but no audio. I have de-autherized and re-autherized audible. Even books that are not from audible won't play. Other media: songs, podcasts, video, plays

  • Mac Mini wont' Display Sleep after Yosemite Update

    My Mac Mini is no longer going into Display Sleep. Instead I now see the Screen Saver.  I have checked System Preferences | Energy Saver and it is definitely set to Display Sleep after 10 minutes (The default). What is interesting is that if I try to

  • No Sender Agreement is Found in JDBC Sender Case

    Hello, I am using a sender JDBC channel in my scenario.I am getting the error as No Sender Agreement is found for that particular channel.I checked sender agreement.Its ok.But still i am getting the same problem. I checked the sender service,sender i