How is Reqmts calculated in CM01( capacity Planning: Detailed Capacity List.

I believe Reqmts is the difference between the 'To be confirmed' and 'confirmed hours'.
If let suppose standard hours for a part to be manufacture is 100hrs and we have already work 52 hrs off 100hrs then if i go and look up this order in CM01 then the Reqmts should say 48hr (100-52).
But when I am going to CM01 it still saying 100 hours which is not correct. Can some one help me solve this issue

Hi Pankaj,
Once confirmation is done, hours must be deducted and it should show the remaining hours in CM01 based on the below settings in work center/resource in Capacity tab.
Control: Calc. of Remaining Req./Duration After Confirmation
Controls how, after partial confirmations the
Remaining capacity requirement and
Remaining duration in a rescheduling is calculated.
The following are possible:
     Formula-Related: The remaining requirement / remaining duration of a
     partially confirmed operation is determined when the formula defined in the work
     center is evaluated. It is the remaining quantity and not the operation quantity
     that is taken into account after the confirmation.
     Completely for Partial Confirmation: The remaining requirement /
     remaining duration is reduced completely when there is a partial
     confirmation.
     Completely for Final Confirmation: The remaining requirement /
     remaining duration is reduced completely when there is a final confirmation.
     There is no adjustment through partial confirmations.
     Proportional to Service: The remaining requirement / remaining
     duration of a partially-confirmed operation is reduced proportional to the
     service that is assigned to the relevant capacity segment in the work center in
     your record type group.
Dependencies
When there is a final confirmation the remaining capacity requirement of the
operation is always completely reduced.
Please check your settings accordingly.
Thanks.

Similar Messages

  • Capacity planning: detailed capacity list

    Hi,
    How to save layout of capacity planning: detailed capacity list (CM01) after choosing fields in report?
    Rex

    Can you please step on how to save the capaciity list?

  • How do I see my existing tariff plan details online through "My Verizon"?

    How do I see my existing tariff plan (i.e. Outgoing, Incoming, International calling charges per pulse) online through "My Verizon"?

    If you are the Account Owner and logged in as such, you can see your current usage by clicking the blue View Usage button.  To see detailed charges per bill, click the blue  View Bill, then the Charges by Line tab.

  • Capacity Planning vs. Capacity Leveling

    My production facility is looking to divide up our shop floor by work centers.  There are about 20 individual work centers that are composed of 10 people each.  Each material we make is divided up into 3 operations which go through 3 separate work centers.  Each operation has a corresponding work center that it goes through.
    Right now we are unsure which program suits our needs better, Capacity Planning or Capacity Leveling.
    Our goal is to measure each individual work center (not the workers that make up the work center).  Each work center has a specific goal involving the number of materials they can produce, whether or not they reached that goal and by how many.
    In a nutshell, we want to be able to measure how long it took each work center to reach their individual goals by the materials they produce.
    This is all about measuring the individual work centers and how efficient they are.  Our goal is to be able to utilize this data within SAP.
    What is the difference between Capacity Planning and Capacity Leveling, and which would better suit our goals?
    Our production facility is not very complicated and we're looking for something simple and basic within SAP to accomplish these goals.
    All help is appreciated.  What would be your recommendations for this type of situation?

    HI
    Capacity evaluation
    In the capacity evaluation, available capacity and capacity requirements are determined and compared with each other in lists or graphics.
    Capacity leveling
    The objectives of capacity leveling are:
    Optimal capacity commitment
    Selection of appropriate resources
    In most applications, you can use two types of planning table (graphical and tabular versions) to display the capacity situation and to carry out capacity leveling.
    In some applications such as Repetitive Manufacturing (PP-REM) or Sales and Operations Planning (PP-SOP), there are application-specific planning tables for capacity leveling.
    T codes for Capacity Planning
    Work Center view - Capacity Evaluation
    CM01 - Load
    CM02 - Orders
    CM03 - Pool
    CM04 - Backlog
    CM05 - Overload
    Capacity Leveling
    CM21,CM22, CM27,CM28.
    Hope it will help u
    Regards
    Anupam Sharma

  • How to copy billing plan details of main item to all its sub-items...

    In the sales order, we have main item and sub-items. The main item is a project item and it has a billing plan which gets copied from the project. Now the requirement is to copy the same billing plan(of the mainitem) to all its subitems- billing dates, billing type, billing rule, date category, percentage of the amount to be billed, etc. So that when we do billing for this sales order all the items and its sub items are copied in the milestone billing document.
    The billing plan is not at header level since the sales order can have multiple project items and their milestones can differ.
    Please suggest how to acheive this- coping of billing plan details from main item to all the subitems.
    Rds,
    sucmsss

    You can use the enhancement section in include mv45af0f_fplan_aktualisieren_c. In the below code, I am copying milestone lines from previous document, but you could adapt to copy from the higher level item. Copy and pretty print it in ABAP editor.
    ENHANCEMENT 10  ZSD_SALES_DOC1.    "active version * Generate Billing Plan without dialog. * Because copy control does not work with milestone billing plans, we need to perform the below tricks.
      DATA: zlt_fplt TYPE TABLE OF fpltvb,         zlt_fpla TYPE TABLE OF fplavb,         zlv_fareg TYPE tfpla-fareg,         zlv_fplnr TYPE fplnr,         zls_vbkd TYPE vbkd.   FIELD-SYMBOLS:TYPE vbkdvb,                 TYPE fplavb,                 TYPE fpltvb,                 TYPE fpltvb.
    IF xvbkd-updkz = chari AND       tvap-fpart IS NOT INITIAL AND *      xfplt[] IS INITIAL AND       vbkd-fplnr IS INITIAL AND "bill plan not created       vbak-vbtyp CA 'CG'. "contracts and orders       SELECT SINGLE fareg FROM tfpla INTO zlv_fareg WHERE         fpart = tvap-fpart.         IF zlv_fareg IS NOT INITIAL AND           zlv_fareg <> '6'.         READ TABLE cvbkd ASSIGNINGWITH KEY         vbeln = vbap-vgbel         posnr = vbap-vgpos.         IF sy-subrc IS INITIAL.           CALL FUNCTION 'BILLING_SCHEDULE_READ'             EXPORTING              fplnr          =-fplnr             tables              ZFPLA          = zlt_fpla              zfplt          = zlt_fplt. * Check if any of the lines are not periodic and not from milestone before proceeding.            READ TABLE zlt_fplt ASSIGNINGWITH KEY            MLSTN = abap_false            nfdat = 0.          IF sy-subrc IS INITIAL.           CONCATENATE '$000' vbap-posnr INTO zlv_fplnr.           ENDIF.         ENDIF.         IF sy-subrc IS INITIAL.           LOOP AT zlt_fplt ASSIGNINGWHERE             mlstn = abap_false.            -fplnr = zlv_fplnr.             APPENDTO xfplt.            -updkz = chari.           ENDLOOP.           LOOP AT zlt_fpla ASSIGNING.            -fplnr = zlv_fplnr.             CLEAR-vbeln.            -updkz = chari.             APPENDTO xfpla.           ENDLOOP.           da_fplnr =-fplnr.         ENDIF.       ENDIF.     ENDIF.     CALL FUNCTION 'BILLING_SCHEDULE_GENERATE'          EXPORTING               I_FKDAT        = VBKD-FKDAT               I_FPLNR        = DA_FPLNR               I_WAERS        = VBAK-WAERK               I_FPART        = TVAP-FPART               I_VEDA         = XVEDA               I_VEDA_KOPF    = VEDAVB               I_UPD_FPLA     = UPD_FPLA               I_UPD_FPLT     = UPD_FPLT               I_KOMK         = TKOMK               I_KOMP         = TKOMP               I_KOMPAX       = KOMPAX               I_FKREL        = VBAP-FKREL               I_CREATE_DATES = US_FLG_CREATE_DATES               I_KFPLAN       = DA_KFPLAN               I_KFPLNR       = DA_KFPLNR               I_NOMSG        = US_NOMSG               I_ABSAGEN      = DA_ABSAGEN               I_FPLAA        = FPLAA          IMPORTING               E_FPLNR        = XVBKD-FPLNR               E_DATALOSS     = DA_DATALOSS               E_UPD_FPLA     = UPD_FPLA               E_UPD_FPLT     = UPD_FPLT               E_KOMPAX       = KOMPAX          TABLES               FPLA_NEW       = XFPLA               FPLA_OLD       = YFPLA               FPLT_NEW       = XFPLT               FPLT_OLD       = YFPLT               I_FPLTS        = TFPLTS               I_FPLTNP       = TFPLTNP               I_KOMV         = XKOMV               I_TKOMK        = TKOMK               I_SVBAP        = UVBAP.     LOOP AT zlt_fplt ASSIGNING.       READ TABLE xfplt ASSIGNINGWITH KEY       mandt =-mandt       fplnr =-fplnr       fpltr =-fpltr.       CHECK sy-subrc IS INITIAL.      -updkz = chari.     ENDLOOP. ENDENHANCEMENT.

  • How to use parallel sequence in capacity planning.

    How we can use parallel seq in capacity planning?we have two machines which can be run parallel for production ,now how  to distribute capacity load? suppose for the production of 100 km,we required 1000 min when it is produced through only one machine.Now if 2 machines are used simultaneously we required 500 min.How to see this in capacity planning?

    Dear,
    For calculating Available capacity you have options like minimum capacity, normal capacity and maximum capacity. You can select this option in work center-capacity tab for individual capacity category.
    With parallel sequence and with both machines you can select maximum capacity option and plan your capacity.
    Hope this is helpful.
    Regards,
    Prasad

  • Capacity Planning Fields - CM01

    Hi guys,
    I need help on getting some information from SAP.
    I have a request for a report that need the Availability Capacity for Machines.
    This information can be found in T-Code CM01.
    See below the result of the transaction:
    Week Requirements AvailCap. CapLoad RemAvailCap Unit
    23.2009 0.00 67.86 0 % 67.86 H
    24.2009 0.00 105.30 0 % 105.30 H
    25.2009 0.00 105.30 0 % 105.30 H
    26.2009 0.00 105.30 0 % 105.30 H
    27.2009 0.00 105.30 0 % 105.30 H
    28.2009 0.00 105.30 0 % 105.30 H
    29.2009 0.00 105.30 0 % 105.30 H
    30.2009 0.00 105.30 0 % 105.30 H
    31.2009 0.00 105.30 0 % 105.30 H
    Total >>> 0.00 910.26 0 % 910.26 H
    The field I need is the one that says AvailCap.
    I have debuged the program lots of times... have found a bunch of function modules but can't figure out how this is calculated.
    Can any one help? Pleeeeeeeeeeeease!
    Have any of you used this before?
    Thanks a lot and regards,
    Fernanda

    Hi,
    The available capacity can be find from the work center.
    In CR03 transaction enter the work center & plant. Goto the capacity tab page & click the capacity header (displayed in the bottom). Now click intervals & shift button.
    Now check the valid from & To dates & then select the required date range & see the value displayed in the capacity column. For Eg: if for a day the working hours is 8 Hr & capacity utitlisation is 100 % & Number of individual capcity is 1, then the avaialable capacity is 8 hours per day & for a week of 5 working day the available capacity will be 40 hours.
    In number of individual capacity is 2 then the available capacity will be 80 Hrs.
    Regards,
    Senthilkumar

  • Maintenance Work Center : Capacity Planning CM01

    Hello Gurus,
    We are using T-code CM01 to determine the Requirements / RemAvailCap of the Maintenance Work Orders in a given Maintenance Work Center.
    After executing CM01, the detail capacity list contains Not Scheduled orders( CRTD )and  capacity of these not Released orders also taking into consider.
    How to restrict CM01 Order selection based on the work order System status or User status ?
    I found below discussions on SCN but couldn't get precise answere.
    Plant Maintenance: Capacity planning CM01/ CM07
    Configuring profiles in CAPACITY PLANNING (CM07)
    Please help.
    Thanks in Advance
    Ashok M

    There are a few ways:
    Create a new status profile via BS42 and assign the REL status only (see image 1). Then in the CM01 display screen, use menu path: Planning->Selection->Order and enter the status profile created above (see image 2)
    Create a new selection combination via OAP0. In the CM01 display screen, use menu path: Planning->Selection->Combination and enter the selection combination created above (see image 3)
    The above settings can then be defaulted via the various capacity planning profiles.

  • Maintaining work center list in Capacity Planning: Selection List in CM01

    Hi,
    Where can find the config route in SPRO for maintain work center into the Capacity Planning: Selection List in CM01?
    Thanks a lot!
    Min

    Mandy,
    Couple of combinations you should check,
    1. First try to identify "Selection Profile" which is used. In "CM01" go to menu Planning->Profiles->Selection Profile.
    2.Check the defination of this profile using transaction "OPA2". Here you need to look for "Work center Set" which is assigned.
    3. Now look at the defination of the workcenter set using transaction "CMS3", here is were we define as how the list is to be fetched.
    Hope this helps....Reward your points and close the thread if so,
    Regards,
    Prasobh

  • How to go about capacity planning for storage ?

    Hi Experts,
    How to go about Capacity Planning? For  instance if clients wants to upgrade to new server and new storage and asks us how much additional storage do you need for next 5 years, how can calculate the amount of storage.
    I don't have any baseline info about the server of past years. Where can I start and any scripts you guys use for doing capacity planning?
    Appreciate your help.
    Thank you.
    Sam

    Please see this link:
    SQLAuthority News – Storage and SQL Server Capacity Planning and configuration...
    T-SQL Articles
    T-SQL e-book by TechNet Wiki Community
    T-SQL blog

  • Plant Maintenance: Capacity planning CM01/ CM07

    Hi
    In capacity planning CM01, the standard sap shows all the maintenance orders which have system status created. But we would like to look at onlly the released pm order in the standard overview list and detailed capacity list. Please let me know if there is way we can configure it.
    Thanks

    Hi Nayan202,
    You could configure desired "selection set" T.code "CSM1" and then assign this to appropriate "Selection Profile" under initial set.
    Hope this helps.
    Shahnawaz

  • CM01 / capacity planning / generate graphic automatically ?

    Hello experts,
    we have implemented the capacity planning for our production.
    The processes are working fine.
    But I've got the following requirement to solve:
    Is it possible to generate the graphical views from CM01 every day automatically in background jobs and send them to printers or email-accounts (nice to have)?
    Thanks a lot for your answers.
    Regards
    Markus

    Dear,
    Yes it is possible to generate the graphical views from CM01go toGraphic--standard overview.
    But automatic in background it is not possible.
    Hope clear to you.
    Regards,
    R.Brahmankar

  • How to consider production capacity plan on sales order's delivery date.

    HI experts,
    How to consider production capacity  on sales order's delivery date.
    Say for example :
    Production workcenter capacity to produce the XYZ material 10qty in a Day.
    today i have created the sales order XYZ materail qty of 100. lead days has give based of MMR 21 days 17-07-2010( 3 sundays)
    and in same day i have created other sales order XYZ material qty 5000 ,the lead days again it will came 17-07-2010.
    Now my client requiremnt is when the schedule days is confirming in the sale order it sholud also consider the production capacity planning also
    Even though my work centers are overloaded it is confirming the sales order on 17-07-2010 (based on leads days in MMR)
    Thanks in Advance..
    Sudha

    Sudha,
    Tell your client he needs to install SCM.  Here, you can use either CTP or MLATP to confirm orders based on production capacity.
    There are a couple of standard workarounds available in R/3. 
    One is to create a constrained forecast for planning materials, consistant with capacity, convert the forecast to PIRs, and then perform ATP against 'Planning' rather than against product, using MRP Strategy 63.
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/a2/4e799a927d11d1800f00c04fadcb73/frameset.htm
    Another method is to leave the Sales orders unconfirmed at original order entry (eg, no lead time).  Run MRP, run capacity levelling, firm the levelled planned orders, and then run BOP (called 'rescheduling' in R/3) against the unconfirmed backlog, with an ATP that considers firmed planned orders as supply elements.  The sales orders will confirm against the planned orders, which are scheduled according to available capacity.
    Either of these two methods will work, but the CTP SCM solution is by far the better answer.  Downside of SCM solution in general is the substantial implementation effort required.
    Rgds,
    DB49

  • Capacity planning CM01 not displaying PM Order capacity

    Hi experts,
    I have created one order with the work center and defined operations...... but i am not able to see the CAPACITY REQUIREMENTS in the capacity planning (CM01)............
    Please suggest me what should  i do for this.............

    Hi Maheswaran,
    Thanks for the information , in configuration "Capacity Requirement Planning" have been maintained and now i am getting the CAPACITY REQUIREMENTS and CAP. LOAD also .........................but there is one problem i.e. when i am seeing the capacity planning (CM01) , IT IS NOT SHOWING THE VALUES ON THE DAY WHICH IS WORKING actually according to factory calendar FRIDAY and SATURDAY are holiday, but it is showing the value on SATURDAY and not showing the value on THURSDAY that is today........Please see the screen shot also......
    what should i do.......

  • How OEM 12C implement capacity planning?

    HI
    This whole area of capacity planning is an issue we have heard many times from customers.
    OEM 12C can provide a solution to capacity planning, Right? How do it? for I don’t find this from OEM 12C menu.
    Can you kindly explain this in OEM 12C?
    Thanks a lot!!

    Hi,
    EM12c has Consolidation Planner functionality, I'm not aware of built in capacity planning capability. Is Consolidation Planner what you are interested in?
    Regards,
    Lajos

Maybe you are looking for

  • I "restored" my itunes library after erase/reinstall and now I can't play them.

    This is a continuing issue from last weeks question:https://discussions.apple.com/thread/4176309 I now get this message: "The song could not be used because the original file could not be found. Would you like to locate it?" So, I click yes and it ca

  • Picture tiling, pixilation and freezing

    We called Comcast for the same problem after two calls to support and multiple steps scheduled a tech. Tech came told us TV shot needed a new one. At the time we couldn't get some channels at all - others with these issues. Husband came home turned o

  • Menu selection issues in Flash CS4 for Mac

    I'm having a few menu selection issues in Flash. It seems some fields are de-selecting automatically (and quickly). For instance: 1) When I double-click a layer to change it's name, it highlights then immediately de-selects. I can only rename by righ

  • Load webpage in Flex extension for InDesign

    Hi All, I am implementing an extension for InDesign CS6 and CC using Flash Builder 4.6, Ext Builder 2.1. The panel reads a text file which contains the url of a webpage and renders it in an HTML control.. It is working with most urls.. But sometimes

  • Installation Photoshop Lightroom 5 Student/Teacher

    Hallo Zusammen, ich habe vor mir Adobe Photoshop Lightroom 5 in der Student and Teacher Version anzuschaffen. Nachdem ich die Anforderungen für die Student and Teacher Version durchgelesen habe, bin ich darauf gestoßen, dass diese Version immer nur a