Planned order based capacity planning

Dear Guru's,
Is it possible to view & analyse work load on work centers for planned orders in R/3? Please let us know the settings to be done if needed.
Regards,
SAP CONS

Hi,
Yes it is possible to view and analyze the work load on work centers for planned order..other than standard configuration settings and master data set up no separate settings required for this....still wait for the answers from the other forum experts.
Ensure while doing MRP run  on MRP control parameters use option 2 for scheduling as shown below..
Please check the below link....
SAP的学习和考试 Learning & Examination: ~ CP04 Leveling with Finite Capacity Forward Scheduling
Thanks
Kumar

Similar Messages

  • Creation of SNP planned order based on PDS

    Hi,
    I'm a APO developer and I have the following problem:
    I would like to create a SNP planned order based on a PDS (like e. g. in the planning book when you input a number into a cell in the "Production (Planned)" line).
    Up to now I've only managed to create such an order without using the PDS.
    Can you name me a function module which allowes me to do that?
    Thanks in advance.

    Hi,
    I've now managed to create this kind of order.
    I set a breakpoint at the function module /SAPAPO/DM_PROD_ORDER_CHANGE and checked how it was filled in the planning book.
    For those who want to know:
      INCLUDE /sapapo/constants_om.
      CONSTANTS:
        lc_order_type_1f        TYPE /sapapo/om_order_type VALUE '1F'.
      DATA:
        ls_prod               TYPE /sapapo/msnp_prod,
        lt_prod               TYPE /sapapo/msnp_prod_tab,
        ls_sources            TYPE /sapapo/sources,
        lt_sources            TYPE /sapapo/sources_tab,
        lv_matid              TYPE /sapapo/matid,
        lv_locid              TYPE /sapapo/locid,
        lv_vrsioid            TYPE /sapapo/vrsioid,
        lv_tstfr              TYPE /sapapo/timestamp,
        lv_tstto              TYPE /sapapo/timestamp,
        lv_simsession         TYPE /sapapo/om_simsession.
    lv_vrsioid = '000'.
    * Create SimSession
    CALL FUNCTION '/SAPAPO/TSIM_SIMULATION_CONTRL'
        EXPORTING
          iv_simversion              = lv_vrsioid
          iv_simsession             = lv_simsession
          iv_simsession_method = 'N'
          iv_perform_commit       = space
        EXCEPTIONS
          lc_connect_failed        = 1
          lc_com_error             = 2
          lc_appl_error            = 3
          multi_tasim_registration = 4.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Get PDS
      CALL FUNCTION '/SAPAPO/MSDP_SNP_PPM_VALIDITY'
        EXPORTING
          iv_vrsioid      = lv_vrsioid
          iv_matid        = lv_matid
          iv_locid        = lv_locid
          iv_tstfr        = lv_tstfr
          iv_tstto        = lv_tstto
          iv_planstart    = lv_tstfr
          iv_planend      = lv_tstto
        CHANGING
          ct_sources      = lt_sources
        EXCEPTIONS
          wrong_interface = 1
          error_occured   = 2
          OTHERS          = 3.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      READ TABLE lt_sources INTO ls_sources INDEX 1.
      ls_prod-version       = lv_vrsioid.
      ls_prod-matid         = lv_matid.
      ls_prod-locid         = lv_locid.
      ls_prod-plobid        = '9AMALO'.
      ls_prod-tstmp         = lv_tstfr.
      ls_prod-catgr         = 'PP1'.
      ls_prod-categ         = 'EE'.
      ls_prod-categ_prku    = 'EE'.
      ls_prod-categ_prse    = 'EL'.
      ls_prod-kz_prod       = '9APPROD'.
      ls_prod-kz_prku       = '9APPROD'.
      ls_prod-kz_prse       = '9ADMDSE'.
      ls_prod-produ         = '1000'.
      ls_prod-proid         = ls_sources-trpid.
      ls_prod-mosta         = gc_new.
      ls_prod-order_type    = lc_order_type_1f.
      ls_prod-is_fixed      = 'X'.
      ls_prod-snp_is_header = 'X'.
      APPEND ls_prod TO lt_prod.
      CALL FUNCTION '/SAPAPO/DM_PROD_ORDER_CHANGE'
        EXPORTING
          ic_database           = 'LC'
          ic_application        = '4'
          iv_simsession         = lv_simsession
          it_prod               = lt_prod
          iv_netch              = 'X'
        EXCEPTIONS
          material_not_supplied = 1
          location_not_supplied = 2
          OTHERS                = 3.
    * Merge simulation version (to commit order changes)
      CALL FUNCTION '/SAPAPO/TSIM_SIMULATION_CONTRL'
        EXPORTING
          iv_simversion                = lv_vrsioid
          iv_simsession                = lv_simsession
          iv_simsession_method         = 'M'
        EXCEPTIONS
          lc_connect_failed            = 1
          lc_com_error                 = 2
          lc_appl_error                = 3
          multi_tasim_registration     = 4
          target_deleted_saveas_failed = 5
          OTHERS                       = 6.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.

  • Create Planned order based on qty in APO or SCM

    Hi All,
    I am working product view in APO or SCM system .
    Requirement is create new planned order with sales order individual length and planned order pegged to sales order in APO system.
    Example
    Sales order has  factor 4 and individual length 1000( 4 x 1000 ). Total quantity is 4000M.
    We need to create 4 planned orders. Each Planned order has a quantity of 1000M.
    Please help me and  let me if any function module is there.
    Thank you,
    Durga Vinta

    Hi All,
    Thank you so much for your response.
    I have placed a X pushbutton in product view- > Element tab.
    If the user presses X then screen will display with sales order information based on Factor
    Example Sales order has 4 x 1000 = 4000M
    Factor individual length
    1         1000
    1         1000
    1         1000
    1         1000
    If the user selects the 1st and 2nd and presses save button. We need to create two planned order for sales order. Each planned order has 1000 qty.
    Please let me know if any function module or BAPI in APO system.
    Thank you,
    Durga Vinta
    Edited by: Durga Vinta on Jul 16, 2010 11:38 AM

  • BAPI to create SNP planned order based on start date

    Hi,
    I am looking for a BAPI to create SNP planned order based on the order start date. There is BAPI BAPI_MOSRVAPS_CREATESNPORDER which can be used to create SNP planned order based on the end date but not based on the start date.
    Also would be great if some one can share how do they create SNP Planned orders using BAPI BAPI_MOSRVAPS_CREATESNPORDER in case if GR processing time is defined in the product master and workdays for GR to be respected according to the calendar.
    Regards,
    Venkat

    Hello Mr.Venkat,
    Hope you recognize me.
    Please check out the BAdi below.
    BAdi - APO_BAPI_BUS10503 (this is the BAdi for ManufactOrderAPS  BAPI which contains the SNPorder BAPI)
    Method - CHANGE_SAVEMULTIPLE2
    In this method parameter IT_ORDER_HEAD contains Order start date input option.
    For GR time please check this (not sure if it will help).
    Same BAdi/ same method
    Parameter IV_PLANNING_MODE_USAGE contains field PLANNING_MODE.
    Value 1 for PLANNING_MODE corresponds to "Observance of parameters from the product master".
    This may make it respect the GR time in product master
    Good luck with the above
    Regards,
    Ashok

  • How to select another BOM in Planned Order Based Production Order

    Dear PP GURUS / EXPERTS,
    I am using following Scenario: I have alternate BOM for FG and Maintaining Finished Material with Production Version in MRP4.
    Now, When I run the Forecast based Planning (MP30) and go for Single Item  Multi-Level MRP Run  (MD02 & MD04)  it takes 1st Alternate BOM.
    Now, I create the Planned Order Based Production Order (CO40), but due to some reason - WE WANT TO CHANGE THE BOM. instead of 1st BOM We want to use another BOM For Production.
    How can we achieve this.
    Please Help. THANKS IN ADVANCE.
    DSC

    WE WANT TO CHANGE THE BOM. instead of 1st BOM We want to use another BOM For Production
    create  two production version ( PV)and assign the 1PV 1st  BOm and 2 PV 2nd BOM
    System will create a Plan order for PV 1
    IF you want you can change the Production version 1 to Production version 2  in Planned order itself ( in MD11)
    Or reread the master data for production order by selecting PV 2

  • "CLOSED": HOW TO LOAD FIRM PLANNED ORDERS OF ANOTHER PLAN INTO ASCP PLAN?

    Hi everybody,
    How to load firm planned orders of plan 1 into plan 2?
    Business Case:
    Customer uses a separate planning for order intake. During order intake the requested due date is validated based on ASCP Gantt Chart. Bottlenecks are resolved. For make items firm discrete jobs are created, if adjusted suggested due dates are manually changed. For buy items firm planned orders are created for manually changed suggested due dates.
    If the order is accepted the demand is transferred from the Order Intake MDS into the so called Operational MDS. The firm discrete job will be automatically visible in the operational ASCP Plan (after data collection/running ASCP Plan).
    But how is it possible to include ONLY firm planned orders of another plan into your current plan?
    PLAN1 asigned master demand schedules
    - O_MDS1
    - O_MDS2
    PLAN2 assigned master demand schedules
    - O_MDS1
    - O_MDS2
    - T_MDS
    I want to transfer the firm planned orders from plan2 to plan1.
    Thanks for all your inputs,
    Catalina
    Message was edited by:
    user447176

    Since you need to run a data collection to load the new discrete job, I suggest you to add a custom step in the data collection.
    This custom step will
    1) select all firmed planned order in plan 2
    2) put the firm planned order into a new schedule through staging tables (MST_ST_SUPPLIES) .
    3) collect the data
    Then run plan1 with this schedule defined as demand schedule for your new plan.

  • Change firmed planned order to Unfirm Planned order

    Hi ,
    if we change firmed planned order to unfirm planned order ,is there any effect on WIP and routing changes?
    please respond with an answer.
    Regards
    Rekha
    Edited by: REKHA MAHAJAN on Mar 31, 2008 1:34 PM

    Hi Rekha ,
    planned order Unfirmed -
      will allow automatic changes with respect to requirement
    planned order firmed  -
      Any manual change in the planned order is called firmed
                                                          and will not allow any automatic changes with respect to requirement
    Planned order is just the requirement only there will no change in the WIP .
    for example : you have some requirement say PIR is 50 on 31st march you perform MRP
    by selecting the MRP type so that you will get firmed planned order for 50
    on  1st you have another requirement ( PIR )  for 100  and if you perform MRP again system will create another planned order if this is also firmed . you need to convert manually into production order.
    once planned order is converted into production order and there is no link with either routing or
    workin process with planned order and is meant for only open production orders . You can convert all the planned orders collectively also
    if any doubt come back
    regards,
    Vimalbalaji.J

  • Automatic Firmed Planned Order / Mass Change Planned Order

    Hi PP Gurus,
    My requirement is I want to make all planned order created from planning run will be automatically firmed. I tried several option :
    1. MRP type : P1, automatic create firmed planned order within planning time fence but for new requirement, planned order will be created after planning time fence date. Example planning time fence date lies on 20/10/2011
    PIR
    09/2011     3 pc
    10/2011     4 pc
    end of planning time fence date
    11/2011     5 pc
    run MRP
    Planned order firmed for month 9 and 10. for 11 is not firmed. But the problem is if PIR on month 10 is change from 4 to 6. the other 2 planned order will be created at end of planning time fence date.
    Is it possible for planned order created at appropriate date as requirement date ???
    2. Mass Change of Planned Order
    I browse the help SAP there is function module : MD_SET_ACTION_PLAF for mass changes of planned orders.
    http://help.sap.com/saphelp_46c/helpdata/en/9e/e84226c1c311d3b54a0004ac160649/content.htm
    I execute it with SE37 but i don't know what should i do with this function module after the next screen.
    In my mind, there will be selection screen for choosing which planned order will be perform firmed action.
    Any other idea to solve my requirement is welcome.
    Regards,
    Arman Lie

    Dear Arman,
    Use T.Code MD19 for firming the planned orders,also check MDBA for firming the planned order.
    For your first question let me check and revert back.
    Regards
    Mangalraj.S

  • Conversion of LTP Planned orders to Active planned orders

    Hi PP Guru's,
    I want to convert LTP Planned orders of Multiple Materials to active planned orders. Using MD43 (Interactive planning), I am able to covert only one material LTP Planned orders to active planned orders.
    Can any one advise me if there is any way (or) options to convert the Multiple Material's  LTP Planned orders to Active planned orders.
    Please let me know if required any further information on the issue.
    Regards,
    Purna

    Hi Anil,
    Thank you for quick reply.
    COHV Transction is meant for mass execution of transactions for Normal Planned order or Process order. I did not find any option to convert LTP Planned order to Normal Planned order in COHV Transaction.
    Please advise me the with further details.
    regards,
    Purna

  • Transfer LTP planned orders to Operational planned orders

    Hi
    Can anyone suggest how to transfer planned orders generated from LTP(Long Term Plan) to Operational Plan?
    Regards
    Pradipta Sahoo

    Dear Sahoo,
    You can transfer the simulative planned orders to operative planning using T Code MD43.
    Check this,
    Copying the Long-Term Planning Results to Operative Planning  
    Use
    Once you have optimized the results of long-term planning, you can copy them to operative planning.
    It is not only possible to copy the demand program to operative planning, you can also copy the planned orders firmed in long-term planning per material using the MRP transaction Interactive single-item planning.
    When copying the results to operative planning, you can set the system to create purchase requisitions and delivery schedules instead of planned orders for materials procured externally.
    Prerequisites
    You must firm the simulative planned orders you want to copy to operative planning. You can firm planned orders by:
    Making manual changes
    Using the planning time fence
    Setting a manual firming date
    If, when copying the data to operative planning, you want the system to create purchase requisitions or delivery schedules for materials procured externally instead of planned orders, enter the appropriate indicators in the Create pur. req. and Schedule lines on the initial screen of single-item, interactive planning (in MRP).
    When copying the results to operative planning, the system does not carry out any source determination. If you want the system to create delivery schedules and purchase requisitions to which a vendor has already been assigned, you must maintain the necessary master data in the Purchasing menu before carrying out the planning run in long-term planning.
    http://help.sap.com/saphelperp60_sp/helpdata/en/92/bf02af44bd11d182b40000e829fbfe/content.htm_
    Regards
    Mangalraj.S

  • Any bapi avaialble to fetch component planned orders for header planned ord

    Hi Experts,
                     We have a req where we need to fetch component planned orders for  header planned order .
    In Detail :
      In MD4C tcode (select planned orders tab -> F8 ), when i pass the header planned order like 17474 .
      I get two component planned orders like 16276 16277 and corresponding materials like 12025185 , 12025189.
    We are using   BAPI_PLANNEDORDER_GET_DETAIL  to  fetch  component materials for a planned order .
    similarly any bapi or tables which have this data  to fetch component planned orders.
    Thanks in advance,
    Mani.

    Hope it would be helpful for you:
    Check these user exits.
    CO610001            User exits: Assembly processing                             
    M61X0001            User exits PP-MRP materials planning                        
    M61X0002            User Exits PP-MRP Material Requirements Planning Evaluations
    Thanks

  • Service Order in Capacity Planning

    Experts,
    how can I include Service Orders, generated by IW31 to the Capacity Planning.
    Thanks in advance
    -Jörg

    Dear,
    Please refer this useful help link,
    http://help.sap.com/saphelp_47x200/helpdata/en/10/d06396f62711d1951c00a0c93033d8/frameset.htm
    Regards,
    R.Brahmankar

  • Consolidation of Planned orders after CTM planning run

    Hi everyone,
    We use CTM planning engine and create planned orders for the unfulfilled demand. Since Demand is coming from various locations multiple planned orders are created at the supply location. But the requirement is that all these planned orders need to be consolidated to 1 planned order.
    How can we acheive this without disturbing the existing pegging relationships?
    For example:
    Current scenario:
    3 planned orders at location X based on the demand from locations A, B and C. Then a pegging relationship exists (Purchase Requistions) between A and X; B and X; C and X.
    Requirement:
    Above 3 planned orders need to be consolidated to 1 Planned order and still the pegging relationship to supply the demand locations should exist.
    Please let me know if anyone has similar business scenario and has working solution approach
    Thanks

    Hi,
    You can increase the lot size to club your demand requirements.  You can also try using period type lotsize to club daily, weekly, monthly requirements.
    Regards
    R. Senthil Mareeswaran.

  • The FM to copy the simulated planned order to operative planning

    Hi Gurus,
    Is there a function module which can copy the long-term planing results (Simulated Planned Orders) to the operative planning environment and create a PR, like MD43?
    I found the FM MD_COPY_PLAF_LTP. But it seems too complex to be pratical. Or I just simply create the PR by reading the planned order data?
    Thank you.
    Regards,
    Felix

    Hi, I have the same requirement with you.
    Did you find the solution? Could you please share with me
    thank you.
    Huang

  • Report with Planned Order, Frequency and Planned Hours

    Hello Experts,
    I need a report which can provide me with a list of all the Planned (Preventive) Work Orders, Frequency of the order and the Total planned hours for this work order.
    Can you please suggest a single report which can provide all these information or most of this?
    Regards,
    Atul Prakash

    Hi,
    Check in IP19 & IP24 transaction where you will get the schedule overview of the Preventive maintenance.
    Regards,
    Raj

Maybe you are looking for