Schedule line number determination - Schedule line category CP(MRP)

Hello All,
I want to know on what basis schedule line numbers getting determined.
Schedule line category: CP-MRP
Sales order line items getting confirmed based on the Planned order--> production order created through MRP run.
I have created sales order line item 1 with 100 quantities. for example I created today. RDD also today.
3 production order created.
Those production orders confirmation date as below.
Production order 1 - 60 quantities - 14.04.2014
Production order 2 - 30 quantities - 16.04.2014
Production order 3: 10 quantities - 18.02.2014.
There are four schedule lines for the line item 1.
All the 4 lines showed as per the confirmation date order.
But the schedule line numbers are not as per the above order.
For example,
Schedule line number   ----- delivery date ----- Confirmed qty
1.                                         09.04.2014            0
3.                                         14.04.2014            60
2                                          16.04.2014           30
4                                          18.04.2014            10
On what basis this schedule numbers getting determined? Is there any standard procedure ?
Why schedule line numbers not inline with the confirmed date?
Let me know if you need more information.
Thank you.
Regards,
Rakkimuthu C

Hi,
Schedule line number is the number that uniquely identifies the schedule line .
Use 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.
Note 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.
The schedule line number will get created automatically by the system. I hope this will clarify your doubt. Thanking you.

Similar Messages

  • How can I put line number into JTextPane?

    Most editors has ability that shows line numbers begining of each lines.
    The line number doesn't effect any content in the editor, however.
    I'm using JTextPane for editor, and I want to show line number for each line.
    How can I do this?

    have a look at
    http://forum.java.sun.com/thread.jsp?forum=57&thread=258176
    ?

  • OracleSOA - File Adapter - Correct mechanism to get the line number from the file

    We are using Oracle SOA process to read data from a file, process the data and write it to the database. SOA process is created using Oracle File Adapter to read the data, Oracle BPEL to transform & process the data and Oracle DB Adapter to write the data into the database.
    Oracle File Adapter uses native schema to process the fixed length data in the file. The number of rows in the file may exceed more than 500,000, to support processing of large files we use chunk size in the file adapter as 4000 rows. In each read operation, file adapter reads the data that matches to the schema, there might be few rejected rows as well.
    Oracle File Adapter property - jca.file.LineNumber gives me only the line number till what line the data is read. Is there any way to get the line number in the xml message, which exactly matches to the line number in the file.?
    Flat File Format: (Every file has one header, trailer and multiple data lines),
    HEADER02 -
    L01
    L01
    L01
    TRAILER02
    Line number is one of the crucial requirement in the development of the SOA service, this is used to back trace the information from which source and line the data has come.

    Hi Anshul,
    Thanks for sharing your thoughts.
    I am using DB adapter to insert the data into db.
    While doing the xsl transformation I can get the index of the message using position(), but that is not the correct way as there can be rejected lines by the file adapter.
    Even if I maintain a local counter variable, it will not consider rejected lines and increment that, which is not correct.
    Thanks,
    Ravindra

  • How to read a file starting from certain line number

    Hi there
    I need to read a large text file line by line. The user will have the ability to stop at any time and run the application to resume reading and processing. For example, if the user stops at line 350, next time when the user run the application, I want him to be able to start with line 351. I am using BufferedReader to read the file. What should I do enable to read the file starting certain line number? Each line in the text file is not equal in length, so I can not control by bytes ...
    Thanks!

    Since you can't count bytes, there's no way of knowing where to jump except actually reading trough all those preceding lines. (You don't have to store them, though.)
    for(int linenum=0, linenum<jumpTo; ++linenum) {
        reader.readLine();
    }

  • PLD: Grouping Item description: Line number is not sequential

    Hi All,
    I am facing a typical problem.
    I have invoice PLD where I am grouping item description and other details like price and tax. Which is working correctly.
    However Line number is also getting grouped.
    ex  line 1(sl No) : xyz (item description)
          line 10(Sl No) :abc (item description) where in correct line number should be "line 2"
    Please let me know how can we solve this.
    Thanks In advance
    Regards,
    Aditya

    Thanks Fasolis,
    But I have added a column Linenum() both in repitative area and repitative footer where grouping is done.
    the value it retrieves is not sequential since grouping is done. That is the problem, the Field Linenum() gives the output like 1, 15, 55 etc.. based on the starting of line of the item description from transaction which is grouped in PLD.
    To be more clear example: there are 2 item codes with same description which is being grouped in PLD.
    In transaction,
    Line 1: itemcode 01: item name A Quantity: 3
    Line 2: Itemcode 02: item name A Quantity: 5
    Line 3: Itemcode 03: item name B Quantity: 10
    Line 4: Itemcode 04: Item name B Quantity: 15
    So in PLD
    Line 1: Item name A Quantity 8
    Line 3: Item name B Quantity 25
    Desired result should be
    Line 1: Item name A Quantity :8
    Line 2: Item name B Quantity : 25
    Regards,
    Aditya
    Edited by: Aditya Rao on Mar 7, 2012 10:10 AM
    Edited by: Aditya Rao on Mar 7, 2012 10:35 AM
    Edited by: Aditya Rao on Mar 7, 2012 12:48 PM

  • How to assign Line Number for Lines when click on Add More Lines

    Hello All,
    Kindly help me to assign line number for the lines which are added through Add More Lines button on an Advance table. If user clicks on the button Add More Lines then there are 5 lines get inserted at a time but I am not able to handle the line number for them.
    Similarly, if user delete any of the line then I need to re-order them.
    Kindly help and share if there is any sample code.
    Thanks,
    Sandy

    Hi,
    Check if this link helps you :
    Re: How to display serial numbers in the results table region
    --Sushant                                                                                                                                                                                                                                                           

  • When saving to a text file how do i add in each line a text like: Line 1: then next line: Line 2: ?

    I tried this way:
    int countitems = 0;
    private void SaveToListView()
    listView1.BeginInvoke(new MethodInvoker(delegate
    using (StreamWriter sw = new StreamWriter(@"c:\listviewfile\databaseEN.txt"))
    foreach (ListViewItem item in listView1.Items)
    countitems++;
    sw.WriteLine("Line Number " + countitems + ": " + item.Text);
    for (int i = 1; i < item.SubItems.Count; i++)
    sw.WriteLine("Line Number " + (countitems + 1) + ": " + item.SubItems[i].Text);
    What i get is:
    Line Number 1: הכרויות
    Line Number 2: 93
    Line Number 2:
    Line Number 2: הכרויות לגילאי 30+
    Line Number 3: 1365
    Line Number 3:
    Line Number 3: אהבה ורומנטיקה
    Line Number 4: 214
    Line Number 4:
    Line Number 4: א-מיניים
    Line Number 5: 1493
    Line Number 5:
    Line Number 5: בינו לבינה
    Line Number 6: 30
    Line Number 6:
    Line Number 6: זוגות מעורבים
    Line Number 7: 257
    Line Number 7:
    Line Number 7: זוגיות במשבר
    And what i want to get is the first line to be 1 the next line 2 then 3 4 5 6 7...
    And the lines that are empty to remove them.
    For example Line Number 6:
    Should be empty and should be removed.

    for (int i = 1; i < item.SubItems.Count; i++)
    if(item.SubItems[i].Text != "")
    countitems++;
    sw.WriteLine("Line Number " + (countitems) + ": " + item.SubItems[i].Text);

  • Determination of Item category and Schedule line category

    Hi,
    I am fresher being trained in SAP-SD.I am confused with determination of Item and schedule line category. Pls help me
    How is item and schedule line category is determined. Should it be done by us or by the system. pls explain it in a low level.

    hello,
    these are very basic question and can solved if you search over the net or ask your instructor to recommend any book.
    coming to your question
    item category determination  in sales document is done via following rule
    sales document typeitem categorygroupusage+higher level item cat=item cat det in sales doc
    OR                              +       NORM                                                              =TAN
    SCHEDULE LINE CAT determination  in ITEM OF A sales document is done via following rule
    item category+mrp type=schedule line category
    TAN               +PD          =CP
    revert if helpful
    Mohit Singh

  • Schedule lines confirmation based on item category(TAN and TANN)

    Hi All,
    We have a problem with the schedule line confirmation in the standard sales order. Suppose if I give the item category as TAN, the schedule lines are confirmed for that line item. If I change the item category from TAN to TANN, then there is no confirmation of the material(No confirmed schedule lines).
    How Item categories influence the schedule lines? Are schedule lines also depend on customer?
    Thanks & Regards,
    Pranil.

    Hi Pranil,
    When you change Item Category then most likely in your case Schedule Line Category is also getting redetermined.
    Schedule Line category is determined by the Combination of Item category and MRP Type of Material.
    Hence please check your Schedule Line category after entering new Item category.
    Open VOV6 and check the Schedule Line Category. In that if Item Rel for Delivery Check Box is Unchecked then it means that
    your schedule line will get unconfirmed.
    Do let me know if this helps.
    Regards,
    Madhukar

  • Delivery schedule line number in make to order

    Hi all,
    i am doing make to order scenario with 20 strategy group. In sales order we r defining the different delivery schedule lines.when i run the MRP and getting the plan orders for all the FG material and semifinished material, the sale order number and sale order item number is getting updated in production order . Beside these two , delivery schedule line number is not populated and delivery date is not picking correctly in production order.
    please give your valuable suggestion .
    i would be highly thankful to u
    regards
    piyush

    Hi
    When you do the MRP Run at MD02, maintain the Delivery Schedules as 3 (schedule lines), so when ever you do the MRP Run, it will run along with the delievry date.
    reward if it helps
    Regards
    Prasanna R

  • Delivery schedule line number in sales order is not populated in production

    Hi all,
    i am doing make to order scenario with 20 strategy group. In sales order we r defining the different delivery schedule lines.when i run the MRP and getting the plan orders for all the FG material and semifinished material, the sale order number and sale order item number is getting updated in production order . Beside these two , delivery schedule line number is not populated in production order.
    please give your valuable suggestion .
    i would be highly thankful to u
    Will reward points.
    Regards
    Kumaraguru

    Hi Kumar,
    Some changes done in your PRD server.If yes then contact abap consultant regarding the same.
    Because these type of problem comes when you do transport or changes done in the system.
    Regards,
    Anil

  • Delivery schedule line number in sales order is not populated  in productio

    Hi all,
    i am doing make to order scenario with 20 strategy group. In sales order we r defining the different delivery schedule lines.when i run the MRP and getting the plan orders for all the FG material and semifinished material, the sale order number and sale order item number is getting updated in production order . Beside these two , delivery schedule line number is not populated in production order.
    please give your valuable suggestion .
    i would be highly thankful to u
    Regards
    Kumaraguru

    Hi Kumar,
    Some changes done in your PRD server.If yes then contact abap consultant regarding the same.
    Because these type of problem comes when you do transport or changes done in the system.
    Regards,
    Anil

  • Link between schedule Line Number and Delivery

    Is there a link between Schedule line Number and Delivery number ?
    Eg. Line item 10 with quantity 100. 
    has 5 schedule lines..with 5 different delivery dates.
    1 .  quanity 40
    2.   quantity 30
    3.   quantity 20
    4.   quanity  6
    5    quantity  4
    For schedule line 1, 2 deliveries were created,
    one      with quantity 20
    another with quantity 15
    quantity 5 is still not delivered.
    also schedule lines 2,3,4 and 5 are fully delivered.
    Is there any table, FM etc in SAP which will give me the link between the schedule line and delivery number ?
    Total deliveries created : 6. - But which delivery corresponds to which schedule line ?
    Please dont tell me to look VGBEL and VGPOS.. that will just give line item number 10.. I need to get the schedule line number.
    Also, RV_SCHEDULE_CHECK_DELIVERIES --> will give me the delivered quantity against each schedule line.
    My purpose is to create an ontime delivery report .
    a report which list each schedule lines, and tell, how many shipments were late/ontime/early etc..
    and for Late ones, how many days late has to be found.
    this is where i need the delivery.
    No. Of days Late = Actual GI Date - Planned GI Date.
    Actual GI date is in the delivery.
    Any suggestions ?
    Thank you in advance.

    Hi,
    Check in the below link.
    relation between VBEP-ETENR and LIKP-VBELN
    Thanks,
    Sree.

  • Ignore the number of schedule lines in sale order item when run MRP

    Dear All,
    I have a problem when I create production order (discrete manufacturing)
    When I create a sale order with one sale order item and 3 schedule lines for this sale order item.
    After that, I run MRP for this sale order, what I get is 3 planned orders for 3 schedule lines. It means that I will have 3 production orders for 1 sale order item.
    I want  create one production order for one sale order item whatever the number of schedule lines in sale order item.
    I think I have to config in MRP. Please help me.
    Thanks in advance

    Dear
    Check in OPPQ then look in Master data Availability Check & strategy for material also check whether u have maintained strategy for same material and see did u extended sales views for other material
    As u said 3 schedule lines for this sale order item check whether u have extended sales views for next material
    With Regards
    Pushpalas

  • BAPI_SALESORDER_CHANGE.: Schedule Line number

    Dear All ,
    When ever I change Quantity using BAPI new Schedule Line number is generated Although I have used
    Update Flag as U .
    and then quantity filed is not editable
    Can any one help .

    Hi Srinivas,
    I tried the above solution. But I still have the same issue of adding/summing the updated quantity to the order quantity. I see the rows getting added in schedule line each time I updated the quantity.
    Here is my code.
      ls_schedule_lines-itm_number = ls_request_input_data-itm_number.
      ls_schedule_lines-sched_line  = '1'.
      ls_schedule_lines-req_qty = ls_request_input_data-target_qty.
      ls_schedule_lines-date_type  = '1'.
      APPEND ls_schedule_lines TO schedule_lines.
      CLEAR ls_schedule_lines.
      ls_schedule_linesx-itm_number = ls_request_input_data-itm_number.
      ls_schedule_linesx-sched_line  = '1'.
      ls_schedule_linesx-UPDATEFLAG = 'U'.
      ls_schedule_linesx-req_qty = 'X'.
      APPEND ls_schedule_linesx TO schedule_linesx.
      CLEAR ls_schedule_linesx .

Maybe you are looking for

  • Custom Swatch Edit

    Can someone tell me how to edit a custom swatch. Not a color swatch but a graphic swatch.

  • How to create variant for HIER reports

    Hello, I have to run program RKDBAT02(Background Processing for Drilldown Reports) from a FM that i created. i have to run this program with a variant that i need to update with the values from my FM. My problem is tha I am trying to use the regular

  • Table cell progress indicator

    I see in the JavaFX 2.2 API that there is a table cell implementation for rendering a progress bar. However, it appears that this only supports the progress indicator that takes an incremental update value (as a double, presumably a value between 0 a

  • ECM revision level in material master record

    Hi experts I need to remove the last revision-number (REVLV) in a a material master record. The ECM is not relesead and we have used tcode MM02. I have seen that the tcode CCUNDO check the planned changes with tcode MM12. Thx in advance Marco

  • Dynamic Disks

    I need some clarification on dynamic disks.  I'll break it down to a few questions: Can dynamic disks be used with an MBR partition style?  How many partitions can be created this way? Can a dynamic disk be a boot or system partition?  If so can it b