Sales BOM error

Dear Gurus,
I have one issue where in the sales order there are no of items along with some third party items and BOM materials. This is Billign plan document type.
Noe when i change the quantiy of Header Item the quantities of Chield items do not get changed subsequently.I have tried to simulate the same error in the Quality but there it is working fine. I mean if i change header item qty from 1 to 48 it's component's qty is also getting changed properly.
Can you please tell me where and what might be the problem. One more thing i would like to strees upon is there are 4 items which are having BOM and this problem is for all the items.
Your help is highly appreciated.
Thanks & Regards,
Vishal

Dear Lakshmipathi,
Thanks for your reply. In CS03 under the tab Quantity coorect quantity is maintained. This is same as what is maintianed in the Quality.
This is happening for all the materials where BOM is maintaiend. Once i enter header material the proper qty is coming for all the sub items but after that if i change the qty of header material it's sub item components qty does not get channged accordingly.
I am not getting why this is happening. I have checked sales doc type, Item category, BOM maintainance with Qualtiy and found out that there is no differnence.
If you can throw any light on other factors that are affecting this it will be helpful.
Regards,
Vishal

Similar Messages

  • Error:  Sales BOM / delivery document creation via DI API

    Running into an error from SAP when trying to post a Delivery Note document object via the DI API.
    -5002 -You cannot add a document with a bill of materials that does not include all components
    I have a Sales BOM on a Sales Order.  All components have been included within the Delivery Note object.  When calling the document Add() function, SAP is pushing back with the error above.
    Does the fact that the components of the Sales BOM are also BOMs themselves make a difference in whether the DI API fails or succeeds in posting the Delivery Note?

    Does the fact that the components of the Sales BOM are also BOMs themselves make a difference ?
    I believe the answer is YES.
    Thanks,
    Gordon

  • Error in Loading Sales Bom

    Hi ..
    When im  loading Sales BOM from Sales Quotation to Invoice with Sales Bom  via SDK , im receiving this error message .
    " Error The complete Sales BOM, not just some of the components, must be copied to an A/R Invoice or a Delivery  [INV1.TreeType][line: 42] " , im basically transfering record by record from  Sales Quotation to Invoice
    But if i used the copy to function to invoice this Sales Quotation , i can be invoice
    I would like to know, whats is reason of this error message?
    thanks
    Loren

    Hi Yatsea
    Thank you for your response,
    Yes i followed some of the documents in the forum on how to add /copy a document to another document . My problem right now, if i will load 2 or more bom items on one invoice,  i receive the same errror "Error The complete Sales BOM, not just some of the components, must be copied to an A/R Invoice or a Delivery http://INV1.TreeTypeline: 42"
    but if a sepate the sales bom on different invoice (1 invoice = 1 Sales BOM) , the transaction goes well ....
    please see code
      start code -
        Private Function CreateInvoiceFromQuotation()
            Dim oInvoice As SAPbobsCOM.Documents
            Dim oSalesQuotation As SAPbobsCOM.Documents
            Dim rsForInvoice As SAPbobsCOM.Recordset ' A recordset object
            Dim rsFrInvDtls As SAPbobsCOM.Recordset ' A recordset object
            Dim oRecordCount As Integer
            Dim rUpdateStatus As SAPbobsCOM.Recordset
            Dim SQLStr As String
            Try
                rsForInvoice = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                SQLStr = "SELECT OQUT.DocEntry,OQUT.DocDate, OQUT.DocDueDate, OQUT.CardCode, OQUT.NumAtCard, OQUT.Comments "
                SQLStr = SQLStr & "FROM [@TDOCPROC] INNER JOIN OQUT ON [@TDOCPROC].U_DocEntry = OQUT.DocEntry"
                rsForInvoice.DoQuery(SQLStr)
                oRecordCount = rsForInvoice.RecordCount
                Do While rsForInvoice.EoF = False
                    'oCompany.StartTransaction()
                    oInvoice = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oInvoices)
                    oInvoice.CardCode = rsForInvoice.Fields.Item("CardCode").Value
                    oInvoice.DocDate = rsForInvoice.Fields.Item("DocDate").Value
                    oInvoice.DocDueDate = rsForInvoice.Fields.Item("DocDueDate").Value
                    oInvoice.Comments = rsForInvoice.Fields.Item("Comments").Value
                    oInvoice.DocType = SAPbobsCOM.BoDocumentTypes.dDocument_Items
    details -
                    Dim StrFilter As String
                    Dim z As Integer
                    Dim RecCnt As Integer
                    Dim oInvNum As String = 0
                    rsFrInvDtls = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                    StrFilter = "SELECT * FROM qut1 WHERE DOCENTRY =" & rsForInvoice.Fields.Item("DocEntry").Value & " order by linenum "
                    rsFrInvDtls.DoQuery(StrFilter)
                    RecCnt = rsFrInvDtls.RecordCount
                    z = 0
                    Do While rsFrInvDtls.EoF = False
                        Dim prodCode As String
                        prodCode = rsFrInvDtls.Fields.Item("ItemCode").Value
                        If z = 0 Then
                            oInvoice.Lines.ItemCode = rsFrInvDtls.Fields.Item("ItemCode").Value
                            oInvoice.Lines.ItemDescription = rsFrInvDtls.Fields.Item("Dscription").Value
                            oInvoice.Lines.WarehouseCode = rsFrInvDtls.Fields.Item("WhsCode").Value
                            oInvoice.Lines.Quantity = rsFrInvDtls.Fields.Item("Quantity").Value
                            oInvoice.Lines.UnitPrice = rsFrInvDtls.Fields.Item("Price").Value
                            oInvoice.Lines.CostingCode = rsFrInvDtls.Fields.Item("OcrCode").Value '--- Profit Center             
                            ' oInvoice.Lines.TreeType = rsFrInvDtls.Fields.Item("TreeType").Value  '--- Profit Center
                            'oInvoice.Lines.AccountCode = rsFrInvDtls.Fields.Item("Acctcode").Value
                            oInvoice.Lines.LineTotal = rsFrInvDtls.Fields.Item("LineTotal").Value
                            oInvoice.Lines.BaseLine = rsFrInvDtls.Fields.Item("LineNum").Value
                            oInvoice.Lines.BaseEntry = rsForInvoice.Fields.Item("DocEntry").Value
                            oInvoice.Lines.BaseType = SAPbobsCOM.BoObjectTypes.oQuotations
                        Else
                            oInvoice.Lines.Add()
                            oInvoice.Lines.SetCurrentLine(z)
                            oInvoice.Lines.ItemCode = rsFrInvDtls.Fields.Item("ItemCode").Value
                            oInvoice.Lines.ItemDescription = rsFrInvDtls.Fields.Item("Dscription").Value
                            oInvoice.Lines.WarehouseCode = rsFrInvDtls.Fields.Item("WhsCode").Value
                            oInvoice.Lines.Quantity = rsFrInvDtls.Fields.Item("Quantity").Value
                            oInvoice.Lines.UnitPrice = rsFrInvDtls.Fields.Item("Price").Value
                            oInvoice.Lines.CostingCode = rsFrInvDtls.Fields.Item("OcrCode").Value '--- Profit Center             
                            'oInvoice.Lines.AccountCode = rsFrInvDtls.Fields.Item("Acctcode").Value
                            oInvoice.Lines.LineTotal = rsFrInvDtls.Fields.Item("LineTotal").Value
                            oInvoice.Lines.BaseLine = rsFrInvDtls.Fields.Item("LineNum").Value
                            oInvoice.Lines.BaseEntry = rsForInvoice.Fields.Item("DocEntry").Value
                            oInvoice.Lines.BaseType = SAPbobsCOM.BoObjectTypes.oQuotations
                        End If
                        z = z + 1
                        rsFrInvDtls.MoveNext()
                    Loop
                    rsFrInvDtls = Nothing
                    Dim cResult As String
                    Dim cMessage As String
                    Dim dPostDate As Date
                    cResult = ""
                    If oInvoice.Add <> 0 Then
                        ' MsgBox("Error " + oCompany.GetLastErrorDescription())
                        cMessage = "Error " + oCompany.GetLastErrorDescription()
                        cResult = "Failed"
                        dPostDate = DateTime.Now.ToString
                        dPostDate = Date.Parse(dPostDate)
                        rUpdateStatus = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                        SQLStr = "update [@TDOCPROC] set U_DOCSTATUS = '" & cResult & "' ,U_InvNum = " & oInvNum
                        SQLStr = SQLStr & ",U_REMARKS = '" & cMessage & "'"
                        SQLStr = SQLStr & ",U_POSTDATE = '" & dPostDate & "'"
                        SQLStr = SQLStr & " where u_DocEntry = " & rsForInvoice.Fields.Item("DocEntry").Value
                        rUpdateStatus.DoQuery(SQLStr)
                    Else
                        Dim rs1 As SAPbobsCOM.Recordset
                        Dim retval As Long
                        Dim cValues As Integer
                        cResult = "Success"
                        oInvNum = oCompany.GetNewObjectKey()
                        oSalesQuotation = oCompany.GetBusinessObject(BoObjectTypes.oQuotations)
                        cValues = rsForInvoice.Fields.Item("DocEntry").Value
                        If (oSalesQuotation.GetByKey(cValues) = True) Then
                            oSalesQuotation.Close()
                            oSalesQuotation.Update()
                        Else
                            Dim errcode As String
                            Dim errmsg As String
                            oCompany.GetLastError(errcode, errmsg)
                            MsgBox(oSalesQuotation.CardCode)
                            MsgBox("Failed to Retrieve the record " & errcode & " " & errmsg)
                        End If
                    End If
                    dPostDate = DateTime.Now.ToString
                    dPostDate = Date.Parse(dPostDate)
                    rUpdateStatus = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                    SQLStr = "update [@TDOCPROC] set U_DOCSTATUS = '" & cResult & "' ,U_InvNum = " & oInvNum & ","
                    SQLStr = SQLStr & " U_PostDate = '" & dPostDate & "'"
                    SQLStr = SQLStr & " where u_DocEntry =" & rsForInvoice.Fields.Item("DocEntry").Value
                    rUpdateStatus.DoQuery(SQLStr)
                    'If oCompany.InTransaction = True Then
                    '-ompany.EndTransaction(BoWfTransOpt.wf_Commit)
                    'End If
                    rsForInvoice.MoveNext()
                Loop
                rsForInvoice = Nothing
                '    'msg2send(NumOfInv) = oDocNum
                '    'Insert2OCTP(vDocNum, vDocDate, oDocNum, Now.ToShortDateString, vCardCode, vCardName)
            Catch ex As Exception
                MessageBox.Show(ex.Message)
            End Try
        End Function
       end code
    thank you

  • ODeliveryNotes serial nbr error when using sales BoM with DI server

    Hi all,
    we're trying to create a delivery note with DI server for items managed by serial number and sales bom.
    This is a sample xml:
    <?xml version="1.0" encoding="utf-16"?>
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
    <env:Header>
    <SessionID>F6166595-C4E0-4B5E-B44C-85CB04FAA0C9</SessionID>
    </env:Header>
    <env:Body>
    <dis:AddObject xmlns:dis="http://www.sap.com/SBO/DIS" CommandID="ConsegnaOpen">
    <BOM>
    <BO>
    <AdmInfo>
    <Object>oDeliveryNotes</Object>
    </AdmInfo>
    <Documents>
    <row>
    <CardCode>C9999</CardCode>
    </row>
    </Documents>
    <Document_Lines>
    <row>
    <ItemCode>S610STW-220</ItemCode>
    <Quantity>220</Quantity>
    </row>
    </Document_Lines>
    <SerialNumbers>
    <row>
    <InternalSerialNumber>AD00003</InternalSerialNumber>
    <SystemSerialNumber>3</SystemSerialNumber>
    <BaseLineNumber>1</BaseLineNumber>
    </row>
    </SerialNumbers>
    </BO>
    </BOM>
    </dis:AddObject>
    </env:Body>
    </env:Envelope>
    And this is the returned error: "You should use existing serial/batch numbers for this document type [(----) 29-51]"
    Any idea why?
    Thanks
    Fabio

    Hello Fabio,
    I have tested your problem with DI API, and I got the same error you have.
    This is an uncovered system functionality or system limitation
    Report this issue to SAP Support.
    My DI API COde
    Dim oDN As SAPbobsCOM.Documents = oCompany.GetBusinessObject(BoObjectTypes.oDeliveryNotes)
            oDN.CardCode = "1013"
            oDN.DocDate = Date.Today()
            oDN.DocDueDate = Date.Today()
            oDN.VatDate = Date.Today()
            oDN.TaxDate = Date.Today()
            oDN.Lines.SetCurrentLine(0)
            oDN.Lines.ItemCode = "TBOM"
            oDN.Lines.WarehouseCode = "2"
            'oDN.Lines.SetCurrentLine(2)
            oDN.Lines.SerialNumbers.SetCurrentLine(0)
            oDN.Lines.SerialNumbers.ManufacturerSerialNumber = "1"
            oDN.Lines.SerialNumbers.InternalSerialNumber = "1"
            oDN.Lines.SerialNumbers.SystemSerialNumber = "1"
            oDN.SaveXML("c:TEMPDNWITHBOOM.xml")
            If oDN.Add <> 0 Then
                sbo_application.MessageBox(oCompany.GetLastErrorDescription)
            End If
    Where TBOM is a sales kit, for 12 peices, components TNM item no serial number 12 peice, TSN item using serial number 1 piece.
    Sales Factor 1 for TBOM is 12 piece
    This sample code results the same issue you hev reported.
    Edited by: János Nagy on Apr 14, 2010 4:49 PM

  • Error: Row without Tax was Found in Sales BOM

    Hi
    I'm using SAP Business One 2007B.
    While Posting Invoice to a Sales BOM, It shows the Error: Row without Tax was found.
    But it is not showing that Error in Manager Login.
    Kindly help me to solve the Issue

    hi,
    Check this thread
    Message:Row without tax was found
    Jeyakanthan

  • Problem with Sales BOM

    Hello All,
    The problem is related to Sales BOM where in the Item Category Group we maintain ERLA and the free item gets populated with the main item in the sales order with a different item category and the pricing is shown as statistical.
    Now I want the system to show any error message or stop the next proceeding whenever the stock of the free item alongwith the main item or viceversa is not available or if there is any partial availability in case of free item & main item or viceversa.
    Please suggest how to configure this or if any routine or user-exit need to be maintained for this.
    Thanks & Regards
    Priyanka Mitra

    hi
    check the Sale order User Exit and code your logic and make use of it

  • Sales BOM - Delivery Quantity check during post goods issue

    I am working on a problem in my company.  We are running ECC6.0 ehp 4.  We are using standard ERLA functionality with sales bom (5) for product kits.  Delivery manager has requested that we investigate a system check during delivery post goods issue.  THe problem is that when shipper processes delivery, if they have to backorder they update pick and delivery quanity on the TAE item.  They should also update TAQ delivery quantity, so that backorder amount is correct.  If they make data entry error, backorder quantity is incorrect.  The delivery manager has tried a number of attempts to re-train and correct mistakes.  He is now asking that SAP issue a hard error if TAQ and TAE delivery item quantities are not the same.
    I have searched on SAP Notes, Forms, and Google and do not see solution.  I know that at delviery item category there is a minimum qty check for the item category.  I've not found a user exit or configuration point that checks quanities.  Does anyone know of out of the box solution?  Or where would I put in custom user exit?
    Test Case
    Create Standard Order
    Enter Material with Sales BOM
    ITEM A     Qty 10
    BOM explodes with Item categories
    ITEM A     TAQ parent
    ITEM B     TAE child
    Create Delivery
    Delivery has item categories TAQ and TAE
    TAE is pickable, TAQ no pick
    Process TAE
         Pick quantity of 5 items
         Change delivery quantity to 5 items
         Forget to change TAQ delivery quantity
         Pack 5 items
    Post Goods Issue the delivery.
    Is there are requirement/routine than can be run at time of PGI that checks TAQ delivery quantity is the same as TAE delivery quantity.  If quanities are not the same, show hard error and message do not allow PGI to complete.
    Thank you
    Tony Romain

    I tried setting that field in the sale order this morning.  By defaulting it to "C"; I was able to get warning message for TAE line.  I was able to post goods with TAE and TAQ, being different quantities.  I need the check to determine if TAE and TAQ delivery quantity are different.  Using this fields seems to be line specific.  Thanks for the suggestion.  I now know what that field does to the delivery.
    I rewarded points.
    Thanks,
    Tony

  • Sales bom - parent item

    when i create a sales bom, all the components display as independent items on the picklist. why? and it also does not display the parent item. the picker needs to see this information! how can i make that show up on the picklist? any ideas?

    Hi Gordon,
    I appreciate your mature reply to my critical posting.
    Do you know what the Sales BOM is supposed to be used for? I am not sure how in any possible context can the below make sense:
    1. Currently B1 will deliver components only of a Sales BOM at zero cost
    2. Given sales orders can "expire" (in the sense they can have a cut-off date - typically 30 days by default I think), surely if one doesn't receive the remaining components in time, this would lead to a very awkward situation! What if the remaining component(s) is/are non-purchased item(s)?
    If the above was registered as a program error, fair enough. But they won't register it. any ideas why?
    Although with each version (see below), everything works "as designed" - they keep changing it:
    In 2004A, Sales BOMs were working "as designed" - but P&P manager couldn't be used (parent item was lost when making delivery note)
    In 2005A, Sales BOMs were working "as designed" - same as above - but Assembly BOMs (essentially the same thing) were improved would print off a separate component picking list.
    In 2007A, Sales BOMs are working "as designed" - note, this hasn't officially changed yet - but we now get the parent item in the delivery via P&P
    Our SAP partner was just as surprised at the functionality as we were when we moved ahead with the install a few years ago.
    Please understand, my only issue is the lack of willingness from SAP to recognise the problem at all - and the standard answer of "as designed" even when it is clear there is a problem. If you can help myself and perhaps Prem improve our understanding of the design (especially points 1 and 2 above) I would genuinely be grateful.
    Thanks,
    Raj
    Edited by: Rajiv Agarwalla on Dec 12, 2008 2:24 AM
    Edited by: Rajiv Agarwalla on Dec 12, 2008 2:25 AM

  • SALES BOM - request facility to add to purchase order

    It would be of great marketing advantage if we could change the load a "sales BOM" to a pucrhase order either directly or indirectly (based on sales order).
    Regards
    Jeff Patch

    Ciao Elisa,
    If PO item was delete, system will update the PO qty in PR statistics with ZERO.  And appear information to advise this item has been opened. But 'Processing stat' will still keep 'B' - Ordered.
    For your reference, please also kindly review the note 493315
    FAQ: Purchase requisition (general)  -> question 1
    ~~~~~~~~~~~~~~~~~~~~     ~~~~~~~~~~~~~~~~~~~~     ~~~~~~~~~~~~~~~~~~~~
    1.  You delete a purchase order item with reference to the purchase requisition. Why is the last purchase order in the purchase  requisition not reset and why is processing status "B" not changed?
    Answer:
    See Note 65839.
    "This is actually not an error. This is because checks for whether a purchase requisition has already been completed are always made on the basis of the quantity ordered. The processing status and the last purchase order are not used in this case.
    Thus the processing status and the last purchase order are not reset, since it very often occurs that purchase requisitions are completed via several purchase orders - that is, they are partially ordered several times. In this case, it would even be completely incorrect to reset the status when deleting the last purchase order item, since the previous purchase order can still exist.
    However, since the program no longer has this information, namely, which purchase order is the last active one, the processing status is left on "B" and the purchase order number is not corrected, because this could only cause "even more incorrect" statistics."
    Regards,
    Mauro

  • Sales BOM Header Material should not come in J1IJ or delivery

    Hi,
    We have one depot plant,  Now i am using the sales BOM, I have created one Material header with item category LUFM  pricing at item level only, BOM is created, When I am entering the Header material in SO  then alll child items are coming, then while creating the delivery all the child items and also the header items is coming in the delivery but same is coming in the J1IJ  also  I want that the header materal should not come in the J1IJ  and it will be better if it is not in delivery  if i set the indicator delivery block for header materia in SO  then that item si not coming in Delivery   but SO  is shoing  in Open SO  as the header material is not delivered.
    So is there any setting for this.
    Also  in quotaion I have maintain the item category assignment I have assign QT - LUFM - AGN
    but whhen I am entering the header material in VA21  Ffor which the item category is LUFM system is giving the error message
    No item category available (Table T184 QT LUMF  )
    regards,
    zafar
    Edited by: zafar karnalkar on Nov 24, 2011 7:56 AM

    Hi,
    Yes I want that the Header material should not come in J1IJ  only.  but i check the program of J1IJ  it is selecting all the materials  ref. to delivery number  without any further check. also is it possible  insted of SO if first we create the quotation  in quotation therr willl be header material as well as child item  but in SO only child item should get copy when creating ref. to that quotaion,  I try with item category copy control,  but then system is selecting non of the materils from Quotaion to SO,  and when I allowed coopy control of header material from Quotaion to SO  then it is copying Header as well as child items in the SO.
    regards,
    zafar
    Edited by: zafar karnalkar on Nov 24, 2011 10:53 AM

  • Sales BOMs - User Exits

    Are there any user-exits available for Sales BOMs to control the explosion of the BOM in certain Document Types?
    I only want the BOM to explode for a specific order type.
    Is this possible?

    Dear Tom,
    When we create any material for BOM-usage, we maintain "Item cat. Grp" as LUMF (T. Code: MM01/02 --> Tab: Sales: Sales Org.2)
    Then, we create Material BOM in T. Code: CS01.
    Now, when you use the Material-Code, created in MM01 as BOM-Material (i.e. Item cat. grp is LUMF), in sales order system throws error:
    No item category available (Table T184 OR LUMF  )
        Message no. V1320
    Diagnosis
        No item category could be determined for the combination OR LUMF  .
    System Response
        The system does not allow further processing of this item.
    Procedure
        Check the entries in table T184 by means of which item category
        determination is controlled.
        If you do not have the authorization to do this yourself, contact your
        system administrator.ZQT LUMF )
    That means:
    Maintain an entry in T. Code: VOV4
    for the combination:
    Sales Doc. Type + Item Cat. Grp + Item Usage + ItemCat-HgLvItm
    I.e. Sales Document Types, maintained for Item Cat. Grp - LUMF, are allowed for BOM-explosion.
    Best Regards,
    Amit

  • Wrong Availability check for Header Item in Sales BOM after BOP

    Hi Guys
    I am stuck with a very weird problem. Request your advice:
    I have a Sales BOM with one item Lets header is 'A' and Item 'B'. On creation of Sales Order ATP check is performed and both the line items (with A and B) the committed qty and committed date.
    Now when BOP runs, it deletes the allocation of A and changes it to '0'
    Details:
    'A' is a non stockable product
    Req:
    1. I am not sure whether I should include A in BOP selection, however even running it only with B it deletes the allocation of A and the committed qty changes to '0'
    Can you please suggest the solution or standard way of running BOP for Sales BOM
    Thanks in advance
    -Rahul

    Thanks for writing in Prasun
    Yes I created a new Filter type however when you add a STO category and then you change the fields to include item category you will get the same error. I am also in V 5.0 of SCM
    Normally we use SAP_NetChange filter type. So is it possible to restrict using item category for this filter some how!
    On the otherhand I also wonder these should not ATP relevant as the header item is non stockable item! And I guess there should some catch to exclude if not item category as you mentioned!
    So the order categories included are:
    Customer Inquiry
    Customer quotation
    Sales Order
    SD Scheduling Agreement
    SD Scheduling agreement w/external
    Contract
    Delivery w/io charge
    Independent requriement
    Release from customer in plant
    STO
    Deplyometn release
    TLB release for purc ord
    Fields
    Product
    location
    distribution centrer
    MRP area
    product Hierarchy
    Location hierarchy
    supplier location
    These are std filter type and I cant be modified.. however we restrict our filter to location only!
    Kindly advice!
    Thanks in advance
    -RK

  • About sales bom

    Hi, I have some issue need your help!
    For example:
    The end user has created a sales order with sales BOM, the high level of material A is relevant for pricing and billing, but not relevant for ATP check, and item lever of material B is relevant for goods movement and ATP check, the material B does not confirm any qty. Then the end user use VL01N to create delivery note with reference the sales order. But material B does not copy to the delivery during in the process. Could you give me a solution how to appears an error message when create delivery note.

    Dear Prase,
    yes, the item catetory group of this main item is ERLA,
    example:
    Item categoires of the main item is ZTA1, item category group is ERLA. relevent for Billing and pricing. the schedule line category is CT.
    Item categoires of the components is ZTA2, item category group is NORM. not relevent for billing and pricing. the schedule line category is CP.
    Best regards,
    Rory

  • Delivery and Invoicing of items with Sales BoM

    I have created a sales Bom and all the items are excisable. After creating delivery when i copy to Outgoing excise invoice, the system does not llow me to add and i get error "There are excisable items with non cenvatable tax code"
    All the items created even the components are exciseable but it doesnt allow to copy the same tax code to the components and doesn't allow to mke OEI. How can i create invoices in such case? SAP 2007B, PL10
    Thanks

    Hi Agranshu........
    Whichever tax you are taking into the transaction please check the Tax Category in Tax Type of BED, Cess and HSCess component. I guess that is under Non Cenvat.
    This error generally comes when then Tax Types are not under cenvat tax codes and we try to add the transaction for excisable commodity.............
    Regards,
    Rahul

  • SALES BOM RETURNS PROCESS

    Dear Friends,
    I have recently created some SALES BOMS which carries out pricing and inventory at the component level (LUMF). i am now trying to carry out returns of some of these BOMs but have been getting problems doing so. one error is saying that the item category of the component material connot be determined.
    can anyone explain if there is any standard way that SAP handles returns of SALES BOMS if it is allowed at all? Can the configuration steps be given to make this happen, i would like step by step instructions.

    Hi,
    during sales order
    header : OR + LUMF -- TAP
    item    :  OR + Norm + + TAP --- TAN
    Config required during returns :
    header : RE + LUMF -- should be having a returns item cat at VOV4.
    item : RE + Norm+ + (one which you are going to determine above) --- (Component item cat at VOV4)
    A product can be returned depending on the business terms and conditions whether its a BOM or a normal product. From a customers perspective its just a product he is buying and can be returned if there is a problem.
    regards
    sadhu kishore

