Task list not getting copied in Order

Hi All,
I have created a Maintenance plan where my call object is notification. I have scheduled the plan & i got the Notification after releasing the call.
I am getting the Task list reference in Maintenance plan tab in notification.
Now my issue is, the task list is not getting copied to order when i create order against the notification.
Kindly help me resolve the issue.
Thanks & regards,
Basavaraj

Basavaraj,
   When a order is created from the worklist (IW28) of notification , the task list associated to the notification will be exploded and added as operations.
Have a look at [Sap Help|http://help.sap.com/saphelp_erp60_sp/helpdata/en/fc/f26c3c17c8c67ee10000000a11402f/frameset.htm]
for detailed steps.
Regards
Narasimhan

Similar Messages

  • Freight Condition not getting copied from order to billing

    Hi,
    Here at my clients place, i have created new condition type for freight(which will be calculated after excise duty and VAT).This conditon type should not increase the order value but increase tax amount in sales order item level.
    For this i have created new conditon type ZFRI-Manual Condition
    Condition Class- D (taxes)
    Calculation Type- B (Fixed amount)
    Condition Category-F (Freight)
    In sales order i have maintained this condition manually and done PGI,
    Now when i am going to create billing that condition is not displaying in billing-VF01.
    Kindly suggest...where to check...
    thanks in advance...

    Dear Ullas,
    In your Billing document go to Item Condition detail screen & there would be a button on bottom of the screen - Update.
    Double click on this update button & select G - Copy pricing elements unchanged and redetermine taxes.
    This would solve your problem.
    If not, then check copy control setting between your Sales, Delivery & Billing Documents.
    Hope this helps.. .
    Give points if useful...
    THanks,
    Jignesh Mehta

  • The pricing procedure in Sales order is not getting copied into invoice

    The pricing procedure in Sales order is not getting copied into invoice.
    I have created a document type (pricing procedure),based on the document type ,pricing procedure determination is done.
    So while creating sales order the pricing procedure is determined but when invoice is created the pricing doesnt refelect in the invoice.How to over come this problem

    Hi
    Please check the in OVKK, weather you have maintained correctly or not.Also check in the Billing document type details what is the Document pricing procedure that has been maintained.
    Regards
    Srinath

  • Storage location not getting copied in process order for components

    Dear PP Gurus,
    While making a production /process order the storage location of component materials is not getting copied from material master into the process order, it is showing any default storage location.
    What couls be the reason for it..
    For all components it is defaulting the same storage location.
    Please throw some light on the issue what could be the reasoon for it..

    Dear,
    System determine issue storage location from the material master, the value of the storage location of the BOM item, or the storage location from the supply area.
    Check in BOM component details storage location you have defined.
    Check production storage location from the plant segment of the component is taken into account for the use of MRP areas also. When planned order is being created for the superior assembly in a MRP area?
    Also check the Material requirements planning (PP-MRP)
    --> planning process
      --> BOM explosion and dependent requirements determination
        --> storage location determination for BOM explosion
    Regards,
    R.Brahmankar

  • Manual discounts are not getting copied from Quote to Sales order

    Hello All,
    If I assign a manual discount to any item in Quotation document, this condition type with its discount amount is not getting
    copied over to Sales order document, I have selected the drop down "D Copy all conditions" in the copy control for item categories,
    and both quote & Sales order use the same pricing procedure, i am i missing something here?
    I appreciate your help
    thanks
    Chandu

    Hi Chandu,
    Please try to adopt the standard pricing type in the copy control between QT and OR which is "A - Copy Pricing components Unchanged and redetermine Scales".
    Please share the outcome.
    Regards

  • VAT /CST% manually in the sales order,not getting copied to the Invoice

    Dear Friends,
    If I change the VAT /CST% manually in the sales order,its not getting copied to the Invoice
    Thanks
    Ivy

    Dear Friends,
    Thanks for your valuable inputs....
    I have maintained the condition record for the combination of delivery plant region and the customer  region.......assigned dummy tax code against the Tax condition...therefore I think there wont be any problem in posting billing doc to accounting doc.
    There are different combinations,where sometimes the user is liable for 2% CST ....sometimes 4%CST... but I am able to pick one tax value say 12.5% CST across and maintained the tax condition types - manual entry has priority, as allowed the user to change the value manullay as per the user requirement ....
    Now if i change the Tax condition value in the sales order ,the same is not reflecting in the Invoice....this also is applying from contract to a sales order...
    Please advice me accordingly...
    Thanks
    Ivy

  • Ordered Quantity does not get copied to Invoice by  DIAPI

    Hi All,
    I am stuck with an issue in Invoice creation using  DI API by code.The field Ordered Qty (DB Filed INV1.OrderedQty) does not gets copied to Invoice line from delivery lines. But while we add invoice from delivery >Copy To> AR Invoice , it gets copied to Invoice lines. This OrderedQty field is not exposed through DI API, so we cant set that field throgh code. What I do in Invoice creation code is as follows.
    SAPbobsCOM.Documents oINV;
                        oINV = (SAPbobsCOM.Documents)
                            modups.oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oInvoices);
                        oINV.CardCode = oDLN.CardCode;
                        for (int i = 0; i < oDLN.Lines.Count; i++)
                            oDLN.Lines.SetCurrentLine(i);
                            string str = oDLN.Lines.ItemCode;
                            if (i != 0)
                                oINV.Lines.Add();
                            //oINV.Lines.ItemCode = oDLN.Lines.ItemCode;
                            //oINV.Lines.Quantity = oDLN.Lines.Quantity;
                            oINV.Lines.BaseType = Convert.ToInt32(SAPbobsCOM.BoObjectTypes.oDeliveryNotes);
                            oINV.Lines.BaseEntry = oDLN.DocEntry;
                            oINV.Lines.BaseLine = oDLN.Lines.LineNum;
                            taxcode = oDLN.Lines.TaxCode;
    if (DeliveryExpenseCount > 0)
                                for (int i = 0; i < DeliveryExpenseCount; i++)
                                    oDLN.Expenses.SetCurrentLine(i);
                                    if (i != 0)
                                        oINV.Expenses.Add();
                                    //oINV.Expenses.ExpenseCode=i;
                                    oINV.Expenses.ExpenseCode = oDLN.Expenses.ExpenseCode;
                                    oINV.Expenses.LineTotal = oDLN.Expenses.LineTotal;
                                    oINV.Expenses.TaxCode = oDLN.Expenses.TaxCode;
                                    oINV.Expenses.BaseDocEntry = oDLN.DocEntry;
                                    oINV.Expenses.BaseDocLine = oDLN.Expenses.LineNum;
                                    oINV.Expenses.BaseDocType = 15;
    int retVal = oINV.Add();
                        if (retVal != 0)
                            int lErrCode; string sErrCode;
                            modups.oCompany.GetLastError(out lErrCode, out sErrCode);
    Any help will be appreciated..
    Deepesh

    Hi Gordon,
    Thank you for your reply.But it didnt fix the problem.The only change of previous code with this one was oINV.Lines.Add() method is called in the last of the loop.But it wont fix issue. 
    Updated on 20/10/2011
    I have found the issue.The issue is causing if we update the resulting invoice's expense lines.
    If we copy the expense lines from delivery and update any line with an amount it works fine and resulting invoice has "Ordered Qty" in its lines. Code is
    for (int i = 0; i < DeliveryExpenseCount; i++)
                        oDoc.Expenses.SetCurrentLine(i);
                        if (i != 0)
                            oINV.Expenses.Add();
                        string s = oDoc.Expenses.TaxCode;
                        oINV.Expenses.TaxCode = oDoc.Expenses.TaxCode;
                        oINV.Expenses.BaseDocEntry = oDoc.DocEntry;
                        oINV.Expenses.BaseDocLine = oDoc.Expenses.LineNum;
                        oINV.Expenses.BaseDocType = 15;
                        oINV.Expenses.LineTotal = oDoc.Expenses.LineTotal;
                        if (radioButton2.Checked == true && i == 0)
                            oINV.Expenses.LineTotal = oDoc.Expenses.LineTotal + Convert.ToDouble(txtExp.Text);
    But if the delivery has no expense lines or we are adding a new expense line to the invoice while invoice creation from delivery , the resulting invoice does not have "Ordered Qty " in its lines..
    Code is
    if (DeliveryExpenseCount > 0)
                            oINV.Expenses.Add();
                        oINV.Expenses.ExpenseCode = 1;
                        oINV.Expenses.TaxCode = taxcode;
                        oINV.Expenses.LineTotal = Convert.ToDouble(txtExp.Text);
    If I try to add lines
    oINV.Expenses.BaseDocEntry = oDoc.DocEntry;
      oINV.Expenses.BaseDocType = 15;
    to the above code it may show either "Internal error" or " No matching records found".
    Is this a bug in DI API?

  • Weights are not getting copied from quote to order

    Hi All,
    While creating sales order items with reference to a Quote the weights are not getting copied (zero shown in weights) even though the material in  quote has weight.
    Why are the weights not getting properly from quote to order .

    hi
    goto VTAA and select the target document
    click on Magnifying glass symbol
    here check whether you have selected complete Reference or not
    But if you select this then the system copies the source document completely.
    Procedure
    If you mark the field, the system copies the source document into the target document completely. The system also copies the complete reference indicator. You cannot change the indicator in the target document.
    Regards

  • Problem While Adopting Task list having components, in  PM Order

    HI ,
          I am working in simple scenario in two landscapes
    I have created a general task list having some component  assigned to one operation. I am creating new PM order & adopting the task same task list using direct entry. The task list is getting adopted but when i am going in to component tab page
    the storage location is not coming. I have to enter the storage location manually. which  i dont want
    But in other system i am doing the same thing & i could see the storage location is coming up automatically.
    In both the system i have maintaned the stock of materials for plant xyz & storage location 0001
    Can you please help me in resolving this.
    Regards,
    Amar

    Hi,
    Probably you need to check the difference in two landscape.
    i.e. release patch,
    You need to take help of Basis person in this.
    Thanks,
    Rahul

  • Partner roles not getting copied from customer.

    Hi ,
    Partner Roles not getting copied from customer to delivery Document .
    we have created one delivery document from a purchase order and when trying to create billing document from that delivery document it is giving log "payer" and ' Bill to party " not maintained.
    when checked in partner tab in delivery document these partner roles are not present there . so what can be the probable reason . These partner functions are maintained in customer.
    thanks!!!!!!
    which customizing seeting to check for this

    Hello Payal,
    Please go to T.code VOPA i.e. Maintain Partner Determination and select Delivery from the list and then click Partner Procedurers and select the relevant delivery type and double click you will get mandatory Partner Functions like Sold To, ship To, Bill to are ticked or not.
    Reward if useful

  • Adobe creative Cloud photshop cs 6 register user iam not getting COPY CSS options please help

    iam adobe creative cloud photshop cs 6 register user iam not getting COPY CSS options even i have updated photoshop several times
    still not getting this options please help
    Thanks
    Koushik

    13.0.1 is the last version of Photoshop to run on Windows XP but it does not include the Copy CSS feature.
    The Copy CSS feature was first introduced in Photoshop 13.1 (Cloud only) and higher.
    http://blogs.adobe.com/jkost/2013/02/copy-css-attributes-in-photoshop-13-1.html
    Photoshop 13.1 does not run on Windows XP. So your operating system is preventing you from upgrading Photoshop to 13.1+.
    http://helpx.adobe.com/photoshop/kb/new-system-requirements-photoshop-131.html
    If you plan to remain a Cloud member then you will have to upgrade to Windows 7 or Windows 8 (or get a new computer) very soon in order to run Photoshop CC to be released on June 17, 2013.

  • Sub items are not getting copied into excise invoice

    Hi Guru's
    I am using Sales BOM in my sale order, pricing and inventory are controlled at sub-item level.
    I am creating the outbound delivery with reference to sale order and billing document (Commercial Invoice) with reference to outbound delivery.
    When I create an excise invoice in J1IIN, subitems are not getting copied from billing document, instead only main item is getting copied along with sum of all the excise duties of subitems. Ex: A is main item (Not relevant for pricing). B and C are subitems with excise duty 10 and 20 respectively. Here A is getting copied with excise duty 30 (10 +30).
    When I download the excise register, register is showing all A, B and C items with quantity but it is not showing the corresponding excise duties of subitems. We would like to avail cenvat at sub items.
    Kindly suggest me how can I copy subitems into excise invoice from billing document.
    Thanks & Regards.
    Swamy H P

    Hi Lakshmipathi,
    Thank you so much for the response.
    Yes, I am able to save the outgoing excise invoice(J1IIN) without any errors. It's working fine for normal materials(With out BOM), but for BOM materials even though main item is not relevant for pricing as pricing is controlled at sub items all the excise duties (BED, ECS and S&H cess) of sub items are getting copied to main item while creating the outgoing excise invoice.
    I mean excise invoice is showing only main item with all the sub items excise duties. same is getting posted also.
    But when I extract and download RG1 register, RG1 report is showing both main item and sub items with quantity but excise duties are not shown.
    I debugged and found that excise duties are not flowing to table J_1irg1 from J_1iexcdtl.
    Thanks & Regards,
    Swamy H P

  • I tried to set up a new library for my old ipod nano so i could update songs on it however when i tried to import songs from a cd it crashed and i had to end task therefor not getting to sync the new songs with ipod nano. now i cant find old library

    However during the process of adding new songs itunes crashed and i had to end task therefor not getting the chance to sync the new songs onto ipod nano. later when i plugged in my current ipod touch all my songs have disappeared and i cant find the original itunes library i had for it! is there anyway to get it back? i have tried pressing shift when opening itunes but still cant find the original itunes that i had!!

    Since all of your music came from your computer in the first place, then it should still be there and should be included in your backup copy of your computer.
    " it told me when i pluged hers in 2 ipods could not use the same account"
    This is not true.  You have misunderstood.
    You can sync as many ipods/iphones/ipads as you like to one one library.

  • Incoterms are not getting copied at the item level

    HI Gurus,
    I have an sales order where If we change the Incoterms at the header level, its not getting copied at the line Items. Its giving an information mesage stating, Header Business Data does not apply to Item.
    The Incoterms are intially getting copied from Customer master, but later I am not able to change it.
    Please let me know what might be the reasons ? If possible Please let me know some User exits which needs to be checked.
    Thanks,
    Swathi

    Check in VOV8 for your sale order type the following:-
    a)  If both Check Division and Item division are ticked, then system will pop up this message due to the fact that in the said sale order, the item division differs from header division
    b)  The field "ProdAttr.messages" should be blank
    Next go to VOV7, select your item category and execute.  There ensure that the box is ticked for "Business item".  If this is unticked, then system will copy all header data to line item and you cannot change it.
    thanks
    G. Lakshmipathi

  • BOM main item not getting copied in delivery

    Hi SAP experts
    The problem iam facing is the main item in sales order is not getting copied in delivery and subsequently not able to generate the billing document as the subitems are not relevant for billing.  I got a solution saying that the problem is with the delivery group in the item category.
    But for the same item i tried to create order for a different order type and it seems to be working fine. Its happening for a particular order type only.
    I checked in the copy control settings and settings seems to be fine.
    Can somebody help me on this issue.

    Hi,
    In VTLA, check copying requirements.
    Regards
    SD

Maybe you are looking for