Warehouse management error in Goods Issue

Hello SD gurus,
I have created a trasfer order (for picking) refering a delivery document. But when i wanted to do PGI, i got an error 'Delivery has not yet been completely processed by WM'. In the delivery document,
the Overall Picking status is 'Fully picked',
the Overal WMStatus is 'Open transf ord item' and
the confirmation is blank 'Not sub. to confirm.'.
It is like these status should be
the Overall Picking status is 'Fully picked',
the Overal WMStatus is 'WM trsf order confirmed' and
the confirmation is 'Fully confirmed'
Please, how do i achieve this so i can do PGI?
help.....points wll be rewarded

hi,
You have execute T.Code: LT03 to create the transfer order and then T.Code: LT12 to confirm the transfer order. Before doing this u need to save the delivery document T.Code:VL01N without doing PGI. After confirming the Transfer order T.Code: LT12. Go to change Delivery T.Code:VL02N and u will see that goods will be picked up automatically. Thne do PGI. The status will change.
Reward Points of it helps.
Regards,
AK

Similar Messages

  • Error during goods issue-Posting period not open

    Hi ,
    I am getting an error during goods issue which says posting period not open.I guess that we have had deliveries that were created and in process while crossing over from one financial period to another quite frequently before, but we were still able to goods issue them in the next period. Can anyone tell me why this error happens and if there is any work around for this?
    Thanks,
    Hari.

    Hi,
    Goods issue takes place, say on a given date and this should be updated, so that the plant valuation changes are recorded. But the periods need to opened to do this. Normally there are two posting periods available, one is in MM, done by t.code MMPV and the other in FI, t.code is OB52.
    So, in MMPV we need have the current month as the posting period. But in your case it was allowing, probably because you have marked the indicator " allow posting in previous period " in MMRV t.code as our friend just conveyed.
    Hope it helps. Please reward if useful.
    Thanks & Regards
    Sadhu Kishore

  • Error while goods issue

    hi sapgurus,
    plz solve my problem
      While goods issue using MIGO system giving this error
      1) G/L account 891000 does not exist in company code 1000
      2) when I created g/l account 891000 using T.Co.FS00 system giving this error
            Account 891000 requires an assignment to CO object.

    Hi
    Please check first the field status of the account in FS00.
    If this account requires CO object as mandatory then check whether a cost element is created or not , this error normally occurs when CO object is mandatory but relevant cost element is not created. CO object can be a cost center.
    go to T code  KA04 and delete the cost elements for your G/L accounts.
    because 891000 is defined as a cost element.
    Put your G/L account as a cost elements there
    Vishal...

  • Internal error (-2014) Goods Issue with Batch Items added through UI

    Hello Experts,
    I've added a button to my Production Order screen labeled 'Issue Components' that is meant to streamline the process, and it works, except when the ProdOrder has Batch controlled items on it. When that happens it returns Internal error (-2014)<br><br>
    I've tried stepping through the code and it doesn't error until the final Add
    Here is my function, Thanks for the Help!<br><br>
    I'm using CitiXSys Inventory Pro and am pulling the items from the Picked table, that's what that sQuery does. It returns correctly. I've also set everything to 'Manual' instead of 'Backflush'<br><br><br>
    <pre>
    Private Sub IssueComponents(ByVal iDocNum As Integer)
            Try
                'Declaring the needed variables'
                Dim oRec As SAPbobsCOM.Recordset
                Dim oGoodsIssue As SAPbobsCOM.Documents
                Dim bIssueLineAdded As Boolean = False, sQuery As String = "", x As Integer = 0, iCode As Long = 0, sErrorMessage As String = ""
                Dim tmpLot As String = ""
                'Instanciating the Goods Issue'
                oGoodsIssue = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oInventoryGenExit)
                'Initialzing the SBO object'
                oRec = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                'Assing the header of the Goods Issue'
                oGoodsIssue.DocDate = Date.Now
                oGoodsIssue.DocDueDate = Date.Now
                'Getting the entire "Manual" components for this production order to issue them'
                sQuery &= "Select PK1.U_DocNo, KI.U_ItemCode, KI.U_BseLnNo, OW.DocEntry, KI.U_Quantity, KI.U_WhsCode, KI2.U_BatSrlNo, KI2.U_LotNo from [OWOR] OW (NOLOCK) INNER JOIN [@ctx_pkin] PK ON OW.DocNum = PK.U_BaseDoc," & vbNewLine
                sQuery &= "[@ctx_PKIN] PK1 (NOLOCK) INNER JOIN [@CTX_KIN1] KI (NOLOCK) ON PK1.U_DocNo = KI.U_DocNo," & vbNewLine
                sQuery &= "[@ctx_KIN1] KI1 (NOLOCK) INNER JOIN [@CTX_KIN2] KI2 (NOLOCK) ON KI1.U_DocNo = KI2.U_DocNo and KI1.U_BseLnNo = KI2.U_BseLnNo" & vbNewLine
                sQuery &= "where OW.DocNum = '" & iDocNum & "' and PK.U_BaseType = 202 and PK1.U_DocNo = PK.U_DocNo and KI1.U_DocNo = PK.U_DocNo and KI1.U_BseLnNo = KI.U_BseLnNo" & vbNewLine
                'Executing the query'
                oRec.DoQuery(sQuery)
                'Looping through the "Manual" components'
                For x = 0 To oRec.RecordCount - 1
                    'Prompting the user'
                    oAppl.StatusBar.SetText("Issuing Components...(" & x + 1 & " of " & oRec.RecordCount & ")", SAPbouiCOM.BoMessageTime.bmt_Long, SAPbouiCOM.BoStatusBarMessageType.smt_Warning)
                    'Adding the previous line if applicable'
                    If bIssueLineAdded Then
                        oGoodsIssue.Lines.Add()
                    End If
                    'Filling the line information'
                    oGoodsIssue.Lines.WarehouseCode = oRec.Fields.Item("U_WhsCode").Value 'dIssueComponents(x).Item("WhsCode")
                    'oGoodsIssue.Lines.TransactionType = SAPbobsCOM.BoTransactionTypeEnum.botrntComplete
                    oGoodsIssue.Lines.BaseEntry = oRec.Fields.Item("DocEntry").Value 'oProductionOrder.AbsoluteEntry
                    oGoodsIssue.Lines.BaseType = 202                                          'Production Order Type'
                    oGoodsIssue.Lines.BaseLine = oRec.Fields.Item("U_BseLnNo").Value 'GetBaseLine(oProductionOrder.AbsoluteEntry, dIssueComponents(x).Item("Component"))
                    'oGoodsIssue.Lines.ItemCode = oRec.Fields.Item("U_ItemCode").Value
                    oGoodsIssue.Lines.Quantity = oRec.Fields.Item("U_Quantity").Value 'Math.Round(oRec.Fields.Item("U_Quantity").Value, 2) 'dIssueComponents(x).Item("PlanQty")
                    'Checking if the item is neither lot or serial controlled item'
                    If oRec.Fields.Item("U_BatSrlNo").Value = "" And oRec.Fields.Item("U_LotNo").Value = "" Then
                        'Nothing controlled item'
                    ElseIf oRec.Fields.Item("U_BatSrlNo").Value <> "" Then
                        'Lot controlled item'
                        tmpLot = oRec.Fields.Item("U_BatSrlNo").Value
                        'oAppl.MessageBox("Lot: " & tmpLot & ", whs: " & oRec.Fields.Item("U_WhsCode").Value & ", qty: " & oRec.Fields.Item("U_Quantity").Value)
                        oGoodsIssue.Lines.BatchNumbers.Add()
                        oGoodsIssue.Lines.BatchNumbers.BatchNumber = oRec.Fields.Item("U_BatSrlNo").Value
                        oGoodsIssue.Lines.BatchNumbers.Quantity = oRec.Fields.Item("U_Quantity").Value 'Math.Round(oRec.Fields.Item("U_Quantity").Value, 2)
                        'Else
                        'Serial controlled item'
                        'oGoodsIssue.Lines.SerialNumbers.SystemSerialNumber = oRec.Fields.Item("").Value
                    End If
                    'Setting the line to be added'
                    bIssueLineAdded = True
                    'Movoing to the next record'
                    oRec.MoveNext()
                Next x
                'Checking if there was any component or not'
                If bIssueLineAdded Then
                    'Adding the Goods Issue'
                    iCode = oGoodsIssue.Add
                    If iCode <> 0 Then
                        oCompany.GetLastError(iCode, sErrorMessage)
                        oAppl.MessageBox("Goods Issue Production Order: " & iDocNum & " didn't get created for the following reason: " & serrormessage)
                    Else
                        oAppl.StatusBar.SetText("Components were issued successfully.", SAPbouiCOM.BoMessageTime.bmt_Short, SAPbouiCOM.BoStatusBarMessageType.smt_Success)
                        'TODO: add to ProdOrder remarks field
                    End If
                End If
            Catch ex As Exception
                oAppl.MessageBox("IssueComponents() " & ex.Message)
                oAppl.StatusBar.SetText("Error in IssueComponenets() : " & ex.Message, SAPbouiCOM.BoMessageTime.bmt_Short, SAPbouiCOM.BoStatusBarMessageType.smt_Error)
            End Try
        End Sub
    </pre>
    Edited by: Rob Daniels on May 30, 2011 10:33 PM

    Please use the latest upgrade of Inventory Pro from CitiXsys.
    If you are using SAP Business One 2007; use Inventory Pro 5.6 series
    For SAP Business One 8.8 and up; use Inventory Pro 6.6.1 and up

  • ERROR IN GOODS ISSUE

    HI Guys,
        I am working in Make to Order scenario(statergy 20),while doing Goods Issue for final assembly i am getting  error <b>(<b>Check table XMSKA: entry V12611000002 TNR1 SF01 000000   does not exist)</b>.
    For main assembly and main component
    MRP type =PD
    lot size=EX
    For sub-assembly
    MRP type=PD
    lot size=PK(Period lot size acc.to planning calender)
      I have used for 261E (sales order stock)movement type to Issue the component to final assembly.
    Example:
    A- main assembly
    A1,A2 are main components
    I have already completed A1,A2 components(GOODS RECEIPT is completed)so i am having stock for A1 and A2 components ,now i want move the stock to A(final assembly) as a sale order stock. For this i have used the movement type 261E in MB1A  reference to the order(final assembly).in this place system is not allowing to do the Goods Issue it is showing the above mentioned error.
    Please help me to solve this issue.
    thanks in advance
    S.Murali

    Murali,
    Couple of questions.
    1. Is your components A1 & A2 in sales order stock?or Just unrestricted stock?
    2. Is your final assembly production order calling for Special stock "E" for the components A1 & A2?
    Regards,
    Prasobh

  • M7 021 error in goods issue

    storage location "abc" has got the unrestricted stock of 2000 kgs and reserved quantity of 600 kgs for boron chemical.
    when i am confirming the order the planned calculated BOM quantity is 25 kgs but i want to issue 250 kgs of boron .
    (back flush is activated so goods issue is done at the time of confirmation) when i am saving the confirmation rest of the chemicals posting is happened with 261 movement but for boron it is showing goods movement failed, when i checked in cogi its showing as M7 021 error- deficit by &&&. but in storage location stock is existing.
    The confirmation is happened with the goods issue posting for almost 70 production order confirmations all of a sudden it stopped posting boron chemical due to this error.
    how to solve this issue plz help.

    Issue solved

  • Error in goods issue witjout release of production order

    hi gurus,
    I have created production order but not released only created.
    Now  I am doing Goods issue in MIgo then it is not allowing.
    I want to know the reason for that.

    Dear ,
    It is a normal behaviour of the SAP system in Production Order Cycle that once the Production Order Status is CRTD , REL -Relased , Material Availablity Check , Capacity Availablity Check has done , then one should execute M31/MIGO/MB1A to perform the the good issue .
    Even if you goto MIGO -Goods Issue -Reservation Number -Enter Res Num  and execute .It will give you an error with Yellow marked light because , till you REL the Production Order , there will not be any confirmation agisnt the reservation number to carry out  any Movement Type with documents number .
    So REL is mandatory before Goods Issue done againt any PO
    Hope this is clear
    Regards
    JH

  • Error during Goods Issue using movement type U61

    Dear All,
    There is this error with respect to goods movement type U61. It states u201C Difference in Object List header data: U61 previously /321 Newu201D
    I get this error when I am doing the Goods issue using the transaction EM10 or MB1A
    Any guidance or help is welcome
    Regards
    Balaji.J

    Hi,
    The goods issue movement type is 501, the previous movement type was also 501 only. The status of the device is in ESTO. By doing goods issue using movemenn type U61, I need to make them in to AVLB status.
    Regards
    Balaji.J

  • Error during Goods Issue "Update was terminated"

    Hi,
    While doing Goods Issue (Mov Type 201), the system save the Document, but when we display the Document, the System gives the following message:
    Update was terminated
    System ID....   DEV
    Client.......   400
    User.....   MMUSER1
    Transaction..   MIGO
    Update key...   B4E937DFC88FF1F3998B00215E73E462
    Generated....   25.03.2010, 14:09:53
    Completed....   25.03.2010, 14:09:53
    Error Info...   F1 109: Line item 001
    Please note that using MMPI, we have opened the back period. There is not problem in posting the Goods Receipt/ Goods Transfer/ Invoice Posting.
    Please help.
    Regards,

    an update termination happens only in an unexpected case, no authority is an expected case and SAP would issue a status message long before posting.
    In your case SAP determined a document number (item number) that is already in the data base. hence it can technically not store the document.
    such things happen if one transports a number range from a development system, but in dev systems the current number is much lower than in a production system, so the next number that is taken from the number range  is already used and stored in a table.
    or if one resets number ranges after an archiving run or for any other intention.

  • Error during goods issue

    Hi Gurus,
    While doing goods issue of operatings supplies material type we are getting an as follows
    Create account 403000 for 18.04.2008 as a cost element in controlling area
    Although G/L account and cost element are already created
    Message no is KI280
    Thanks in Advance
    Regards
    Ramkumar Wariyar

    Check the validity of the cost element and gl account. You may need to extend the validity of the cost element.
    Regards
    Ram

  • Error in goods issue for reservation

    i had created a reservation for a material with batch management activated.
    When i try to issue the same material for cost centre it is throwing the error 'Document doesnot contain any selectable items'.
    What could be the problem.

    Hi
    Check the movement type for reserved item  and what movement your issuing the goods.
    check the stock in mmbe with stoloc-batch wise avalability.
    Laxman

  • Error in Goods issue with movement type 541

    Dear Users,
    I have created a Sub contracting PO. After that when i m issuing the goods to vendor with movement type 541, its giving the following error: Movement type 541 is not planned for this operation.
    Please help me out

    You can provide material to vendor either using Transaction codes :
    1.  MIGO - Transfer Posting - Other - Movement type 541
    2.  MB1B - Movement type 541  or
    3.  ME2O - Mention the vendor & execute
    S. Kumar

  • COGI error no goods issue

    Hi,
    In COGI when I replace storage location for those materials which has stock deficiency it is saving but there were no goods movement happened in new storage location. when I repeated this by entering new storage location and replacing batch with 0 (by default batch is zero, deleting and keeping 0 again) then i can see goods movement. this material is batch management activated. please suggest me.

    Record in COGI with a plant "1234", storage location "XXXX" with batch "0" and error message is "Deficit of SL Unrestricted-use 9 PC : <material no> <plant> < sl>" when I do replace storage location the record is getting green light and after save, i could not see stock reduction in replaced storage location "YYYY" and record is missing from COGI but if i do this process with replacing storage location "YYYY" and batch "0", i can see gooda movement from storage location "YYYY. here iam replacing batch with 0 again. initially we were not doing this process only thing we were changing is storage location.

  • Error while good issue against Asset.

    Hi Gurus,
    I am trying to issue an equipment using MIGO GI, others and movement type 241 against the asset. The GR has already been done and the equipment system status shows the ESTO which means in stock. Once GI is successful it will show AVAIL INST. I am getting this error which says that the "Deficit of SL Unrestricted-use 1 PC: RW4CK 2911 9507". Here RW4CK is the material and 2911 and 9507 are plant and storage locations. I have checked the equipment status ESTO which clearly shows that the equipment is GRed and it should be there in the storage location. Can any one guide me in solving the problem.
    Thanks in advance.
    Anoop

    Hi
    Stock is in quality or unrestricted or blocked? Check it out.
    Regards,
    Raman

  • Error during Goods Issue Posting to Cost Center

    Hi all,
    I have WM and HUM active.
    I'm trying to post a GI to Cost Center using the transaction MIGO and Movement type 201. I get this error during the transaction:
    Data for creating a delivery is incomplete (Vendor)
    Message no. M7279
    Diagnosis
    The system found that the data required to create a delivery via Shipping is not complete.
    System Response
    The system cannot create a delivery.
    Procedure
    Check that the data for Vendor is maintained in your system:
    loading group
    debtor number
    sales organization
    distribution channel
    division
    shipping condition
    shipping point
    It's strange that the error is specific to vendor because this is an inhouse transfer to a cost center. However, I've maintain the listed items in spro.
    There's still something wrong and I'm at a loss. What am I doing wrong? How can I correct it?
    Any suggestions would be appreciated. Thank you.

    Hello Uzoamaka
    Not sure if this helps you but check out these OSS notes,  first one especially,  and others referred within them.
    Let me know if they help you or otherwise.
    547209 - Backflush of HU storage location generates delivery
    723250 - M7279 when creating a delivery from MB1C

Maybe you are looking for