Doing PR in PS, had error regarding exchange rate.

while creating PR (External activity) i encountered this error.
Error: There is no exchange rate for exchange rate type P on 2/23/2009: USD  -> PHP
Pls advise on what to do.
thanks in advance.
Edited by: srm.consultant2 on Sep 29, 2009 10:20 AM

Hi,
Tcode OB08....
Check exchange rate for exchange rate type P on 2/23/2009: USD -> PHP is mainatined or not...
If no please maintain here and save..
Utsav

Similar Messages

  • Error with Exchange rate type

    Hello all,
    While releasing the billing document to accounting, getting the error:
    'An exchange rate type is not defined for country US'.
    In customer master, have maintained Exchange rate as 'M'.
    where do we maintain the exchange rate type for country.
    Thanks
    Gauravjit.

    HI Gauravjit,
    Try this:
    SPRO-F5- General Settings-Currencies-Define Translation ratos for currency translaction
    Reward if it helps
    regards
    Srini

  • Error: No exchange rate from CAD to USD and date 28.02.2007 found

    Hi BW experts,
    I getting following error in report :
    <b>No exchange rate from CAD to USD and date 28.02.2007 found (currency transl. TRAV/TRAV) 
      Notification Number BRAIN 380 </b>
    <b>
    I am getting this message for only 4 months i.e March April,May,June but rest of months its fine.</b>
    Currency translation is done in query with a variable.
    I tried the following solutions:
    1.transfer Exchange rates from source systems Via Program :RSIMPCURR
    2.I checked in Table <b>TCURR</b> and there exists a exchange rates between CAD to USD.
    3.I checked TCODE:  RSCUR the variable exists and created properly.
    4.I searched through forums but none of them present a clear solution.
    <b>SO can somebody help me to solve this error ,its very urgent</b>
    null

    So check in OB08 which gives the overview of Currency Exchange Rates for each month.Check what is the exchange rate maintained for the months u r looking into.
    Else ask the users what exchange rates they maintained for those months and upload the exchange rates for those months.
    Here is the link which will explain how to load the exhange rates.
    <u>http://help.sap.com/saphelp_nw04s/helpdata/en/36/412ad80cb511d5b2df0050da4c74dc/content.htm</u>
    Thanks & Regards,
    Suchitra.V

  • Error in Exchange Rate transfer useing program RFALEX00.

    Hi All,
    We are trying to ALE the Exchange rate from one system to another.
    We are using program RFALEX00. The Idoc generated in host system is successfull where as in target system it's getting in to Error saying "No maintenance authorization for requested data (SV- 052 Message type)".
    I can load the exchange rate manually it will not throw any exception regrding Authorization.
    Could you please guide on this.
    Your help is really appreciated
    Regards,
    Ravi Kasnale

    Difference between authorizations for your userid and the userid that is processing the ALE (maybe WF-BATCH or something like that) may be the cause.

  • Error in Exchange rate conversion from SC to PO is wrong

    Hello All,
    We are using Extended classic scenario, Local PO will get automatically get created
    After the completion of shopping cart approval.
    We are facing one issue in the price of automatically created PO and Shopping cart.
    Ie there is price difference between the PO and shopping cart
    For Egs:
    Shopping cart created with 1.0 EUR and showing 1.35 USD as the final price in shopping cart whereas it shows 1.56 USD in PO.
    We also checked the currency conversion table ( tcurr, where it 1 EUR = 1.35 USD), ie also showing the correct entries.
    I believe there might be some problem in the currency exchange rates.
    I have also run these jobs BBP_GET_EXRATE / BBP_GET_CURRENCY to update the currency /exchange rates but still the same issue exists.
    Any pointers for the same will be really appreciated.
    Thanks inn advance.
    Regards,
    Mahesh Mohan D

    Hi Mahesh,
    Please have a look at the following OSS notes:
    Note 1000725 - Incorrect Currency Conversion for PO created from SC- ECS
    Note 1023626 - Follow-on note for note 879309
    Note 879309 - Pricing slightly falsifies some prices
    Note 1077245 - SC slight price difference when currency changed in item
    Thanks,
    Pradeep

  • Error in Exchange Rate

    Hi All
    I need to work on DataTransfer->Order Routines.
    Issue: For the Contracts created in VA41 (of type QC or WK1), when we create a Sales Order  (type OR) using a line item in contract, the respective sales order should carry the line item currency instead of the original documnent currency of the cointract.
    ie. Line Item currency in VA41 should be document currency while creating sales order in  VA01.
    For this we have done configuration in VTAA, the code is triggering but we are not able to change the currency.  This is working manually but not via code....
    Any suggestions are highly appreciated...
    Thanks in Advance

    Please post the doubt in SD forum.
    Regards,
    Viren

  • Error: Can't Add a New Sales Order: -10  Exchange rate not updated,

    Hi,
    I'm trying to add several Sales Orders contained in a XML document, whose root element corresponds to the Sales Person created that XML. Anyway, after I fill a Sales Order Document Object with the info in the XML and try to add it the following error appears: "Exchange rate not updated  [RDR1.U_Desc4][line: 2] , 'USD'" Which is strange because this company handles most of its transactions in MXP Currency. I will post the piece of Code that fills the object hoping it helps:
    For Each xndSalesOrder In xmlSalesOrder.Item("SalesMan").ChildNodes
                    oSalesOrder = Me.Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oOrders)
                    oSalesOrder.DocType = SAPbobsCOM.BoDocumentTypes.dDocument_Items
                    With xndSalesOrder.Item("HEADER")
                        oSalesOrder.CardCode = .Item("Deudor").InnerText
                        oSalesOrder.DocDate = DateTime.Parse(.Item("FechaCont").InnerText, Nothing)
                        oSalesOrder.DocDueDate = DateTime.Parse(.Item("FechaEnt").InnerText, Nothing)
                        oSalesOrder.Comments = .Item("Observaciones").InnerText
                        oSalesOrder.DocRate = 11
                        oSalesOrder.DocCurrency = "MXP"
                        'oSalesOrder.ContactPersonCode = .Item("Contacto").InnerText
                        'User Fields
                        oSalesOrder.UserFields.Fields.Item("U_RefOV").Value = _
                            xndSalesOrder.Attributes.Item(0).InnerText
                        oSalesOrder.UserFields.Fields.Item("U_Referencia2").Value = .Item("Referencia").InnerText
                        oSalesOrder.UserFields.Fields.Item("U_FechaReferencia").Value = _
                            DateTime.Parse(.Item("FechaReferencia").InnerText, Nothing)
                    End With
                    With xndSalesOrder.Item("LINEAS")
                        For Each xndLinea In .ChildNodes
                            If intContLineas >= 1 Then                             oSalesOrder.Lines.Add()
                            End If
                            oSalesOrder.Lines.ItemCode = xndLinea.Item("Articulo").InnerText
                            oSalesOrder.Lines.Quantity = CDbl(xndLinea.Item("Cantidad").InnerText)
                            oSalesOrder.Lines.Price = CDbl(xndLinea.Item("Precio").InnerText)
                            oSalesOrder.Lines.TaxCode = xndLinea.Item("Impuesto").InnerText
                            oSalesOrder.Lines.DiscountPercent = CDbl(xndLinea.Item("DescuentoTotal").InnerText)
                            oSalesOrder.Lines.SalesPersonCode = xmlSalesOrder.Item("SalesMan").Attributes.Item(0).InnerText
                            oSalesOrder.Lines.Currency = "MXP"
                            'User Fields
                            oSalesOrder.Lines.UserFields.Fields.Item("U_Promocion").Value = _
                                xndLinea.Item("AplicaProm").InnerText 'Valores posibles: Si, No
                            oSalesOrder.Lines.UserFields.Fields.Item("U_Desc1").Value = _
                                CInt(xndLinea.Item("Descuento1").InnerText)
                            oSalesOrder.Lines.UserFields.Fields.Item("U_Desc2").Value = _
                                CInt(xndLinea.Item("Descuento2").InnerText)
                            oSalesOrder.Lines.UserFields.Fields.Item("U_Desc3").Value = _
                                CInt(xndLinea.Item("Descuento3").InnerText)
                            'If xndLinea.Item("AplicaProm").InnerText = "Si" Then
                            oSalesOrder.Lines.UserFields.Fields.Item("U_Desc4").Value = _
                                CInt(xndLinea.Item("Descuento4").InnerText) 'This is the UDF that's giving me problems!!!
                            'End If
                            intContLineas += 1
                        Next
                       If oSalesOrder.Add() <> 0 Then
                            Me.Company.GetLastError(intErrorAdd, sErrMsgAdd)
                            If (0 <> intErrorAdd) Then
                                FillLog("Sales Order Error: " & CStr(intErrorAdd) & "," & sErrMsgAdd)
                            End If
                            xmlLogSalesOrder.Item
                        End If
                    End With
                Next
    If you look at the code I've even tried the solution of hardcoding the DocRate and the Currency as seen in a similar post about the DTW.
    Sorry if code is in Spanglish, its quite late around here. I hope you can help me because it's kind of an urgent matter and I can't seem to find a solution for it.
    Other useful data: SAP BO 2005 Patch 4.
    Thanks in advance...
    Alfredo Gargari

    Hi Alfredo,
    Have you tried to add the same salesorder by hand, I think you wil first get a form with exchange rates.
    I think you should add a check to your program to check for an update currency rate (the sbobob function GetCurrencyRate does this for you).
    GetCurrencyRate MethodDescription
    Returns a Recordset object that contains the currency rate for a specified date and currency code.
    See Currency Bobs sample.
    Syntax
    Public Function GetCurrencyRate( _
       ByVal Currency As String, _
       ByVal Date As Date _
    ) As Recordset
    Parameters
    Currency
    Specifies the currency code.
    Date
    Specifies the date for the currency exchange rate.
    Return Type
    A Recordset object that contains one field named CurrencyRate that holds the rate value.
    SAP Business One returns 0 if the system cannot find the exchange rate.
    Regards,
    Ad

  • Issue with indirect Quotation Exchange rates...

    Hi All,
    I am using FM 'POSTING_INTERFACE_CLEARING'  to clear the customer open items.
    While  posting with indirect quotation exchange rates i.e BKPF-KURSF is in negative.It is throwing below error
    "The Exchange rate may not be transferred if negative".
    When i check it in BKPF table the value is saved like exp: '/1.9010'.  for select query it is picking like '1.9010-'
    How to resolve this issue.? it is very urgent.
    Thanks in Adv.
    Regards,
    Raj.

    Hi,
    I gave the OB08 entries, not sure if you wanted me to explain the logic. Here it is..
    Maintain 'Indirect quotation' from Local currency(USD) to Transaction currency(CAD) and 'Direct quotation' from Transaction currency(CAD) to Local currency(USD).
    Direct quotation is where the cost of one unit of foreign currency is given in units of local currency, whereas indirect quotation is where the cost of one unit of local currency is given in units of foreign currency.
    Your local currency is USD:
    - Direct exchange rate: 1CAD = 0.92819 USD
    - Indirect exchange rate: 1USD = 1.08238 CAD
    The following settings have been made in the standard system:
      - Direct quotation: ' '
    -   Indirect quotation: ' / '
    Direct exchange rates do not have a prefix.
    Your local currency is USD. You enter a business transaction in the transaction currency CAD. Until now, you had to use direct quotation to enter the exchange rate (1CAD =0.92819 USD). If you have defined '/' as the prefix for indirect quotation, you can also enter the exchange rate with indirect quotation (1 USD = 1.08238 CAD) by entering '/1.08238' in the exchange rate field.
    Direct or indirect quotation can be maintained as the standard form of quotation for a certain currency pair. You use:
             - '1' for direct quotation
             - '2' for indirect quotation
    If a standard form of quotation has not been specified for a currency pair, the system automatically uses direct quotation.
    You make the settings in the IMG: General Settings -- Currencies -- Set Standard for Direct/Indirect Quotation per Currency Pair.
    Thanks
    Ganesh

  • CKUC - Exchange Rate Type P

    Dear All,
    We are using CKUC Multilevel Unit Costing  for doing costing simulation.
    It is giving error "There is no exchange rate for exchange rate type P on 03.01.2012: USD  -> INR".
    It is understood that Exchange rate 'P' is not maintained in OB08.
    But I would like to know under what instance system will try to use exchange rate type 'P'?
    Regards
    Ratna Palit

    Dear All,
    After further testing and analysis done , it is observed that there are material components in multi leve lunit costing BOM which do not have info record maintained in production system.
    The valuation variant for multi level unit costing contains following sequence of priority for picking up material rate.
    Priority Strategy Sequence
    1. Price from Purchasing Info Record
    2. Moving Average Price
    3. Planned Price 1
    4. Standard Price
    Sub-Strategy Sequence with Purchasing Info Record Valuation -
    Priority Strategy Sequence
    1. Net Purchase Order Price
    2. Net Quotation Price
    Hence as system is not finding info record for above materials,
    a.  it is checking the sub sequence strategy for net purchase order price.
    b.  simultaneously for purchase order scenario - it is also checking for Exchange Rate type 'P'.
    In this case there is neither exchange rate type 'P' maintained nor purchase order is maintained in production server.
    Hence system is giving both errors "for Exchange rate type 'P' " and "for Valid Source of Supply".
    In past whenever unit costing was run successfully in production server, info record was also available for applicable materials in BOM. Hence system did not give any error.
    Thanks & Regards
    Ratna
    If  our priority sub sequence remains as Net purchase order price, exchange rate type "P" has to be maintained.

  • Exchange rate on invoice date

    HI all,
            I have created PO on 10th Jan in USD. I didn't check "Fixed Exchange rate" in PO., When I'm doing Invoice received, system is giving error message to maintain "exchange rate on USD/INR on 10th Jan".
             I would like to get the exchange rate of present march month. I have maintained exchange rate manually in Details tab in MIRO. Still I'm getting the problem...
             How can I post invoice with the present exchange rate??/

    Hi Sanil,
                thanks for your reply, In PO I maintained only the Exchange Rate not Exchange rate type. I'm getting error for exchange rate type "M".
                If I maintained the exchange rates for USD/INR on 10th JAN, then system will take that rate or today's date..?? and this F-62 is same as OB08 or different???
    thanks and regards
    msr

  • Exchange rate at GR

    I have maintained a exchange rate for GB vs USD
    I have created a Po for an Item with exchange rate maintained as floating. e.e I am not checking the fixed rate tab in PO header under Delivery tab.
    Now when I receive goods at later date,I want to have the prevailing exchange rate on that day.I wii first maintain the existing exchange rate on that day before making a GR
    Does system picks up the current date exchange rate automatically at the time of GR??
    regards,
    Manoj

    Hi,
    System taking Current Exchange rate at the time of GR(GR date)Only if u r not tick Fixed exchange.
    Raghu

  • Payment Program and Spot Exchange Rate Type

    Hi Everyone,
    When performing wire transfers in foreign currency, my company wants to be able to have the payment program, F110, be able to convert the payment to the vendor based on the bank's spot rate at that moment in time.  I found that we can use exchange rate type "G", update the rate within OB08 prior to running F110, input the exchange rate type "G" within the Parameter section within "Exchange rate type" and process the payment program as normal. 
    My question is this:  We have a few separate companies that would use this feature with the possibility of receiving different rates from their respective banks.  How would this work if 2 companies had 2 separate exchange rates for the same conversion on the same day?  I found that once you enter in an exchange rate for a conversion, you are stuck with that rate for that particular day, so the amount can not be over written with another rate to be used by the second company code.  Is there a way around this or is there a different way to accomplish the converting of currencies at the payment program?
    Thanks.
    Pete
    Edited by: Peter Zaborowski on Sep 26, 2008 2:35 PM

    Hi Peter
    Use two different exchange rate type for bank1 and bank1. Upload the exchange rate into the system. Select house bank and specified rate type during the payment run.
    Regards
    Srinivas

  • Exchange rate account not defined

    While doing F-04 for a particular bank incoming clearing account, I am getting an error saying : exchange rate account not defined for G/L account and currency INR.
    All the postings in the account are in INR and I have also done settings in OBA1 for KDF.
    Please help
    Thanks

    Why would I need to maintain exchange rate settings if all entries are in local currency?
    One more observation:
    During f-04 clearing, when I toggle between local currency and clearing currency, there is a difference of 25000000.
    Any ideas?
    Thanks

  • Help with MIRO Badi's and Translation Date (Exchange Rate Date Reference)

    Dear experts
    This is a problem I have read a lot about, but none of the answers work properly and I wanted to create a new thread in order to try to compile a final answer for this problem (at least in version 6.0)
    As you know Standar SAP uses posting date as translation date in MIRO for foreign currency.
    This is not always true (imagine Crude Imports with 3 dates: Invoice date, posting date and Bill of Lading date. The last one happens to be the fiscal date for exchange rate in my county and the other two are also mandatory).
    I am proposing thus to use 3 dates: Document date as invoice date; posting date as posting date and Invoice Receipt Date
    (REINDAT - RBKP) as Bill of Lading date. I would like to implement this third date as translation date.
    Lot of ways to do it, but none works properly as for the end user it is complicated to enter data in a certain way so that BADI's work properly. I have implemented note 574583 and only works with some restrictions.
    I have also used some more BADI's like MRM_HEADER_CHECK, FI_TRANS_DATE_DERIVE, INVOICE_UPDATE,... and all of them have some restrictions (depending always in data header taps data introduction or saving the exchange rate properly in MM TABLES but not in FI TABLES).
    I would really appreciate if anyone could help with this, ensuring that the Badi get's always the data and makes it work with no screen selection dependance.
    Thanks in advance.

    Dear All,
    I have found the solution with the help of ABAPer. The system has a bug for which SAP has given a  Sap Note no 22781.
    Actually what happened in the Invoice is, the system by default fetched the exchange rate for the Exchange Rate Type 'M' for the rate last maintained. Since we were using different Exchange rate it did not match. Also we came to know about the difference only because off-late the users had stopped updating Exchange Rate 'M' .
    The funny part is in the Invoice if we click on each tab at the header and come back to the first tab where we find the Exchange rate for accounting, the system picks up the actually rate as per the Exchange Rate maintained.
    Regards,
    Karthik.

  • Exchange rate diffarence

    hi,
    while iam making vendor full payment(f-53) iam getting foreign currency gain and loss. but if i do partial payment to vendor iam not getting foriegn currency gain and loss.could u give any idea to resolve this issue.
    Nagaraju

    hi harish,
    could u help in this issue,previous i disscussed with u regarding exchange rate diffarence while doing partial payment,while doing bank loan partial payment accounts(f-07) iam not getting exchange rate diffarence amount,if i do full payment i will get the exchange rate diffarence ammount.but if i do partial payment for vendor and customer it is working proferly.only this bank gl account iam not getting partial payment.this is very urgent issue could u help u inthis matter,
    regards,
    Nagaraju

