Exchange rate should pick from TCURR based on custom date field added in MIGO

Hi,
In MIGO, FI document get posted by picking exchange rate based on the posting date. Through BADI(MB_DOCUMENT_BADI) we have added a field called translation date in MIGO screen, while doing GRN exchange rate should pick from TCURR based on translation date instead of posting date. We have tried this logic using substitution (GGB1) in FI accounting it is working fine in FB60 & F-02 transaction but it is not working with MIGO transaction. Please suggest some solution for this.
Thanks & Regards
Vinoth Kumar.M

Hi Maniraj,
This will a modification to existing system and it is not supported directly.
There are 2 notes of SAP for modification of translation date of BKPF.
SAP Note 574583 will activate a BADI kindly refer to it for details.
http://www.stechno.net/sap-notes.html?view=sapnote&id=574583
There is another one but is appilcable if material ledger is active in the system
Regards

Similar Messages

  • Need Report based on "CUSTOM DATA field @ Shop Order Maintenance"

    Need the REPORT based on CUSTOM DATA field.
    Requirement - I am having the CUSTOM data at Shop Order Maintenance that is called as XXX, I need some report in SAP ME which can display the SFC related to particular Shop order based on XXX Number.

    Hi!
    As far as I remember there is no such base report. So, you may try to create it using SDK or request it as custom enhancement from SAP.
    If you want to create it using SDK, you can find the required data for report in CUSTOM_FIELDS table.
    Regards,
    Alex.

  • Exchange rate should pick as per document date of GRN in MIGO

    Dear all,
    As per my client requirement while doing Material GRN in MIGO, system should fetch exchange rate as per Document date of the GRN.
    As per standard now it is picking from posting date.
    we already implemented Note number 574583. After implementation of this note system picking document date for MIRO and normal FI Documents(f-02) bur not for MIGO.
    So suggest me how can we get document date as exchange rate translation date for MIGO
    Note: Before posting this, i have searched for solution in SCN but i didn't get solution any where.
    Regards
    kishore

    Hi Amitesh,
    Finally i am able to fulfill my client requirement with the help of you and SAP support. I have used SAP Note number 619330 and few configuration steps.
    Thanks for your support and points has been given.

  • Exchange rate should be a fixed rate instead of the updated financial rate.

    For import and reconciliation purposes the used exchange rate should be a fixed rate in stead of the updated financial rate.
    Customer want to use  u20AC 1 = $1.25 from now on as fixed rate for products validated in Euro in his system to convert into USD on  commercial invoice and or shipping invoice for shipments going into the US.
    Thanks in advance
    Jeewnath

    What is the exchange rate type used?  I think we can do it by exchange rate type M.
    Thanks
    Krishna.

  • Accounting exchange rate not picking while running result analysisKKA2

    Hi All,
    WHile running Result analysis with KKA2 the accounting exchange rate not picking correctly.
    When we run the KKA2 from may to sep it is taking may month as default rate and it is extending to june aug,sep instead of seperate exchange rates for each month.
    We compared all configurations for this RA key with existed RA key .All the setting are  one and the same.in OKG2,OKG3,OKG4,OKG5
    PLease help ...
    Regards,
    Mohan

    Hi srikanth,
    It is not daily exchange rate.
    Actually we copied PS LCR RA key to PS IAS.
    PS LCR is working fine and it is picking correctly for the respective months.
    Where as In PS IAS it is taking starting month and same continuing for other consecutive months.
    Regards,
    Mohan

  • Exchange rate coefficient on the basis of latest posting date in invoice.

    Hi,
    I have one query on posting date(picking of exchange rate coefficient from TCURR table) in invoice verification.  Please help.
    Conditions are--
    vender and company code are not in same currencies(ex-USD and INR). exchange currencies are maintained perfectly on every month 1st ie co-efficients in TCURR table ie OB08
    Query---
    1.At the time of parking invoice suppose i enter the date 20th august and i have posted that invoice as parking. It is converting the local currency as per 8th month exchange rate.
    2.And at the time of final posting the invoice supose i posted that date as 10th September. Business wanted that converting the local currency as per 9th month exchange rate But now local currency is converting on the basis of initial entry of posting date ie 8th month only.
    Please advise and guide what configeration that i have to set for picking the exchange rate coefficient on the basis of latest posting date in invoice verification.
    Thanks & Regards,
    MadhuBabu.

    Hi
    I dont think it is possible as once you enter posting date while in parking invoice screen, on that date exchange rate will be calculated and it wil not be different at time of posting invoice. Instead of parking, you have to directly post with current posting period.
    Thanks

  • XML Forms Builder: Sorting news based on a date field in a XML form

    Hi Experts
    I have a requirement and I am stuck up in finding a solution. I have a XML form and this has been mapped to a folder in KM. It publishes news. In the collection renderer settings there is an option to sort the news ascending or descending based on created/modified criteria.
    The requirement is to sort the news based on a date field in XML form. Can you experts help me in getting the solution for same?
    The users who post the news in our portal needs the information to be sorted based on a date field shown.
    Thank you
    Best regards
    Ramamoorthy D

    Hi Experts
    I have not got any solution for this issue. Can any of you get me some clue to work on this issue with sorting news based on a date field in a XML form?
    I removed the property link from the screen field Input field.
    Thank you
    Best Regards
    Ramamoorthy D

  • How to select data from a table using a date field in the where condition?

    How to select data from a table using a date field in the where condition?
    For eg:
    data itab like equk occurs 0 with header line.
    select * from equk into table itab where werks = 'C001'
                                                      and bdatu = '31129999'.
    thanks.

    Hi Ramesh,
    Specify the date format as YYYYMMDD in where condition.
    Dates are internally stored in SAP as YYYYMMDD only.
    Change your date format in WHERE condition as follows.
    data itab like equk occurs 0 with header line.
    select * from equk into table itab where werks = 'C001'
    and bdatu = <b>'99991231'.</b>
    I doubt check your data base table EQUK on this date for the existince of data.
    Otherwise, just change the conidition on BDATU like below to see all entries prior to this date.
    data itab like equk occurs 0 with header line.
    select * from equk into table itab where werks = 'C001'
    and <b> bdatu <= '99991231'.</b>
    Thanks,
    Vinay
    Thanks,
    Vinay

  • Workflow based on created date field in opportunity?

    Hi All,
    Can we write a workflow based on created date field in opportunity that if a opportunity record has not been modified after say 90 days,what will be the workflow syntax.
    I just want an email notification to owner and owner's manager.
    Thanks in advance,
    Manish.

    I think you can use the WAIT workflow using Duration('P90D') then Send Email, triggering it upon save and upon modification. Make sure that the Re-evaluate Rule Conditions After Wait option is checked so that the previous WAIT would be reset upon modification.
    Edited by: marcocollado on Aug 31, 2012 5:57 AM

  • Exchange Rate is picking the Maximum value, instead of valid from

    Every first day of month we enter exchange rates for foreign currencies.
    but when we make  Purchase Order or any other payments in foreign currency, system is picking the maximum value, but not the value from Validity date.

    Hello,
    Thanks for your immediate response.
    But my Question is for e.g.
    on 01.01.2010  entered Exchange rate is 1 euro = 5.6954 SAR
    on 01.02.2010  entered Exchange rate is 1 euro = 4.9653 SAR
    if am posting document on 16.02.2010 it should pick the second value i.e., 1 euro = 4.9653 SAR, but system is picking the maximum value.

  • Exchange Rate is copied from Contract to sales order

    Dear SD Guru,
    Good Day!
    I have an issue with the currency. The sales order picks up the exchange rate in the contract and it might not be correct.
    The contract was created a year ago and the sales order is still referring to the old exchange rate because the pricing date in the sales order is copied from contract.
    Is there any way to not copy the pricing date over to sales order and let the sales order picks up the currency table OB08?
    Thanks,
    CC

    Hi There,
    What i suggest is to create one routine at Item level in VOFM and maintain that routine in VTAA copy control at item level.
    In sales order the details are copying based on your copy control settings. Please also ensure is there any existing routine for determining the new values from sales order.
    Thanks,
    Raja

  • Exchange rate wrongly picked

    Hi Gurus,
    My client has a SO dated 01.06.2009.The exchange rate last maintained was on 24.08.2008.On 21.08.2009, just before doing the billing document they changed the currency table and then they made the billing document.But in FI document the currency that is picked as on the order date i.e. as per the maintenance of the 24.08.2008.It should take the rate maintained on 21.08.2009. What date it takes the order date or the billing document while picking the exchange rate?
    Debabrata

    Hi Siddiqui,
    Its really long since I posted this forum.In the mean I was assigned another task with highest priority.So I was very late in responding you. You are right. In fact in the OBBS screen following is the configuration-
    ExRt=M,From=EUR,To=INR,Valid from=01.01.1999,Ratio from=1,Ratio to=1,AltERT=EURX and
    ExRt=M,From=EUR,To=INR,Valid from=01.01.1800,Ratio from=1,Ratio to=1,AltERT='_'(blank)
    What it means? If I put another entry as
    ExRt=M,From=EUR,To=INR,Valid from=24.08.2009,Ratio from=1,Ratio to=1,AltERT=' '(blank) then every things works fine.
    But I don't know the logic of this.Please explain me. You will be awarded good points.
    Thanks/Regards
    Debabrata

  • Exchange Rate difference recovory from vendor

    Hi Expers,
    We have an issue with our client over the below issue .
    A Canadaina Plant created a PO with Hungary vendor with HUF as currency in the PO , During PO creation there an exchange rate say X1 ( Exchange Rate not fixed ) . Due to some reasons the GR is done lately after four months from the PO date creation and after the invoice is done .Invoice is done after the three months of PO creation date  .and during the GR/Invoice creation the exchange rate is X2 .
    Sytem posted with X2 exchange rate by not considering the X1 rate . Thease delay in making the GR/MIKRO errors causing the client to pay excess amounts to the vendor and he want to get them back now .
    Requested to advice in which process he can get from the vendor and how to see that the GR to get posted with the old x1 rate for all those posted POs .
    Regards,
    Message was edited by, removed the unwanted terms: Jürgen L

    I hope you misunderstood the facts.
    if the exchange rate is not fixed, then it is not taken into account when invoice or GR is posted.
    If the GR was posted after the invoice, then the goods receipt is valuated by the invoice value.
    You did not overpay the vendor, because you  pay the vendor in the currency of the invoice, and this amount is just equal to the amount you ordered, the difference is just somewhere in your own books

  • Wrong exchange rate is transferred from CRM to ERP R3 via BDoc.

    Hi All,
    In CRM system, whenever quantity contract(QC) is created, it is sent to R3 with all details via Bdocs
    Exchange rate of QC which is present in CRM  is different than in R3.
    But when same contract is opened in R3 in change moce and do some changes it re determine the correct exchnage rate and updates the same in contract.
    But again when same contract is changed in CRM then again updates are sent to R3 with previous wrong exchnage rate.
    Please tell how to see which exchnage rate is available in Bdocs at the time of sending.
    Why is it not updating as per the exchange rates in R3.
    Please give your valuable inputs on this.
    Regards,
    Prashant

    Hi,
    Yes We checked the Bdoc. Currency rate is correct in CRM side but when it is sent to ECC, it changed to something else value which does not exist in TCURR table of both systems.
    Regards,
    Prashant

  • CRM exchange rate delta download from ECC

    Hi experts,
    We are trying to download the exchange rate from ECC for the delta scenario. I've tried to schedule a job to run the program SMOF_DOWNLOAD with Object DNL_CUST_BASIS3, but it comes up with an err, which says "Error     004     DNL_CUST_BASIS3: No Initial Load if data distribution is active. Use Synchron. Load". Will anyone advice how to achieve the delta download for exch rate from ECC to CRM or what i did wrong in the program execution?
    Rgs, Michelle

    Hi,
    you can check the object DNL_CUST_BASIS3 by t-code:R3AC3,
    Delete Function COMPARE, Then can load again and check
    Regards...
    Arup

