IW36 sub -order OBject tab not copy

Hello:
I use IW31 create order and on Object list tab, I put many funcation location.
Then I create IW36 with ref to IW31 , the object list tab not copy to sub-order.
any configuration on this ?
BR,
Manthana

Hi,
As far as my uderstanding, it will not copy object list,
because you are creating sub order for these objects,if they appear in order then there is no meaning of sub order(mean to say both superior order & same order be same)
Kapil

Similar Messages

  • Create Notification Navigation Button not working in Order Objects Tab

    Hi Gurus,
    I am having an issue in Order --> Objects tab. I want to create notification for additional  technical objects for the order. When I enter the technical object details and press enter, a "Create Notification" navigation button gets activated for that line item. But when I press that button, nothing happens. On the other hand if a select multiple line items and then press "Create Notification" button at the bottom of the line items, I am able to create notifications for the selected line items.
    Can someone help me suggest what can be the problem or suggest a Note which might restore the functionality of the "Create Notification" navigation button at the line item level.
    Thanks in advance for the help.
    Best Regards
    Vikas Hali

    Vishal,
    I dont think the Notification Create Button from line item is pretty much dependent on the Customization Settings or any sap note concerning this has not been as yet brought into my notice. In my system, this is working appropriately. The problem with this which i can think of is either an authorization issue or you should raise an oss for this.
    Regards,
    Usman

  • Sales order quantities are not copied to Delivery

    Hi Friends,
    The sales order quantities are not copied to the delivery document. The order type is OR & delivery type is LF.
    We are using the BoM, for which a dwelivery group is created in the sales order. The schedulelines are confirmed as there is ample stock in storage location. The scenario is MTS.
    The copy control in VTLA is :
    At Header level
    order req : 001
    combination req : 051
    header req : 001
    header data ext sys : 0
    At Item Level for TAP
    order req : 102
    item data : 101
    item data ext sys : 0
    business data : 2
    update doc flow ( X ) 
    positive/negative : +
    At Item Level for TAN
    order req : 101
    item data : 101
    item data ext sys : 0
    business data : 2
    update doc flow ( X )
    positive/negative : +
    Please tell the solution
    regards,
    Yuvaraj.

    Hi,
    When you do the setting for item category, you need to maintain that the item is relevant for delivery. Kindly check.
    Regards,
    Jn

  • Sub Line itmes are not copied out...

    Hi all,
    I am using BAPI ''BAPI_SALESORDER_CREATEFROMDAT2'' to create a sales order with refernce to Contract number. The creation of sales order is fine but the issue is when ever there are sub line items in the contract there are not copied into salesr order.
    Is any one know the reason and solution to reslove this issue.
    My code:
      DATA: lv_vbap  TYPE vbap.
      data: lv_inst_id(8) type n.
      wa_contract_header_in-refobjtype = gc_bus2032.
      wa_contract_header_in-refdoc_cat = 'G'.
      wa_contract_header_in-ref_doc    = wa_vbak-vbeln.
      wa_contract_header_in-refdoctype = wa_vbak-auart.
      wa_contract_header_in-doc_type   = gc_auart.
      wa_contract_header_in-sales_org  = wa_vbak-vkorg.
      wa_contract_header_in-distr_chan = wa_vbak-vtweg.
      wa_contract_header_in-division   = wa_vbak-spart.
    Header data check list
      wa_contract_header_inx-updateflag = gc_var_i.
      wa_contract_header_inx-refdoc_cat = gc_var_x.
      wa_contract_header_inx-ref_doc    = gc_var_x.
      wa_contract_header_inx-doc_type   = gc_var_x.
      wa_contract_header_inx-sales_org  = gc_var_x.
      wa_contract_header_inx-distr_chan = gc_var_x.
      wa_contract_header_inx-division   = gc_var_x.
    Fill Item details table
      LOOP AT t_vbap_copy INTO wa_vbap.
          wa_contract_items_in-itm_number   = wa_vbap-posnr.
          wa_contract_items_in-material     = wa_vbap-matnr.
          wa_contract_items_in-target_qty   = wa_vbap-kwmeng.
          wa_contract_items_in-target_val   = wa_vbap-netwr.
          wa_contract_items_in-refobjtype   = gc_bus2032.
          wa_contract_items_in-ref_doc      = wa_vbap-vbeln.
          wa_contract_items_in-ref_doc_it   = wa_vbap-posnr.
          wa_contract_items_in-ref_doc_ca   = 'G'.
         wa_contract_items_in-PO_ITM_NO    = wa_vbap-posnr.
         wa_contract_items_in-config_id    = '000001'.
         wa_contract_items_in-inst_id      = '00000001'.
          APPEND wa_contract_items_in TO t_contract_items_in.
      Fill item update table
          wa_contract_items_inx-itm_number  = wa_vbap-posnr.
          wa_contract_items_inx-material    = gc_var_x.
          wa_contract_items_inx-target_qty  = gc_var_x.
          wa_contract_items_inx-target_val  = gc_var_x.
          wa_contract_items_inx-refobjtype  = gc_var_x.
          wa_contract_items_inx-ref_doc     = gc_var_x.
          wa_contract_items_inx-ref_doc_it  = gc_var_x.
          wa_contract_items_inx-ref_doc_ca  = gc_var_x.
         wa_contract_items_inx-PO_ITM_NO   = gc_var_x.
         wa_contract_items_inx-config_id   = gc_var_x.
         wa_contract_items_inx-inst_id     = gc_var_x.
          APPEND wa_contract_items_inx TO t_contract_items_inx.
        Schedule Lines
          wa_contract_schedules_in-itm_number = wa_vbap-posnr.
          wa_contract_schedules_in-sched_line = sy-tabix.
          wa_contract_schedules_in-req_qty    = wa_vbap-kwmeng.
          append wa_contract_schedules_in to t_contract_schedules_in.
          wa_contract_schedules_inx-itm_number = wa_vbap-posnr.
          wa_contract_schedules_inx-sched_line = sy-tabix.
          wa_contract_schedules_inx-updateflag = 'X'.
          wa_contract_schedules_inx-req_qty    = wa_vbap-kwmeng.
          append wa_contract_schedules_inx to t_contract_schedules_inx.
        Configuration
          wa_contract_CFGS_REF-posex        = wa_vbap-posnr.
          wa_contract_CFGS_REF-CONFIG_ID    = '000001'.
          wa_contract_cfgs_ref-ROOT_ID      = '00000001'.
          wa_contract_cfgs_ref-sce          = '1'.
          wa_contract_cfgs_ref-kbname       = wa_vbap-matnr.
          wa_contract_cfgs_ref-kbversion    = '001'.
          append wa_contract_cfgs_ref to t_contract_cfgs_ref.
          wa_contract_CFGS_inst-config_id   = '000001'.
          wa_contract_cfgs_inst-inst_id     = '00000001'.
          wa_contract_cfgs_inst-OBJ_TYPE    = 'MARA'.
          wa_contract_cfgs_inst-class_type  = 300.
          wa_contract_cfgs_inst-obj_key     = wa_vbap-matnr.
          append wa_contract_cfgs_inst to t_contract_cfgs_inst.
        lv_inst_id = '00000001'.
        loop at t_vbap into lv_vbap where uepos = wa_vbap-posnr.
          add 1 to lv_inst_id.
          wa_contract_CFGS_inst-config_id   = '000001'.
          wa_contract_cfgs_inst-inst_id     = lv_inst_id.
          wa_contract_cfgs_inst-OBJ_TYPE    = 'MARA'.
          wa_contract_cfgs_inst-CLASS_TYPE  = 300.
          wa_contract_cfgs_inst-obj_key     = lv_vbap-matnr.
          append wa_contract_cfgs_inst to t_contract_cfgs_inst.
          wa_contract_cfgs_part_of-config_id = '000001'.
          wa_contract_cfgs_part_of-parent_id = '00000001'.
          wa_contract_cfgs_part_of-inst_id   = lv_inst_id.
          wa_contract_cfgs_part_of-part_of_no = wa_vbap-posnr.
          wa_contract_cfgs_part_of-obj_type  = 'MARA'.
          wa_contract_cfgs_part_of-CLASS_TYPE = 300.
          wa_contract_cfgs_part_of-obj_key   = lv_vbap-matnr.
          append wa_contract_cfgs_part_of to t_contract_cfgs_part_of.
        endloop.
        loop at t_zgd_v_vc_char into wa_zgd_v_vc_char
                               where instance = wa_vbap-cuobj.
          wa_contract_cfgs_value-config_id  = '000001'.
          wa_contract_cfgs_value-inst_id    = '00000001'.
          wa_contract_cfgs_value-CHARC      = wa_zgd_v_vc_char-atnam.
          wa_contract_cfgs_value-value      = wa_zgd_v_vc_char-atwrt.
          append wa_contract_cfgs_value to t_contract_cfgs_value.
        ENDLOOP.
      ENDLOOP.
    Fill Partner Table
      wa_contract_partners-partn_role    = gc_sp.
      wa_contract_partners-partn_numb    = wa_vbak-kunnr.
      APPEND wa_contract_partners TO t_contract_partners.
    Call Bapi to create sales order
      CALL FUNCTION 'BAPI_SALESORDER_CREATEFROMDAT2'
        EXPORTING
          order_header_in     = wa_contract_header_in
          order_header_inx    = wa_contract_header_inx
        IMPORTING
          salesdocument       = gv_sales_doc
        TABLES
          return              = t_return
          order_items_in      = t_contract_items_in
          order_items_inx     = t_contract_items_inx
          order_partners      = t_contract_partners
          ORDER_SCHEDULES_IN  = t_contract_schedules_in
          ORDER_SCHEDULES_INX = t_contract_schedules_inx
          ORDER_CFGS_REF      = t_contract_cfgs_ref
          ORDER_CFGS_INST     = t_contract_cfgs_inst
          ORDER_CFGS_PART_OF  = t_contract_cfgs_part_of
          ORDER_CFGS_VALUE    = t_contract_cfgs_value.
    Thanks in advance...
    Satya.

    Hi,
    Material document will get updated in reference field in FI by default.  If for any reason, want to get this updated in text field, you need to define a subsititution in GGB1.
    Best Regards,
    Madhu

  • Order Header Text not copied to Invoice Header

    Hi All friends
    I have created text id for copiying sales order header to invoice header in votxn. I assign in text procedure of sales order as well as Invoice text procedure. I create sales order with maintaining text ID But when i created invoice with same sales order text id is not copied. Please suggest me what steps i should take and what Access sequence i must maintain to copy text from Sales order to Invoice.
    I have maintained the access sequence and maintain the required text id in access sequence. But system is only access the first text id from order header to Invoice header not other text id  which i maintain in order.
    Regards
    Shambhu
    Edited by: SHAMBHU SARKAR on Dec 29, 2008 12:30 PM

    Hi shambu
    while doing text determination in one step in i think in text id's in text procedures, maintain as TEXT IS OBLIGATORY AND SHOULD BE DISPLAYED WHILE COPYING.
    Text is obligatory and displayed when Transferring - whatever text you have entered in the sales order that will be copied into preceding document say delivery or billing
    Regards
    Srinath

  • Billing date(fkdat) in sales order item is not copied from Goods Issue Date

    Hi All
    we are facing problem at item level billing date field.This field should be filled with the GI Date in schedule lines shipping tab.
    but, it(billing date) is not being filled with goods issue date but, with the required deliver date at sales order header.
    Please give me a solution and the root cause. This is urgent as business is halted.
    Thanks
    Kumar

    Lakshmipati
    This is from SAP Screen
    "If invoice dates are defined for the customer, the system proposes the billing date from the invoice date calendar. If no invoice dates are agreed, then the actual goods issue date is formed on the basis of delivery related billing. In order related billing, the billing date of the order forms the basis of the billing date."
    earlier it is happening as desired.i.e., billing date=GI Date.
    but, as of now it is taken from the required delivery date.
    Please give me solution
    Kumar

  • CRM Exchange order - shipping condition not copied from Sales order

    In CRM Web client when we create an exchange order with reference to the sales order the shipping condition is copied from the BP sales area data instead from the original order.

    Hi
    Check this link
    http://learnsaptips.blogspot.com/2010/09/text-type-configuration-in-sap.html
    regards
    Prashanth

  • First row from Service Order Object list not stored in OBJK table

    Hi all,
    Please be patience with my terminology .
    Could you please explain me if we have SO created based on notification, and that notification already have Equipment number, why this equipment is not created in OBJK table? So always the first row (as in attachment) is not stored in OBJK, other rows(objects) are there.
    I know the EQUNR is stored in AFIH, but it's useless for us because I'm creating HANA analytical view with following join logic (simplified):
    AFIH.OBKNR=OBJK.OBKNR
    OBJK.ILOAN=ILOA.ILOAN
    ILOA.TPLNR=IFLOT.TPLNR
    ILOA.ILOAN=EQUZ.ILOAN (where EQUZ.DATBI='99991231')
    EQUZ.EQUNR=EQUI.EQUNR
    The join logic might not be 100% correct.
    Thank you for your help.

    Using the tags to format your code may help you get a response sooner than later.
    This and other useful pieces of information are located in the  FAQ
    http://wiki.oracle.com/page/Oracle+Discussion+Forums+FAQ                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Create internal order with reference - Do not copy distribution rule group

    Hi,
    I'm creating an internal order with reference to another order through tcode KO01. When i will display the new internal order, i already have distribuion rule group that was copied from the reference order. To delete the incorrect distribution rule group i execute tcode KO02, however this information do not appear in tcode KO02.
    What should be done to delete this settlement rule? I do not want to copy the settlement rules from the old internal order.
    Thanks in advance.
    Regards,
    Ana Fernandes

    Hi.
    'What should be done in order to do not copy this information when i create the internal order with reference?'
    in tcode kot2_opa do not maintain Settlement profile for Order category 3
    Also go to KOM2 and delete Settlement rule for order, from which you copying.
    'in table COBRB i can see the information however i can not delete it. The validy period is empty.'-in su53 check authority

  • Pm order text not copied to a requisition

    Good day, can sumone help me with this, i have created a pm order with text but when converted to a Purchase requisition the PM order text is not copied to the requisition.
    rgds
    Jabu

    Hi,
    IMG> MM> purchasing> Purchase requisition> Texts for PR-->
    in that 1) define text types
    2) define copying rules
    in that link PR to Pm order
    Thanks & regards
    Swathi

  • Problem in Partial delivery BOM - items not copied in subsequent delivery

    Hi,
    We are using BOM in Sales order and we have activated delivery group for the BOM header item category.
    When we create first delivery we change the BOM header item quantity in delivey ( all the components quantity change accordingly) and save the delivery.
    Now when we try to create second delivery with reference to the same delivery for the left out qunatity in sales order, system is not copying the components of BOM items ( it is only copying BOM header) from sales order to delivery.
    Please let us know how can we create subsequent delivery with reference to the same sales order and delivery should get all the BOM items from SO to delivery.
    Please let me know if you need further information.
    Thanks
    Venkata Rama Reddy,K

    Hi,
    We already set the delivery group to A, and still having the same result.  We change the BOM header quantity only and automatically the component quantity is updated.
    This happens only if there are two header BOM in the Sales Order.  See example below:
    Bom Header 1 = 100
    Bom Component 1a - 80 (partial delivered)
    Bom Component 1b - 20 (partial delivered)
    Bom Header 2 = 200
    Bom Component 2a - 150
    Bom Component 2b - 50
    When creating outbound delivery, initially all the materials are copied to the outbound document.  If we want to delivery only Bom Header 2, then we will delete the Bom Header 1 line item.
    Upon deletion, the status of the component becomes fully delivered in the SO, but the Bom header is still partial delivered.
    Please confirm how to correct this.
    **If there is only one BOM Item in the order, then partial delivery is ok..
    Thank you,

  • Payment Terms not copying to Items

    Hi Guru's
    I have a situation where the Payment Terms are not copying to the line items and because of the same it is going to Incompletion log.
    Tried different ways.
    Maintained in the Cust master Sales data and when we change the same in the Order it is not copying to line items.
    Didn't maintain in CustMast- didnt copy to the line items.
    how to make it to copy to the line items...
    Thanks All.

    There are no custom developments done.
    Again my issue is we have not maintained any payment terms in the Customer Master.
    Process
    1) So nothing would be there in the Sale order header
    2) They give payment terms manually in the Order Header.
    Issue
    1) It is not getting copied to the line items.
    2) Giving Incompletion log even though it has been entered in the header(reason it is not copying header values to the items), so they have to enter in the line items again, which is painful has they have entered for 100 line items.
    Help Needed
    How to solve this problem- The ideal solution would be whatever payment term entered, has to get copied to the line items or need to make payment term mandatory in some other way other than Incompletion log.
    Any help ?
    Thanks

  • Production Order reservation(ETO) not deleting after PGI (VL01N)

    Hi All,
    Greetings!!!
    A query, regarding ETO (Project system)
    ETO scenario, For production, reservation will be create through WBS element. After production , If I do delivery and PGI,  production order reservation is not deleting.
    Same material If I do delivery(LP) through CNS0, then order reservation is going to delete after PGI. But Sales order price is not copying to Billing If I follow this process.
    Is there any copy controls to flow the sales price to billing when delivery happens through CNS0. If not
    Which requirement class and movement type I need to determine in Sales order.
    Please do needful.
    Very High,
    Thanks,
    Prasad.

    This is standard SAP
    SAP process is to deliver project stock using project delivery , where in PGI happens against the reservation created & deletes RESERVATION.
    wherein if you do PGI for order ( sale order or prod order ) , it happens against project stock ( spe stk Q - 281 movement )  i.e., against WBS element
    I faced the same for sale order delivery of project stock .
    we are selecting FINAL Issue indicator through user exit which triggers when PGI is clicked
    This will delete RESERVATION from stock overview
    hope this helps ...Let me know if you found any alternative

  • Incorrect quantity updates of sub-order in collective order

    Hi,
    We are using Cable solutions ver: 4.6c. When the quantity of the leading order is changed (co02), the sub-order quntities are not changing accordingly. Let me explain you in detail.
    Following are the settings in Material Master.
    Material      BaseUoM      AsseblyScrap  ProcurementType    SpecialProcurement   MatType
    MAT1          FT                11.5%               E - inhouse                                                  FERT
    MAT2          FT                                         E - inhouse               52 - Collective Order  HALB
    MAT3          LB                                         F - External               10 - consignment       ROH
    Following is the BOM structure for Leading Material MAT1 with base qty 1000FT
    Component      Qty     UoM
    MAT2               1000  FT
    Following is the BOM structure for MAT2 with base qty 1000FT
    Component      Qty     UoM
    MAT3               7.280  LB
    If I create a production order for MAT1 with qty 1000 - system adds 11.5% scrap and the final qty = 1115 and at the same time it creates a production order for MAt2 with qty 1215 (this is another issue - it suppose to be 1115 but it adds 100 more, dont know why). Now if go to change mode and change the qty for MAT1 to 10000 then the target qty = 11150, but the Qty for for order of MAT2 = 5529 - which is incorrect, it is suppose to be around 11150.
    One thing i noticed is - if Assembly scrap for MAT1 is removed in Material master then the Quantity of the MAT2 is updating correctly.
    Anyone had this kind of issue before? Please let me know the solution to this problem.
    Thanks in advance.

    Is any one there who can help me on this problem. I am waiting.....
    Thanks in advance

  • IW36 bdc is not updating CU tab for sub order

    Hello Everyone,
    I am facing one strange problem.
    I am creating a Main work order using IW31 bdc and in the same program i run the IW36 bdc for sub order creation for the main WO created. In this case when I create a Main WO, CU tab gets updated with a default row.
    When I keep the mode 'A' and check the BDC of IW36 it takes me to the CU tab sceen and updates the row same as in Main WO. and it creates  the Sub Order.
    But when I check the Sub Order using IW32 tcode, I dont find the updated row in CU tab .. rather I find it blank.
    Please help me to find out why its happening and what should be the soultion..
    Regards,
    Pranil Shinde.

    Hi Prabhu,
    I didn't understand the meaning of analyzing the Pricing Procedure ?
    In V/08, I have selected the Z condition type created in the system and than selecting that, navigated to CONTROL folder.
    Now in front of the Z condition type in CALCULATION TYPE field the number of the routine is given (Which is created using VOFM).
    Now what else I need to do?
    Repy@Madhu.
    Yes Madhu. Routine is activated and control is stopping if break point given in the routine. In this routine I am trying to populate a value in its XKOMV internal table's KBETR field but when VA01's main CONDITIONS TABS screen comes the value is not appearing.

Maybe you are looking for

  • Report an app problem

    My twilight books are not working on my iPhone 4S, but I can't click the report a problem link. I knw that iceberg will no longer be on apple products so where do I go to get a refund?

  • Automatic Payment Program (APP)

    Hello Sapients, Scenario: A down payment(F-48) is made $25 Later an invoice(MIRO) is posted for $100 Now i wnt to Pay $75 to Vendor But the Automatic payment program(F110) is not clearing the down payment against the vendor invoice. Could you please

  • Final Cut Pro keeps quitting on me!!

    As I'm trying to import an audio track from a CD into Final Cut, the program 'unexpectedly quits'. How do I import music for Final Cut to stopping shutting down on me?!?

  • How to get repeat/shuffle blue arrow to display in the 12.1.1.4 version

    I am able to right click at the top where the timer is and see the shuffle songs and repeat but nothing happens and it does not show the blue arrow so that I can click on to repeat song...It just went away and I can't get it back since I downloaded t

  • Polymorphic VIs and executables

    I have recently created a polymorhic VI for a project. Now when I  tried to convert it to an executable I was told by LabVIEW that "You cannot include a polymorphic VI in the Startup VIs or Dynamic VIs and Support Files listboxes." and the help file