Maybe you are looking for

  • Citrix Receiver - AppWorld says for Classic but doesn't work

    (Posted this in the other forum for downloaded apps, reposting here since I seemed to have posted in the wrong forum.) http://appworld.blackberry.com/webstore/content/34621918/?lang=en Something wrong with the compatibility? Website says compatible w

  • Maximum attachment size capable by Contentserver and/or Gateway

    Hi there, is there a maximum attachment size for up- & downloading attachments to the Contentserver? Are there any known file measurements capable by the Gateway? While playing around with an 100 MB file our Tomcat (we are running the 5.0.2 Portal an

  • Exporting for use on a Mac

    Newbie. Was looking for export/share to .mov. Couldn't find it. My movies start with a AVCHD type .MTS file extension and I want my Mac friend to be able to view it...? The Help file says it exports to .mov but I can't figure it out.

  • Floor plan Manager and POWL

    Hi, What is floor plan manager and POWL ? What is the difference between these two webdynpro component ? How developer decide which component(FPM or POWL) should be used for a particular development ? Thanks in advance. Regards, Simanchal Sahu

  • 7.00 Kernel Upgrade

    OS: OS400 V6R1 DB: DB2 Kernel Release: 700 Hi All, We are currently in the process of a Kernel upgrade. Actually, we have already completed it. However when checking for the new kernel patch level (it supposed to be 221), it remains as 173. Please, f