Demand for Partial Schedule line not showing in MD04?

Hi All,
An SO with around 1200 line items, having problem with one line item, ordered qty is 20. Shipped a partial line of 6qty.Schedule line was showing order qty of 20, confirmed qty 6 but no second schedule line for the balance of 14 and the demand for the open qty 14 is not reflected in MD04. Tried manually and also manually running MRP for the item but neitger created a second line or triggered the demand to show in MD04.
Thanks in Advance.
Thankyou and Regards
Hatti.

Try creating the schedule line in the order and then running MRP for the demand to show in your stock requirements.

Similar Messages

  • Schedule agreement not showing in MD04

    Hi All
    We have a schedule agreement created and its not reflecting in MD04. According to the thread i changed the avl check to 02.
    But its still not showing in MD04. So my question is do I have to do any other thing so that the avl chk change will get affected for same schedule agrmnt or I have to create a new one so that it will show in MD04.
    Thank You.

    First you need to identify what schedule line category is flowing in your sale order.  Normally, this would be CP.  So next go to VOV6, select the schedule line category and execute.  There tick the box for "Req./Assembly"
    thanks
    G. Lakshmipathi

  • Sales order Schedule line not showing in prod. order

    Hi
    I am using Make-to-order production. In my production order i can able to see the sales order number, item number but not able to see the schedule line number. It is showing zero. But in table VBEP table when i checked, system gives the sales order number (eg.1511632), item number  (10) and schedule line number (0001).
    Why in production order screen and AFPO table i am not getting schedule line number(field name-KDEIN).
    Regards
    Ganesh M

    Hi,
    When an item has more than one schedule line, the system automatically assigns a unique number to each line. The number is displayed in the details screens for schedule lines.  The schedule line number serves internal purposes and does not, for
    example, determine the sequence of schedule lines in the overview screen. The schedule lines on the overview screen are sorted by date.
    Please go to Sale order view from MD04, Click on Item no. and go to schedule line tab page, now you can see the line items and if you want to see in detail click each line item, it will show line item number clearly.
    Regards,
    Santhamoorthy

  • Schedule Lines not confirmed for Consignment Fillup

    Hi
    I created Consignment Fillup, Schedule lines are not confirmed, even though stock is available in MMBE.
    Material per batch stock is available
    Help me out in this issue
    Regrds
    Srinivas

    Check what schedule line category is flowing.  I believe it should have been E1 and in VOV6, for this schedule line category, the box "Availability" is checked.  Next go to material master and check whether the availability check is either 01 or 02 is maintained.
    G. Lakshmipathi

  • How to know - For a schedule line if delivery is already created

    Hi Gurus,
    I have a sales order with one line item - 10.
    For the line item 10 ,  I have 2 schedule lines.
    How can we know if delivery is created for a schedule line.
    Which table we need to refer ? VBEP !!!
    Please help.
    Regards
    Avinash.

    Hi,
    There is no way to check that but you can check the status of sales order line itam is delivered or not in table VBUP
    and filed RFGSA.
                   Not Relevant
    A     Not yet processed
    B     Partially processed
    C     Completely processed
    Thanks.

  • Schedule lines not generated after MRP run

    Dear All,
    I am trying to create Schedule lines through MRP run , but instead system creates MRP element PRqRel  and its PurRqs when i check in MD04 ,  the following are the prerequisite i done before MRP run , but still Schedule lines are not generating.
    1.activated checkbox source list in material master.,Procurement type is F, MRP type PD , lot size MB , marked JIT  Scheduling indicator as 1 in Pur view of material master , no MRP group is used in our process.
    2.Maintained Inforecord.
    3.Maintained source list for the material and marked MRP relevant as 2. Validity also checked.
    4. Quota arrangement for this vendor only.
    5. Created New scheduling agreement.
    6. Material is not sent for subcontracting.
    7. Ran  MD02 with following parameters ,
    Processing key NETCH Net Change in Total Horizon
    Create purchase req. 1 Purchase requisitions in opening period
    Delivery schedules 3 Schedule lines
    Create MRP list 1 MRP list
    Planning mode 3 Adapt planning data (normal mode)
    Please let me know if i am missing something
    Thanks in Advance
    Benny

    Hi,
    Please check the below links...
    Schedule Lines not getting created in MRP
    Schedule Lines not generated for MRP Type PD
    Kuber

  • Order schedule lines not created using BAPI_SALESORDER_CREATEFROMDAT2

    Hi experts,
      I am creating sales order using BAPI_SALESORDER_CREATEFROMDAT2. I want to update the Order quantity in VBAP-KWMENG.I got the information from SDN when including the Schedule line in BAPI 'BAPI_SALESORDER_CREATEFROMDAT2  '.
      I tried by using Update flag = 'I'.I am not able to update, what are the values to be passed and how to update the field.
    Is there any other way..Please suggest me..
    Thanks&Regards,
    Karthik.

    Hi, In the BAPI if you look at the tables parameter you will find ORDER_ITEMS_IN and ORDER_ITEMS_INX as well as ORDER_SCHEDULES_IN and ORDER_SCHEDULES_INX. To update KWMENG you will have to pass that value to ORDER_ITEMS_IN-TARGET_QTY and update the same in the table ORDER_ITEMS_INX (ORDER_ITEMS_INX-TARGET_QTY) with 'X'.
    For updating schedule line go for ORDER_SCHEDULES_IN-SCHED_LINE and update X for the same in ORDER_SCHEDULES_INX.
    Try looking into the following code, I am filling in both the Item data as well as the Schedule line data.
      loop at t_mdata into fs_mdata.
        fs_item-itm_number  = fs_mdata-posnr.
        fs_itemx-itm_number = c_flag.
        fs_item-material    = fs_mdata-matnr.
        fs_itemx-material   = c_flag.
        fs_item-target_qty  = fs_mdata-kwmeng.
        fs_itemx-target_qty = c_flag.
        fs_item-item_categ  = fs_mdata-pstyv.
        fs_itemx-item_categ = c_flag.
        fs_itemx-updateflag = c_flag.
          APPEND fs_item TO t_item.
          APPEND fs_itemx TO t_itemx.
        fs_sline-ITM_NUMBER  = fs_mdata-posnr.
        fs_slinex-ITM_NUMBER = c_flag.
        fs_sline-SCHED_LINE  = c_sline.
        fs_slinex-SCHED_LINE = c_flag.
        fs_sline-REQ_QTY     = fs_mdata-kwmeng.
        fs_slinex-REQ_QTY    = c_flag.
          APPEND fs_sline TO t_sline.
          APPEND fs_slinex TO t_slinex.
      endloop.                             " Loop t_mdata
    c_flag contains 'X'.
    fs_item is of structure ORDER_ITEMS_IN.
    fs_sline is of structure ORDER_SCHEDULES_IN.

  • Delivered quantity for each schedule line

    Hi,
    Our scenario is that we have an order for each order's each item we can have multiple schedule lines, when any of the schedule line is delivered the delivered quantity colum is updated, the schedule lines table in VBEP but the thing is it doesnot have the delivered quantity, system calculates it at runtime or may be it is keeping it in some other table.
    I hope some body can help in this regard.
    Thanks
    Khusro Habib

    It is a calculated value, not a value of a table field. Also, it may lead to wrong results if you don't pay attention to this description of the field here under in bold.
    Delivered quantity in sales units
    The quantity from the schedule line that has already
    been delivered.
    Use
    When there is more than one schedule line for an item,
    the system distributes the total delivered quantity for
    the item across the schedule lines according to the
    sequence of their delivery.
    Example
    A sales order item has three schedule lines, each with
    an order quantity of 50 pieces. You make two subsequent
    deliveries: the first for 20 pieces, the second for 60
    pieces. The delivered quantity for the first schedule
    line is 50 pieces, for the second 30 pieces, and for the
    third zero.
    If you delete the first delivery (20 pieces), the
    delivered quantity for this schedule line is still 50
    pieces. However, the system reduces the delivered
    quantity for the second schedule line to 10 pieces.

  • Split delivery for each schedule line

    Hi,
    We have a requirement to split deliveries for each schedule line in the order.
    For example: I have an order with one line item which has 2 schedule lines. If the schedule line date on one is 01/29 & the other is on 01/31, and the delivery due list VL10A is run with a range 01/29 - 01/31, it picks both the schedule line & combines them into one delivery.
    Is there a way by which we can force them to create 2 different deliveries (as it would if the delivery due list was run for each day at a time).
    We created a data transfer routine (deliveries), and populating ZUKRL with schedule line date & that doesnt solve the problem since the routine is triggered once for each sales order line and not for schedule lines.
    SAP reverted back that this is standard SAP behaviour to cumulate all due schedule lines into one delivery, but I would like to know if anyone has any other solution ?
    Thanks in advance!

    First of all you have to use VL10E to create deliveries, since it creates one delivery item for each schedule line.
    Then play with your own delivery role copied from standard profile 0201:
    you can trigger 3 different flags to reach your goal:
    Cumul. Rule: Rule for calculation of quantity to be delivered
         There is a field that contains a cumulated quantity in delivery lists
         with item or schedule line views. The quantity at which the list line
         (document item or schedule line) is delivered is defined in this field
         when it is selected and the delivery process is started in the
         background. The value is a default and can be changed by manually
         processing the delivery list on the item or schedule line level.
    SplitSchedLine: Rule for creating one delivery item per schedule line
        In a delivery list in item view with multiple schedule lines, you can
        decide for the same document item whether you want to generate one
        delivery item per schedule line or whether you want to deliver the
        cumulated quantity of the last schedule lines selected.
    LimitSchedLine:  Allow constraints on schedule line level
         You can use this indicator to limit selection o
         delivery when
         o   Delivery due date and/or
         o   Planned goods issue date and/or
         o   Route schedule
         does not fall within selection range.
    This should help you to solve your problem.
    pls. reward points if helpful
    Regards
    Roberto

  • Schedule line not getting confirmed despite ATP quantity  available

    Hi friend,
    I have a created a order for which schedule line of a particular material  is not getting confirmed.
    I checked the stock in co09 ATP quantity is available, MD04 has allocated stock to my order.
    In our project specific  scenario storage loc is not determined at order level. I also tried adding storage loc at shipping tab and did re atp but no use.
    My scope of check includes reservations, sales requirement, deliveries.
    If I use another materials which is similar to my above example stcok is getting confirmed but only that particular above material is not getting confirmed.
    Am I missing any thing please suggest.

    hi,
    please check,
    STOCK IS GETTING RESERVED AGAINST THE STORAGE LOCATION or NOT.
    please check and confirm
    balajia

  • I have just upgraded to Mountain Lion and my signatures for my Mail is not showing up. I have the signatures inthe preference panes and selected for the email address, but when I make a new message, the signature shows as none and doesn't give me a choice

    I have just upgraded to Mountain Lion and my signatures for my Mail are not showing up. I have the signatures inthe preference panes and selected for the email address, but when I make a new message, the signature shows as none and doesn't give me a choice. Yesterday, the signatures were stacking instead of switching to the one I wanted to choose.

    I had this and fixed it.
    I had upgraded to Mountain Lion and my signatures in Mail were fine. But then about a week later, I got a new computer and used Migration Assistant to copy my stuff to the new machine. Upon opening Mail, I had all the correct Signature information in the Preferences>Signatures window, but nothing worked.
    After lots of hunting, I found the Signature Folder. It's in:
    Yourusername>Library>Mail>V2>MailData>Signatures
    Looking at my previous setup (which works) I saw in that folder two types of files: .webarchive and .siganture
    Looking in my new machine's Signature folder, I saw only the .webarchive folders, not the .signature folders
    Since this was literally a clone of my previous setup to a new machine, here's what I did:
    1. Quit Mail
    2. In Problem machine, go to
    Yourusername>Library>Mail>V2>MailData>Signatures
    3. Move the Signatures folder someplace safe, but out of the MailData folder
    4. Get the Signatures Folder from the working install (like a backup) and copy it to the MailData folder on the problematic machine
    5. Start Mail on the problem machine
    This worked for me. I don't know why Migration Assistant didn't copy the full signature folder, but this fixed it. It worked perfectly partly because I had just backed up with Carbon Copy Cloner and the very next day set up the new machine. I don't know where Lion or earlier versions of mail stored signatures, but the absence of the .signature filetype seems to be the problem.
    Hope this helps

  • Item Overview Lines not showing in ME21N

    Hi,
    When we run the T.code ME21N, in Item Overview, lines not showing, in which we insert Material number, qty and other details...This is happens from today morning...
    What should be problem... Is there any Configuration Setting...
    Please guide...

    Thanks.... Solved Myself...@

  • Change shipping dates/times for confirmed schedule line

    Hi,
    I am having a problem changing the confirmed schedule line in a Sales Order VA01.
    I have added my code into the user-exit
    *       FORM USEREXIT_MOVE_FIELD_TO_VBEP                              *
    *       This userexit can be used to move some fields into the sales  *
    *       dokument schedule line workaerea VBEP                         *
    *       SVBEP-TABIX = 0:  Create schedule line                        *
    *       SVBEP-TABIX > 0:  Change schedule line                        *
    *       This form is called at the end of form VBEP_FUELLEN.          *
    FORM userexit_move_field_to_vbep.
          vbep-ezeit  = '235900'.
          vbep-wauhr  = '235900'.
          vbep-lduhr  = '235900'.
          vbep-mbuhr  = '235900'.
          vbep-tduhr  = '235900'.
    However, in the above code I manage to only change the first schedule line in case I choose a delivery proposal. I need to change the line with a confirmed quantity. Instead I change only the first shedule line without a confirmed quantity.
    Question: Which user-exit can i use to change shipping times dates for all schedule lines or just confirmed schedule lines?
    Thanx

    Hi,
    Use form routine "USEREXIT_SAVE_DOCUMENT_PREPARE" in MV45AFZZ.  Update VBEP as well as XVBEP Structures.
    Regards
    Vinod

  • I am running Lion 10.7.2 and I have an external drive hooked to my time machine. I can't rename folders and when trying, I get an error code 8076. The checkbox "ignore permissions for this device" does not show on volume info. Help please???

    I am running Lion 10.7.2 and I have an external drive hooked to my time machine. I can't rename folders and when trying, I get an error code 8076. The checkbox "ignore permissions for this device" does not show on volume info. Help please???

    The TIme Machine volume does not have that checkbox.
    I think the issue is with your Finder...
    Go to Finder "Go" menu hold the option key and choose Library. Then go to Preferences trash these files:
    com.apple.finder.plist
    com.apple.sidebarlists.plist
    Then, restart, or log out and in again.
    (You will have to reset a few finder prefs the way you like them.)

  • I have just installed CS5 and my option for installing actions is not showing up,....how do I install them?

    I have just installed CS5 and my option for installing actions is not showing up,....how do I install them?

    I just didn't have my actions palette checked.  Done.  Thanks.

Maybe you are looking for

  • My facebook games, farmville and cafe world, no longer work with Firefox 4.0, why?

    When I try to send gifts or requests for help in either of these games, my friend list will not load. When I use Internet Explorer, they work fine. I did not have this problem when I used the previous version of Firefox. And my older version of Firef

  • About gif and jpg

    who can give me the website about gif and jpg format? thanks guy.

  • Convert PDF to Spool

    Hello, I need to develop a program that reads a PDF file in a server and send it to SAP Spool. I can use UPLOAD function to load it as a binary file, but then how to generate a spool request with this content? I tried class CL_FP_PDF_OBJECT but it se

  • Installing ink cartridges after moving to US fro UK

    Ok, so I see this is not a new problem. How can I get someone at HP to help me regionalise my printer to the US ink from the UK ink. Followed the instructions I've found here so far. 1 have UK ink in printer, 2. Have US ink bought and standing by, 3

  • Lightroom update 5.6 won't install

    lightroom update 5.6 downloads ok but will not install.I get a message saying to try download again.I have done this about 5 times now.HELP