Schedule Lines for TATX items

I know that by default, schedule lines are not active for TATX (text) items in sales documents.
I'm also pretty sure that this option is not valid even if you activate it in the IMG.
Can anybody tell me:
1) Is my statement above correct ?
2) If so, why are schedule lines not allowed for TATX items.
3) Is there any way around this limitation ?

Thanks for your input so far.  Perhaps you'll be kind enouth to stick with me a little more.
Let me expalin what my user is doing:
In the IMG configuration of our system, schedule lines were activated for TATX item category, however it still does not work as expected.
User enters a quantity of deliverable product on line item 1 with item category of TAN.
User creates a delivery schedule for line item 1 using schedule lines (category CP).
For line item 2, user wants to send "DOCUMENTATION" for each schedule line.
"DOCUMENTATION" exists in our SAP system as a material master, but no stock exists.
User enters a quantity of DOCUMENTATION on line item 2 with item category TATX.
User creates delivery schedule for line item 2.  (auto populates sched category CT).
When delivery is created, the first schedule line for both items works fine.
For subsequent deliveries, line item 1 continues to work, but the line item 2, DOCUMENTATION material does not show up.
I suspect that we are trying to use the TATX item category differently than it was intended, and that some other method would be a better fit for making deliveries of non-stocked material.

Similar Messages

  • How to pass Schedule lines of an item Line to 'BAPI_QUOTATION_CREATEFROMDAT

    Hi Friends,
    I am trying to create Sales Quotation using the  'BAPI_QUOTATION_CREATEFROMDATA2'  from Webdynpro Application.
    I am able to create the quotation with Line items, but I am not able to pass the multiple schedul line for an Item line.
    it takes,but it checks the item availabilty and propses the delivery propsal dates.
    but my requirement is It should take only the schedule line items which I am passing to BAPI,because I do the availability check in my application and pass those schdule line items to BAPI.
    If I pass only one schedule line item then should create only with one schdule line item,If I pass Muliple then it should create schedul lines for item line.
    Please help me in solving the issue.
    Regards,
    Xavier.P

    Hi max,
    loop at lt_nd_quote_items into ls_nd_quote_items.
        lv_item = lv_item + 10.
    *Check weather Availablity check is done or not.
        read table lt_nd_schedule_lines into ls_nd_schedule_lines
                           with key matnr = ls_nd_quote_items-matnr.
        if sy-subrc = 0.
          loop at lt_nd_schedule_lines into ls_nd_schedule_lines
                            where matnr = ls_nd_quote_items-matnr
                            and   kwmeng = ls_nd_quote_items-kwmeng.
            lv_sch_line = lv_sch_line + '0001'.
            wa_order_schedule-itm_number         = lv_item.
            wa_order_schedule_inx-itm_number     = lv_item.
            wa_order_schedule-sched_line         = lv_sch_line.
            wa_order_schedule_inx-sched_line     = lv_sch_line.
            wa_order_schedule-req_date           = ls_nd_schedule_lines-delv_date.
            wa_order_schedule_inx-req_date       = c_abap_true.
            wa_order_schedule-req_qty            = ls_nd_schedule_lines-kwmeng.
            wa_order_schedule_inx-req_qty        = c_abap_true.
            wa_order_schedule-SCHED_TYPE         = 'BP'.
            wa_order_schedule_inx-SCHED_TYPE     = 'X'.
            wa_order_schedule-MS_DATE = ls_nd_schedule_lines-delv_date.
            wa_order_schedule_inx-MS_DATE = 'X'.
            wa_order_schedule_inx-updateflag     = 'I'.
            append:wa_order_schedule to  it_order_schedule,
                   wa_order_schedule_inx to it_order_schedule_inx.
            clear:ls_nd_schedule_lines.
          endloop.
        else.
    *If no Availablity check is done,pass the item details to schedule lines.
          lv_sch_line = lv_sch_line + sy-tabix.
          wa_order_schedule-itm_number         = lv_item.
          wa_order_schedule_inx-itm_number     = lv_item.
          wa_order_schedule-sched_line         = lv_sch_line.
          wa_order_schedule_inx-sched_line     = lv_sch_line.
          wa_order_schedule-req_date           = ls_nd_quote_items-delivery_on.
          wa_order_schedule_inx-req_date       = c_abap_true.
          wa_order_schedule-req_qty            = ls_nd_quote_items-kwmeng.
          wa_order_schedule_inx-req_qty        = c_abap_true.
          wa_order_schedule_inx-updateflag     = 'I'.
          append:wa_order_schedule to  it_order_schedule,
                 wa_order_schedule_inx to it_order_schedule_inx.
        endif.
        clear:ls_nd_quote_items,lv_sch_line.
      endloop.
    Max,  the internal table lt_nd_schedule_lines  is containg my schedule lines,if there are no lines in that table i am just passing the default line item details so that the BAPI take care of schdule line for that Line item.
    Could you please help me in figuring the issue?
    Regards,
    Xavier.P

  • Multiple Schedule Lines for Individual Qty in Standard Order

    Hello All,
    I have a Client Requirement to Set up the Standard Order for a Material which will be sold on Single Quantity every Month.
    This will have to occur from the same Order. For this Multiple Schedule Lines are required to be generated as per Monthly Delivery Schedule.
    I know this functionality comes under Scheduling Agreements where we can deliver goods as per confirmed Schedule Lines for the Month.
    But Client Requirement is to set up this functionality in Standard Order Only as setting up scheduling agreements calls for mapping of New Order Types which is not feasible.
    So Can you provide with your valuable Inputs as to whether this can be possible through Standard Order in the system.
    Looking forward to your esteemed reply!!
    Warm Regards,
    Onkar Khedekar

    Dear Onkar:
    If you don't want to use Schedule agreements, you can enter several schedule lines for each item in "Schedule line" tab at  item level.
    Enter in this tab each schedule line per month.
    But be aware which date you enter becuase this requirement will be transfered to MRP.
    Check it and revert.
    Jose Antonio Martinez

  • Adding a new schedule line for a line item using bapi_po_change

    hi experts,
    can i know how to add a new schedule line for a line item using<u> bapi_po_change</u>. what are the parameters that need to be filed. i filled poitem with total quantities and poschedule table with 2 different schedule lines and passing as the parameter.but then i get the error saying item 0000 doesnt exist

    Hi,
    Please check if you have properly populated the following fields in POSCHEDULE:
    PO_ITEM
    SCHED_LINE
    and the other fields required for your schedule line such as delivery date and quantity, etc.
    After that, make sure to properly populate fields in POSCHEDULEX:
    PO_ITEM -> same value as found in POSCHEDULE
    SCHED_LINE -> same value as found in POSCHEDULE
    All other values populated in POSCHEDULE should be ticked as 'X' in POSCHEDULEX.
    Kind Regards,
    Darwin
    Kind Regards,
    Darwin

  • Schedule Line for Make to Order Item.

    Hello
    In make to order scenario,  there are 2 schedule lines for the MTO item in create mode of Order. 0 confirm quantity on the req
    When I save the order, i can see only one schedule line with confirm quantity 0.

    Hi,
    Make-to-order production is controlled by the requirements type. The requirements type is
    determined on the basis of the MRP group and the strategy group in the material master record.
     Create material by specifying item category group as 0001 = Make u2013 to u2013 order (Normal item)
    In MM01 Basic data tab, General item category field [0001] = Make u2013 to u2013 order, 0002 for configurable
    material
    Make u2013 to u2013 order checking group for availability check should be [02] = Individual requirements in Sales:
    General/Plant tab.
     Go to VA01 and raise the sales order by specifying this material that we created in the previous step
    Item category is TAK
    Schedule line category = CP
    Requirement type = KE [Sales order Header  Procurement  Requirement field]
    KE = Individual customer order without consumption
    (For standard items item category group = NORM)
    System determines requirement type 041-order/delivery requirements. This requirement type points requirement
    class where we can control whether the system has to carryout TOR, Availability check, and Product allocation
    functions.
    Hope this helps.
    Regards,

  • To generate Schedule lines for scheduling Agreement when MRP is run.

    Hi,
    Please help advise on my following requirement:
    When I run the MRP for 'Single Item - Multi level' (MD02) for a material, I want MRP to generate delivery schedule lines for that material in Scheduling agreement.
    Please advise as to how i can go about with this.
    Regards,
    Manju

    Hi Manju,
    For this you need to set creation indoactor for planning run in SPRO.
    The path is spro-MM-CBP-Carry out overall maintenance of plant parameters-Click on maintain-give your plant-click on external procurement under planning run-here you can give your option for the schedule line creation.
    Traction code is omi8. Hope this will help you.
    Cheers
    Ravi

  • Schedule Lines for Sales BoM Material

    Hi All,
    When i trying to maintain the multiples schedule lines for the Sales BoM Material(Both Header and Item), system is not allowing to maintain it.Please guide me how to achieve this?

    Hi,
    "Schedule Line allowed" is enabled at Item category. The Requirement is If we have multiple schedule lines for BoM Line Item, we are not able to maintain. Suppose the Order Quantity is 50 Units and we need schedule line of 10 Quantity each month. We are not able to maintain. System takes the complete 50 quantity and do the availability check and proposes the availablity Date. We are not able to maintain different schedules manually.

  • Schedule lines for outbound process

    hi
    can anyone tell me what is schedule lines for outbound process
    thanks

    thanks charlie for your answer can you pl tell me what does it means configured delivery types, item categories and schedule line for outbound processes.
    thanks

  • Schedule lines for schedule agreement

    Hi,
    I need get all schedule lines for schedule agreement (all schedule lines = all visible in tab analysis u2013 all lines for all forecast dlv. sched).
    I check table VBEP and VBEH and I canu2019t find all items.
    Could you help?
    Thanks in advance,
    E

    Hi Manju,
    For this you need to set creation indoactor for planning run in SPRO.
    The path is spro-MM-CBP-Carry out overall maintenance of plant parameters-Click on maintain-give your plant-click on external procurement under planning run-here you can give your option for the schedule line creation.
    Traction code is omi8. Hope this will help you.
    Cheers
    Ravi

  • Unable to enter multiple Schedule lines for BOM material in Sales Order

    Hi All,
    We have a Sales Order where in which we cannot add additional schedule lines for BOM material.
    The schedule lines are greyed out, user was able to add schedule lines earlier.
    I have checked all assignments in VOV6, VOV7 and everything seems to be fine and no changes have been made to item category being used.
    Please provide a solution for this.
    PFB link in which similar situation posted in this community but the final resolution method is not discussed.
    http://scn.sap.com/message/13201504#13201504
    Regards,
    Samiksh

    Hi Samiksh,
    Pls check for that particular customer, only complete delivery allowed(c) is set in the CMR or CMIR. If so, you can't enter multiple schedule lines for that customer.. it would be grayed out in the sales order schedule lines except confirmed line.
    or check the problematic sales order at item level shipping tab if the par del/item is set to 'C'
    With regards
    S.Siva

  • Automatic Schedule Lines for SA

    Dear Gurus,
    Is it possible to create automatic Schedule lines for Subcontracting Scheduling Agreements????
    cheers

    Hi
    It is possible to create SA for item catgory L. No specific configurational setting is required.
    Pls check
    Regards,
    Raman

  • Mapping between Sales Order-Schedule-Line and Delivery-item

    Hi together,
    I want to extend the Datasource 2LIS_12_VCITM (Delivery-number, -item, Order-number,-item is available) by Sales Order Schedule Line.
    Could not find any ERP table (VBEP and LIPS allow a mapping only on item level) for the mapping between Sales Order Schedule Line and Delivery item yet. The use of the extractor 2LIS_12_VCSCL for the extention (e.g. infoset) afterwards is no option.
    Thanks for your help in advance!!
    Assign full points!!
    Sven

    Hi Reddy,
    thanks for your answer.
    I know that I have to add this field.. but the problem is, how to fill this field. I don't know how to map the delivery-item with the schedule line-item.

  • No Schedule Lines for Delivery upto selected date

    Hi,
    I have a scenario for Repairs order. Following are the steps of my scenario:
    1. Create a Repair Order.
    2. Create return delivery to recieve the faulty item.
    3. Create Outbound Delivery to send a loaner item to customer (This item would be returned once the returned item is repaired and sent to customer)
    4. Send the item after repairing.
    5. Receive the loaner item.
    When I am trying to create outbound delivery for Loaner item, i am getting an error "No Schedule Lines for Delivery upto selected date".
    I have checked and verified the schedule line date.
    I have checked for Confirmed Quantity.
    Below are the screenshots. Please let me know how can this issue be resolved.

    Hi,
    With reference of your screens,I can see there is no qty in the field loner hence you are getting issue.
    1.May I know ,why you have checked indicator -Repair?
    because ,you are not going to repair the goods.You are just sending loner items to customer.In this case what is the use of to indicate repair ?.
    Thanks,
    Naren

  • Duplicate records in PO scheduled line for framework order (going for dump)

    Hi all,
    i am creating framework purchase order with item category B. I am assigning external number range for PO. This PO is created with respect to expense PR. i just found there is duplicate records are appearing in schedule line for the same item.
    Then, after i save the PO, it is going for dump & sending some message to SAP inbox that there is duplicate records.
    later i can not find those PO in the system. Please let me know where i am doing mistake ? why duplicate records are appearing in PO scheduled line ?
    Thanks a lot
      pabi

    Hi,
    Once you please debug the particular program with the help of ABAPer. That may resolve your issue. Thanking you

  • Combining AFS schedule lines into one Item

    HI,
    Due to certain reasons the item in an order splits into two schedule lines. When the order is delivered, each schedule line gets copied as separate batch item though they are of the same grid value. Is there a way where we can make the order schedule lines get copied into delivery as a single batch item if they are of the same Grid Value.
    Any help would be appreciated.
    Thanks & Regards,
    Vidya Sagar

    Dear VidyaSagar,
    In sale order - at the item overview screen - you ll be having an indicator named 'No duplicate'.
    If you check this indicator - it won't allow the system to enter double line for a same grid..
    Ex:
    Material:  Qty:   Date:
    XX-38       10      2/2/2009
    XX-38       10      3/2/2009
    If you check that indicator, system will throw a warning message - so that you can change the item to have only one line entry in the sale order which may prevent dual schedule line for same material..
    Another one option is to make use of the order scheduling in sale order..
    If you use the order scheduling S04 - it will change the delivery date of the material according to the division of the products..
    Ex:
    Material:  Division:  Qty:  Req.Dlv Date:
    XX-38       Apparel    10    2-2-2009
    XX-39       Apparel    10    3-2-2009
    If you run the order scheduling(Strategy S04) - it will change the delivery date of both items to 3-3-2009.
    (I assume in your case, you are having more than one schedule lines for a particular item..)
    And one more thing to consider:
    An item in sale order can have more than one schedule line.
    This can happen - if the customer allows partial delivery and on the requested delivery we don't have enough stock to deliver to the customer..
    At the time of ATP run, as per the option you have chosen(one time delivery, Full Qty, System proposal),
    the system will determine the delivery date..
    I am updating the things which I aware about AFS.. Make use of this - if it helps you..
    Thanks,
    Venkatesh.S.P
    Edited by: venkatesh paulraj on Mar 16, 2009 3:51 AM

Maybe you are looking for

  • Safari can't open PDF files?

    My Safari 1.3.1 operating in MacOS 10.3.9 cannot open any PDF files. Whenever I click on a link from which a PDF file can be downloaded, Safari asks me to select an Acrobat application. I do select Acrobat Reader 7.0.7 from my Applications folder, bu

  • To retrieve data from xml datatype

    oracle.sql.OPAQUE@4e1a77 This is the XML data that is stored in the field of oracle XML dataype .So from this oracle.sql.OPAQUE@4e1a77 ..how can i retrieve the actual data

  • MOD OC4J errors in HTTP server Error log

    these errors are continously shown in the error log of HTTP server. and my error rate reaches upto 8% somtimes MOD_OC4J_0145: There is no oc4j process (for destination: home) available to service request. MOD_OC4J_0119: Failed to get an oc4j process

  • How long is the iPad battery last while watching video on YouTube with 3G?

    How long is the iPad2 battery last while watching video on YouTube with 3G?

  • Purchased movie on iPad cannot be transferred?

    Help! I have an iphone, ipad and imac (I am FRUIT).  Most of my stuff is now in the icloud however I haven't yet synced my ipad because it has purchased movies on there from an old Apple ID (pre-marriage email change).  How can I get these movies fro