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.

Similar Messages

  • 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

  • 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.

  • Exchange rate of order line item

    i am creating a  report using abap query and i want to get exchange rate columns,
    in order va03 item detail i found the column VBKD-KURSK, when i am using this filed in the report it coming with blank dat, gurus help me out that how can i get "Exchange Rates" which are coming in the item line of orders.

    Hi,
    I checked the same code it is working fine,check out
    tables vbkd.
    data:
      itab like standard table of vbkd with header line.
    select kursk from vbkd into corresponding fields of table itab.
    loop at itab.
    write: / itab-kursk.
    endloop.
    Regards,
    jaya

  • Changed the GL Master record for Line item display

    Hi,
    Can anybody please let me know once i changed the GL Master record as a line item display then how i can see my old line items display?
    I know through one standard programe we can do so but i haven't recall it. Can anybody please help me out with this?
    I'll really appreciate your time and help.
    Thanks & Regards,
    Niki Shah

    Hi Eric,
    Thanks for the quick reply. I got it.
    Thanks once again and i assigned the points accordingly.
    Regards,
    Niki Shah

  • Wanted to change the Exchange rate while saving the PO

    Hi,
    I have a requirement that i have to change the value of Exchange rate while saving the PO.
    Even i checked with more BADI's. but i am not able to update the new value.
    Can you tell me any specific user exits available for this.
    Thanks in Advance,
    Best Regards,
    Prabu

    Solved

  • To change the Purchase order header and line item text

    Hi everybody,
    I need to upload the PO Header and item text for the combinaion of PO and a material.
    Please help???

    Hi,
    Try this beloe code
          Length of the PO item text
          If the length > 132 Chars
      BAPI Function module for changing PO item Text
      commiting the bapi change
    SORT t_bapi BY ebeln ebelp.
      LOOP AT t_ebeln INTO wa_ebeln.
        LOOP AT t_bapi INTO wa_bapi WHERE ebeln = wa_ebeln-ebeln.
          REFRESH t_return.
          READ TABLE t_input INTO wa_input
            WITH KEY ref_num = wa_bapi-ref_num
                     item = wa_bapi-ebelp.
          IF sy-subrc EQ 0.
            APPEND wa_input TO t_output.
            w_len = STRLEN( wa_input-text ).
            wa_potextitem-po_number = wa_bapi-ebeln.
            wa_potextitem-po_item = wa_bapi-ebelp.
            wa_potextitem-text_id = 'F01'.
            wa_potextitem-text_form = '*'.
            wa_potextitem-text_line = wa_input-text+0(132).
            APPEND wa_potextitem TO t_potextitem.
            IF w_len > 132.
              wa_potextitem-po_number = wa_bapi-ebeln.
              wa_potextitem-po_item = wa_bapi-ebelp.
              wa_potextitem-text_id = 'F01'.
              wa_potextitem-text_form = '='.
              wa_potextitem-text_line = wa_input-text+132(123).
              APPEND wa_potextitem TO t_potextitem.
            ENDIF.
          ENDIF.
        ENDLOOP.
        CALL FUNCTION 'BAPI_PO_CHANGE'
          EXPORTING
            purchaseorder = wa_bapi-ebeln
          TABLES
            return        = t_return
            potextitem    = t_potextitem.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
          EXPORTING
            wait   = ' '
          IMPORTING
            return = wa_bapiret2.
    Regards
    Krishna

  • User-Exit to change/Calculate the Exchange Rate

    Hi ALL,
                 I am looking for an user-exit that can be used to change the Exchange Rate during the billing cycle. I want to claculate the exchange rate based on the translation date (BKPF-WWERT).
    BR,
    Tanmoy

    Hi ALL,
                This is a very tricky issue.
    The table BKPF has a field called WWERT (Translation Date). Now we want to calculate the Exchange rate based on the translation date. The table BSET has two fieds LWSTE (Tax Amount in Country Currency) &
    LWBAS (Tax Base in Country Currency)  and they must get updated with correct values based on the translation date, but thats not happening as the exchange rate is calculated based on the posting date/billing date. The exchange rate is determined from the TCURR table but its taking the incorrect Exchange rate.  I need to find out the way so that I can correct it.
    BR
    Tanmoy

  • Change of Exchange rate in VA02

    Dear Experts
    We have sales order which is having around 5 line item and in that 1st line item alone has been invoiced in January and later items still not invoiced
    In the month of February, the invoice for 1st line item has been cancelled , so to avoid exchange rate difference when we create invoice for cancelled invoice, we have maintained exchange rate in Sales order Header details-Accounting tab manually and created invoice successfully with old exchange rate.
    Now i want remove the exchange rate in Sales order because it will affect the other line items which has not yet invoiced but when in go to va02-Sales order header details-Accounting -Exchng rate-acct field was grayed out.
    Kindly help me out how to remove the exchange rate from sales order header details-Accounting tab or is there any way that it should not effect the line items for which still invoiced has not created
    Thanks and regards
    Ramarao.pokuri
    9010272000

    Hi,
    Ideally, we should not touch the exchange rate. It should always be automatically determined by the system.
    However in this case, the first line item is controlled manually.
    For the rest of the line items, please select the relevant condition type on which the exchange rate is effected. Doube click on the condition type. There you can see the exchange rate between various currencies. In this place you can change the exchange rate manually. This will be copied to invoice if the pricing is not redetermined in teh invoice. If there is redetermination of prices in invoice, you may have to do the same thing in invoice also.
    Lemme know if you have any doubts.

  • User exit/BADI for changing the exchage rate type in MIGO

    Dear guru's,
    Please help me in finding the user exit/BADI to change the exchange rate type in MIGO.
    Regards,
    Abdul Rahim

    did you check this one MB_GOODSMOVEMENT?
    also exchange rates needs to be changed at Purchase order level and those will be reflected while creating MIGO.

  • Implications of change of Exchange Rate Type from P to M in Version in CO

    Hi SAP Experts,
    We have a requirement to change the exchange rate type in Versions. In fact, exchange rate type P has been configured in Version 0. This version is being used in Costing Variant PPC1. Price updations are being made with this costing variant. Costing Variant PPC2 is being used for internal evaluations. No price updations have been done using this costing variant.
    Client wants exchange rate type M in a new version to use in costing variant PPC2. I have created a new version X and assigned exchange rate type M in new version X. I have assigned the same version in Receiver version of Profitability Analysis and Version for indicators actual.allocations in Orders/Projects tab in T-code OKEQ. In Settings for Operating Concern, I have assigned currency type "Operating Concern currency" and exchange rate type M. Cost center activity price planning (KP26) has been done with new version X for all the cost centers.
    My question is "Will the above changes affect any Plan or Actual values of other versions existed in the system ?"
    Please let me know will there any affect on already planned data in the system with any version.
    Thanks in advance.
    Best Regards,
    K.S.K

    I don't think it's going to impact other versions but you may need to do simple test for other versions. One more thing is versions are controlling area specific and the M or P rates will be applied based on value date you setup in OKEQ configuration.
    You don't need to assign the version for  'Version for ind.act.alloc.'  indicator until unless you use WBS for project planning. By default it will be assigned to zero version.
    Thanks
    BR

  • Changing of Exchange Rate in MIGO via BADI/User Exit

    Hi gurus, I am facing a scenario where I have to amend the exchange rate before posting of GRS. Is there a BADI or User Exit that I could use?

    Hi,
    While creating Purchase order we mention the Exchange Rate there in Header Detail for Delivery/Invoice Tab. To do excahange rate before GR means Change the exchange rate in PO.B ecause in mIGO the excahnge rate will be taken from PO.  u can change the exchange rate in Me21n or in OB08.I f the excahange rate selectedas fixed you can't change the excahange rate keep as it is and fix the indactor as fixed.  Hope it works. Thanking you.

  • Billing is not happening according to the exchange rate

    dear all i have a problem
    while doing export sales ,  in copy control settings of VTFL , i put pricing exchang rate as " B ' thesystem is calculating the correct exchange rates at the  excise posting. but  during billing   the system is not  taking the correct exchange rate which is for that particular month..
    in the schdeulines  header data accounting tab  before processing for billing i need to  put the  correct exchange rate manually then if i do the billing the required exchange rate is coming in the billing .
    in order the system to caculate the exact  foreign exchage rate during billing and exise posting automatically based on the rate given in" OB08"  what is the best way i can give 
    becasue the key user is finding it diffcult to  put the correct exchange rate manually before processing the schedulines agreement and then do the process
    kindly send ur suggestions

    Hi,
    According to standard SAP , the accounting document will be calculated in case of export sales based on the exchange rate determined in invoice header, where as the excise postings will capture exchange rate from invoice item line.
    Due to this u have no problem at excise invoice and the system will not change at invoice header based on your billing date, service rendered date etc based on copy control changes.
    If you want system to determine exchange rate automatically at invoice header based on billing date etc, with out changing in sale order, you need to incorporate a routine and user exit with the help of your abaper.
    The system will not accept copy control changes in this case.
    So clearly you can tell your requirement to abap consultant and incorporate user exit for your requirement.
    Regards
    Kiran

  • 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,

  • Tax calculated on the exchange rate differiences and interests

    Hi Sap Guru's, I have a question for you.
    NOTE:... my FI knowledge is not very good
    I have postings with the line exchange rate difference and strange is, if the tax on the normal posting is calculated, there is also calculated tax on the exchange rate difference amount. Our FI experts said that this is not correct and the tax shouldn't be calculated on such postings like interests or exchange rate differences...
    Any tip, where I can check or set this?
    BR
    Saso

    Hi Saso,
    Have a look with FS00 if the account for exchange rate is tax relevant.
    When you change this to not tax relevant please test it in Q system perhaps it blocks automatecly posting
    Paul

Maybe you are looking for