Goods Receipt Material Document Amount in LC

All:
I am working in ECC 6.0.
Sometimes the GR Material Document Amount in LC is not calculated as expected. In some instances, the Amount in LC uses the PB00 amount instead of the expected Net Price (which is adjusted for copper). I have not been able to figure out trends in when the Amount in LC is calculated as we would expect and when the Amount in LC is not correct.
I do strongly believe this is not related to currency conversion as we are dealing with USD in all of the currency fields.
Can anyone please explain: How the Amount in LC is calculated (what fields/dates are part of determining the Amount) & Why we are seeing a discrepancy of how the Material Document Amount in LC is calculated?
Has anyone experienced the same issue? How did you resolve it?
Thank you in advance for your assistance.
~Stacy

are you following the approach given in OSS Note 24738 - Precious metal surcharges in Purchasing ?

Similar Messages

  • Asset number belongs to Goods receipt material Document Number

    Hi,
      I Created the Goods Receipt thru Internal Order, and i created the Goods receipt.
    After creation of asset, is there any way to retrieve the
    asset number belongs to Goods receipt material Document Number.
    Regards,
    Kiran.

    hi,
    use tcode ME2K
    A.

  • Goods receipt, material document text

    Hi,
    how can I set from customizing that when I post a goods receipt, the vendor number (MSEG-LIFNR)
    must be copied in all the item position text ?
    Best regards

    The vendor numbeer is automatically copied onto the line item vendor field when you do the GR with reference to the PO.
    This is achieved from the copy control rules in for PO in customising and is stanard configuration.
    Let us know the exact scenario and error, if any.

  • Inbound delivery - external ID in MM Good Receipt  material document

    Hi,
    during  good enter of an inbound delivery through SD trx VL06IG, the system copyes the Inbould delivery number LIKP-VBELN in field MKPF-XBLNR .
    How can I do in order to copy the External Vendor identification LIKP-LIFEX  in field MKPF-XBLNR  instead of LIKP-VBELN?
    Thanks
    Fabrizio

    Hi,
    my situation is:
    - a WM managed warehouse, society A;
    - a HU managed warehouse (without WM), society B;
    - a purchasing process of HU from society A towards society B.
    Society B have a scheduling agreement; when a delivery schedule appears, in society A born a sales order and a delivery. After the registration of the delivery good issue, an idoc transfer information for inbound delivery creation.
    This process is ok without WM, but with a WM managed warehouse the idoc has the following problem:
    "V51VP - item was not found - process cancelled".
    Can you help me to transfer these HU?

  • Commercial invoice number and Goods receipt Material document

    Hello,
    Can any one guide me for the following...
    we need to develop a report where we need to track the For each good reciept number the corresponding invoice number...
    Thanks
    Raheem

    Hi
    While doing GR use delivery note number.
    The same you follow for Invoice verification also. With ref. to delivery note you do the IV.
    Then i feel it will be esay to correlate the GR and IV.
    Regards,
    Raman

  • GR/IR Clearing-Good Receipt Accounting Document issue-no cost center / IO

    Hi All,
    For the GR/IR Clearing Account, users did  the Goods Receipt. GR document post to FI and created Accounting Document. When we look at GL line item display of GR/IR clearing account (FBL3N), we cannot see the cost center or internal order on Goods Receipt doucment ( document type WE).
    When we look at Invoice ( document type RE), we can see cost center or internal order on invoice accounting document. 
    Anyone know how to capture cost center / internal order from Goods Receipt to FI accounting document during GR time ?
    Thank You
    Alex Lee

    Hi,
    Indeed, during the invoice inscription, the information regarding cost centre (or other CO object) is stored on GR/IR account, even (see the explanantion in note 27881). However, for GR there is no standard solution. You can try making a substitution (OBBH), taking the cost centre from the expense line and putting it on GR/IR as well. I doubt, though, if SAP allows GR/IR line item to be changed by substitution...
    Additionally, please check note 378800.
    Regards,
    Eli
    P.S. Please, see your thread in FI. Try avoiding cross-posting.

  • Goods Receipt Acccounting document considers  condition price from PO

    Hi,
    During Goods Receipt with reference to an old PO, the accounting document created considers old overheads condition price from PO and not the updated condition price from condition record (Transaction MEK1) which was subsequently changed after creation of the PO.
    Please advise how the accounting document should consider the updated price (MEK1) as on date of creating the GR.
    Thanks and Regards,
    Pratap Mukund Shetty

    Hi Pavan,
    You are right. But we are unable to save the PO with catg 5 as the gross price is pbxx (manual entry) .Our requirement is for the additive cost conditions we have for overheads mantained in MEK1 and in pricing schema show that they are picked up in the PO. At the time of GR if these condition prices were changed it should consider the updated price in GR accounting document but presently it picks the previous price from PO.
    If PB00 is mantained  and picked from info record   then the price date catg works.. But most of our PO's have PBXX (manual entry). How do we address this.
    Regards,
    Pratap

  • Problem when Add Serial Number for Goods Receipt PO Document

    Dear All,
    In my App I have function to Add goods receipt PO and Serial for these items of this document as code bellows:
    oGrp = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oPurchaseDeliveryNotes)
                'Add Header Goods Receipt
                oGrp.CardCode = "CC1"
                oGrp.CardName = "Card Code 1."
                oGrp.DocDate = now
                oGrp.DocDueDate = now
                oGrp.TaxDate = now
                Dim Qty As Int32 = 2
                For i As Integer = 0 To Qty - 1
                    oGrp.Lines.SerialNumbers.SystemSerialNumber = 1
                    oGrp.Lines.SerialNumbers.ManufacturerSerialNumber = "MSR01" & "-" & i
                    oGrp.Lines.SerialNumbers.InternalSerialNumber = "ISR01" & "-" & i
                    oGrp.Lines.SerialNumbers.SetCurrentLine(i)
                    oGrp.Lines.SerialNumbers.Add()
                Next
                oGrp.Lines.ItemCode = "YMY2H-BLACK"
                oGrp.Lines.ItemDescription = "My Item"
                oGrp.Lines.Currency = "USD"
                oGrp.Lines.Quantity = Qty
                oGrp.Lines.Price = 10000
                oGrp.Lines.DiscountPercent = 0
                RetVal = oGrp.Add()
                If RetVal <> 0 Then
                    oCompany.GetLastError(ErrCode, ErrMsg)
                    Return -1
                Else
                  End If
    When Add this document I have Error : "You should use existing serial/batch numbers for this document type ". Please help me fix this problem. In my SAP doesn't have Serial for these item. Please let me know How to add serial master data?
    Thanks & Regards

    Dear,
    Thanks for your support but when I chaged code as bellows:
    oGrp = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oPurchaseDeliveryNotes)
                'Add Header Goods Receipt
                oGrp.CardCode = "CC1"
                oGrp.CardName = "Card Name."
                oGrp.DocDate = MyArrContainDocInfo(2)
                oGrp.DocDueDate = MyArrContainDocInfo(3)
                oGrp.TaxDate = MyArrContainDocInfo(4)
                Dim Qty As Int32 = 2
                oGrp.Lines.ItemCode = "YMY2H-BLACK"
                oGrp.Lines.ItemDescription = "My Item"
                oGrp.Lines.Currency = "USD"
                oGrp.Lines.Quantity = Qty
                oGrp.Lines.Price = 10000
                oGrp.Lines.DiscountPercent = 0
                For i As Integer = 0 To Qty - 1
                    oGrp.Lines.SerialNumbers.SetCurrentLine(i)
                    oGrp.Lines.SerialNumbers.SystemSerialNumber = i
                    oGrp.Lines.SerialNumbers.ManufacturerSerialNumber = "MSR01" & "-" & i
                    oGrp.Lines.SerialNumbers.InternalSerialNumber = "ISR01" & "-" & i
                    oGrp.Lines.SerialNumbers.Add()
                Next
                RetVal = oGrp.Add()
                If RetVal <> 0 Then
                    oCompany.GetLastError(ErrCode, ErrMsg)
                    Return -1
                Else
                              End If
    I have the same Error: "You should use existing serial/batch numbers for this document type". I try config in Gerneral Setting Form as image bellow: [http://www.hoanghaicap.com/GS.png|http://www.hoanghaicap.com/GS.png]. Please help me fix this problem. I try Add Goods receipt PO with items manage by Serial it's OK but by SDK it's not OK.
    Thanks & Regards,
    Edited by: Tao lao on Mar 10, 2010 2:44 AM

  • How to get the partner tab in the Goods Issue Material Document ?

    Hello ALl,
    We have a 3rd party sales order stock with acc assignment "M" with special stock "E".  we wanted the customer number to be populated on the G/L account line. This is being possible if we have the partner tab in the GI material document.
    currently we have other tabs like material, Qty, Where, & Acc ***.,  but not the partner tab in our GI material document in detail section.
    Can some telll me how i can get the tab?
    THanks in advance
    Arpita Rani

    Abaper help is needed over here.
    Appreciate if resolved.
    Regards,
    Kishore

  • Goods receipt with changed amount

    Hi there,
    I am wondering if it possible to create a goods receipt and in here change the prices.
    Ex. One item has been ordered for a fixed price (the item would be a catalog item, but without any price on it). Then the item is delivered, but something is missing or not the quality expected. We want to keep the item but does not want to pay full price.
    Does anyone know how to carry out this proces. (I now that it is possible to change quantity - but that is not possible if 1 item is ordered!).
    Please advice!
    Kind regards
    Line

    Hi Line,
    GR does only work with quantity.
    You cannot change price at GR step.
    You will have to handle price deviation in the logistic invoice verification step.
    If you order services and you want to receive a % of the service done, you can chnage the way to order :
    Instead of ordering 1 service (quantity) of 10000 euros (value), you can order 10000 (quantity) of 1 euro (value).
    This way, you can do partial payment related to partial reception.
    Kind regards,
    Yann

  • Goods Receipt and Invoice Amount

    Hi SDN's,
    How can we know if a GR or IR is raised for a PO?
    If so how can we come to know the PO Amt, GR Amt and IR Amt.
    Which <b>tables</b> give this information and what <b>fields</b>?
    Regards
    Pratyusha

    Hi
    EKKO and EKPO gives the Info about the PO amount and other PO details
    MSEG,MKPF are the tables which will give the details of all Material Movement documents based on the BWART(movement type) field
    Based on this Movement type you can distinguish whether it is a GR and GI or IR etc.
    Check the MSEG table you will find the corresponding amount fields also.
    In this MSEG table you will find the link for EBELN(PO) and EBELP fields also.
    Invoice receipts amounts check in tables EKBE,  RKPF and RSEG.
    Reward points if useful
    Regards
    Anji

  • "Goods Receipt List " document for production orders

    Hi Experts,
    I have a requirement where in I have to pick up the Header part from the standard form PSFC_PRINT_LAY  and concatenate it with 'Main Details' ?(item data) part which is picked from standard form PSFC_STD_LAYOUT. Can anybody tell me what is the best way to achieve this requirement.
    Whether I should use one of the standard form copied as a Zform and attatch the other part or is there any other of doing this.And also please let me know the transaction where this form is been triggering.
    Thanks in Advance,
    Esh.

    >
    KUMAR.S. wrote:
    > Hi Experts,
    >
    > I have a problem in MTO scenario with Collective production orders for all production orders are stopped due to this because unable to do GR for child items in collective orders.
    >
    > Collective Production Order is as follows,
    >
    > 20053566 - Production Order for Child Material (BFXu2026)
    > 20053567 u2013 Production Order for Header Material (INXu2026.)
    >
    > Also in (COGI) If I enter the sales order and plant we found the below error ie,
    >
    > Dependent goods movement was in correct (this error refers to 20053566)
    > CO Account Assignments have different profit centers (this error refers to 20053567)
    >
    >
    > Please guide me to fix this issue.
    >
    > Cheers,Kumar.S
    Kumar,
    Though it is not very clear, but I suspect that the sales order is assigned with a Profit center, which is different from the one which is assigned to the material master costing view of material 20053567. I better suggest you take the help of FICO guy in this regard.
    Regards,
    Prasobh

  • Account Assignment from Material Master or Goods Receipt Document..

    We are on ECC 6.0 instance.
    For Vendor Cash Discounts we have all the postings going to a default cost center set up as the default account assignment in the cost element master. Because of the default cost center, the  postings are going to the profit center on the default cost center. But the segment getting populated at the line item level is not in line with the segment on the default PC.
    This segment is actually the one which is in line with the Profit center in the account assignment on Goods Receipt/Material document or the PC on the Material Master.
    Can someone please clarify where this segment would be coming from - from the material master or from the good receipt aka material document?
    Edited by: Pete on Jul 22, 2009 3:51 PM

    Hi,
    In material master you have assigned a profit center and all good movements will post to profit center,which is assigned to materials.in profit center you have assigned a SEGMENT.so automatically all profit center postings will post to SEGMENT.
    Hope this helps you.
    Thanks,
    Anusha

  • Get Process Order Confirmation&Counter from material document/goods receipt

    Hi @ all,
    i´m looking for a way (the tables) to get the order confirmation and the counter from a goods receipt. I have the material document number und the position of the goods receipt.
    Kind regards,
    Axxter

    Hi,
    we don´t have the goods receipt material documents in AFRU. I don´t know the reason why.
    Message was edited by:
            Sebastian Becker

  • Material Document cancellation

    Hi all SAP GURUs,
    Please help me,
    After I've cancelled a PO goods receipt material document using MBST, the cost (field MSEG-DMBTR) of the cancellation that shown in PO historical view is not the same as the original material document and there is no any other posting posted in between this two documents.
    Below are more details on this problem.
    Material posted with V (moving average cost).
    Original mat doc : 1200pcs with cost 26,078.03
    Cancalled mat doc : 1200pcs with cost 999,733.22
    Does any one here know how the system calculates the cost? (field MSEG-DMBTR).
    Thanks a lot.
    Regards,
    Lee

    Thanks Rajesha for replying,
    Sorry, I am a bit slow in learning, maybe can I give you the actual scenario and hope that you can have the formula for me.
    Exchanges rate USD to PHP = 1 USD = 46.11 PHP
    Before GR :, STOH = 0, Moving Price = 0.
    Step 1: 1st GR, 75KG = 75 USD, PHP = 3,458.25
    Step 2: 1st IR, 75 KG= 75 USD, PHP = 3,458.25
    Step 3: 2nd GR, 150KG = 150USD, PHP= 6,916.50
    Step 4: 2nd IR, 150KG = 150USD, PHP = 6,916.50
    Step 5: 3rd IR, 150KG (for local VAT, in local currency) = 7,016.47PHP (actual amount posted into GR/IR clearing)
    Step 6, Cancellation of material document for 2nd GR with 150KG, SAP give the posting of USD 149.07 and 6,956.49 in PHP.
    Question: How to derived the USD of 149.07 and PHP 6956.49?. Assuming that if USD 149.07 is correct, then when multiply with exchange rate of 46.11, we should get 6,873.62 in PHP but this was not the case? So I am not sure how to derived both these figures and not sure when cancellation of material document, SAP uses USD or PHP as the base for calculation.
    Hope you can help me on this.
    Thanks,
    Regards,
    Lee

Maybe you are looking for

  • Calendar events off by 1 hour on iPhone and iPad

    Since Sydney went into daylight savings time this week, events entered on my Mac appear 1 hour later on my iPhone, and events entered on my iPhone appear 1 hour earlier on my Mac. Clock on Mac and iPhone both agree on the time. Time zone on Mac (Syst

  • BAPI /FM for getting Transfer Order details based on Material Doc No.

    Is there any FM or BAPI with which I would be able to get directly Transfer Order details, status etc based on Material Doc No without going into the tables? Thanks for your help Usha

  • HOW to use HR_READ_INFOTYPE FM

    Hi Guy's, How to use " HR_READ_INFOTYPE" Function module. Thanks and Regards, Bhavani

  • Client copy error (URGENT HELP Required)

    Hi all, We did system copy of production system after that we were asked to do the client copy from 500 as source client but while performing this activity disp + work dispatcher is going in standstill mode and its turning yellow in color. There is n

  • Will the HDMI adapter for the Ipad serve as an output AND an input?

    I do a lot of video productions and could use an extra moniter on site. The camera I use has an HDMI out, and I noticed there is an HDMI adapter for the Ipad. Would the Ipad recieve/display the signal being sent from my camera? If not, is there anoth