Maybe you are looking for

  • Initial Excise upload for Depot

    Dear All, I want to upload excise for depot. As we have to pass on duties to customer as per the  incoming excise invoice. Please tell me how can I upload initial incoming excise details (base value, mother challan number, duty value) Thanks in advan

  • JOINING local table and DB Link table performance

    Hellou everybody, can somebody tell me how it is work in Oracle DB when you want to join some local table and DB Link table for example: Select a.col1, b.col2 from local_table a , remote_table@dblink b where a.key = b.key; and when I use DRIVING_SITE

  • The server encountered an internal error () that prevented it from fulfilli

    Hi. Could any one tell me where i start looking for the error in this log. It works fine under sun studio creator, but when i upload the project to the server and call the page i get this error. I found out that it is something with my servlet wich d

  • Fluctuating battery capacity. can you give any tips to maintain my 596 cycles? (1 year old MBP 2012 13")

    battery capacity went from from 80.4% to 78% to 86%  within the same day. is this normal? i alraeady have 596 cycles 1year old mac with applecare before i'am always draining my battery, now that i knew that it is bad, what should i do now? any tips a

  • Simple workflow question

    Hi, I started implementing a simple workflow and now I have a problem and I don'z know how to solve it using the technology of SAP-workflow. I created two workflows in SWDD (WS...). The first workflow calls the othe workflow in a special case. This i