Maybe you are looking for

  • I can no longer use keyboard shortcuts to access Zoom tool.

    Hello, Yesterday I wiped my HD and reinstalled my system. I thought I put everything back the way I had it, but apparently I forgot something and can't figure out what's wrong. When in Illustrator CS2, I try to hold down Space+Command, I don't get th

  • Fireworks 3.0 Question

    I use Fireworks 3.0 (yes, dark ages) from time to time to do minor web updates on my website. Recently I cleaned up my computer and must have deleted some fonts or font related data. Now, when I edit a png file in FW 3.0 the cursor flashes like mad a

  • Presentation plays in mirror mode but not extended desktop

    My presentation plays in mirror mode flawlessly. But when played in extended desktop has only one life. After 'escaping' out of a playing slideshow, I am then unable to play the slideshow again in extended desktop and must either quit out of Keynote

  • JAXB Classes Names

    HI! I�m working with JAXB, and i have two classes in my xsd schema, Kcilivt and Kcil42t. After making the binging, it has generated my two classes, with names Kcilivt.java and Kcil42T.java. The T in the second case is upper case, because it's after a

  • Oracle reports command line

    Hello, I have an NT command file with a bunch of calls to R30run32.. Almost every night the job fails to run all the commands.. but just hangs on a particular call.. with no oracle session running.. but r30run32 still running when I look at task mana