Scheduling parameters in networks

Hi
I have made a std. network thru CN01 and now when I try to include that std network into a new project , following problems come:  ( Iam actually trying to copy a project and a network from std templates)
1. A pop up comes and says " You are trying to include a std network into hierarchy which has assigments to wbs elements, however the selected wbs does not corresponds to the assignments"  then two options come INCLUDE ASSIGNMENTS and IGNORE ASSIGNMENTS.
On selecting either one of two , a error comes saying " No scheduling parametrs defined for the network " and then it doesnt let me save the project with the network.
Something is missing in SPRO , but as I have checked I did not find anything missing. please suggest.
Thanks,
Dhruv

Hi Dhruv kumar,
If my understand is correct....you have created one STD network and you want to assign that std network to other operative project....am i right?...
If above my understanding is correct......you might have missed the scheduling parameters configuration for plant and network type combination in the transaction OPU6...
In this step you define control parameters for scheduling depending on the plant, the type of network and the production scheduler, for example:
whether basic dates are to be adjusted if the network is shifted within the earliest/latest dates
the scheduling type
whether or how many days the start date can be in the past
whether the dates are to be automatically recalculated on saving
whether the error log is automatically displayed if errors were calculated in scheduling
the number of days that the start date is in the past
the reduction type that defines whether all the operations should be reduced or only those on the critical path
maximum reduction level for reduction
Please check once again whether you have done all the configuration required.
Regards
Vetri

Similar Messages

  • Unable print scheduled report on network printer using BOEXI 3.0

    Hi,
    I'm unable to print a scheduled report on network printer using BOE XI 3.0. I get the following error
    Error Message: Error in File ~ce6a054be1a25b52.rpt: Request cancelled by the user. ]
    Has anyone encountered this kind of problem and know what the solution is?
    Thanks,

    Hey Falk,
    Thanks for the response.
    I can print on a network printer after I changed 'Crystal Reports Job Server' to run under a user account that has privileges to access the printer.
    To answer your questions regarding the problem:
    >Can you schedule the report successfully ?
    >>Yes I was able to schedule the report successfully
    >Can you print the report successfully?
    >>NO the scheduled task would fail with the error message as posted above.
    Thanks,

  • Error in scheduling parameters for production orders

    Hi Guys,
    Greeting for the day u2026u2026u2026.
    I am trying to create production orders creation for own order  type ex MM01, but I am getting error message as u201C scheduling parameters are not defined for the order type u201C even though I have maintained following parameters as below,
    Production scheduler      -
    xxxxx,
    Detailed scheduling -
    check box of scheduling ticked,
    Rough cut scheduling    --- scheduling id u201301, scheduling and generate capa requi,, boxes     ticked,
    Adjust scheduling  -- requi to operation  date,
    Scheduling control for detailed scheduling ---backwards and check box of auto scheduling ticked
    Operation segment ---setup,
    All operation in order will be reduce
    Do not reduce,
    Could any one light on this issue,
    Thanks in advance,
    Mohan

    Hi,
      This error will come if you have not maintained Define scheduling parameters for production orders.
    Check this order type whether linked with respective plant in OPU3.*And give production scheduler * mark ie, all.*
    And in Define production scheduling profile - OPKP, link your order type in the page below.
    In material master work scheduling view, input production sch profile or prod scheduler.
    Regards,
    Dharma

  • Service Order-Scheduling Parameters not found

    Hi,
    I am working with a Service Order by creating an order with a  partoicular order type ,Plant & Business area.
    I am getting an error message that Scheduling parameters are not maintained.
    Can any body throw light with detailed steps of this functionality pl
    Nagarajan

    Hi,
    I could later solve by applying the required parameters on par with another order type which was working well.This relates to the Plant Maintennance order which is useed as an ext requiremnt for SRM
    Thanks,
    Nagarajan

  • Scheduling parameters are not defined for production orders

    Hi All,
             when i convert the planned order to production order  i got this massage popup coming  Scheduling parameters are not defined for production orders . please let me know this .

    Hi,
    One of major customization steps for the order type is missing. Run OPU3 and maintain settings for the order type you are using. You may copy settings from an older type.
    Regards.

  • Scheduling Parameters

    Hi,
    I am trying to customize the scheduling parameters in T.Code "OPU3". But the field "SelID: Detailed" under Detailed Schedule sub screen is coming as non editable. I want to give some selection id to this field. Please tell me that from which field the value can be populated here or is there any way to put the value directly here.
    Thanks !!

    Dear,
    It is not possible in standard SAP you can have this option for MRP run so it can possible to select in OPU5 not for OPUZ and OPU3. As in production order scheduling parameters are copied from OPL8.
    Hope clear to you.
    Could you please update me on your thread  MILL_OC to create combination order.
    There no classification required.
    Regards,
    R.Brahmankar

  • FLOATS,BASIC DATES AND SCHEDULE PARAMETERS

    For MTS REP MANF with strategy 40-planning with final assembly and MRP type-PD In SPRO
    for scheduling and capacity parameters in (opu5) how to specify the floats for deteriming the BASIC DATES of planned order,and what are the parameter required to determine the BASIC DATES in spro
    and what are the scheduling parameters required to maintain planned order say ORDER TYPE -PE
    RUN SCHEDULE(PLANNED ORDER-PE) and ORDER TYPE-LA STOCK ORDER

    Dear,
    Foe Basic date scheduling you need to maintain the Inhouse production time in material master and IN MD102 run with scheduling parameter as 1- Basic date scheduling is only required scheduling.
    Regards,
    R.Brahmankar

  • Scheduling parameters in MRP

    Hi Gurus,
    what are the different effects on the PRs and Planned Orders for the different Scheduling Parameters in the MRP Run for 1 Basic Dates & 2 Leadtime & Capacity Planning?

    Hi,
    If you select Basic date scheduling, check in planned order or prod order, system will show only basic start date & finish date.
    If you select Lead time scheduling, check in planned order or prod order, system will show basic start date,finish date & Prod start date & finish date.
    With lead time scheduling, capacity requirement also system will generate.
    Regards,
    Dharma

  • Scheduler parameters

    Hi
    Can we generate the scheduler parameters from SQL query? We need to call a script that takes arguments provided by Scheduler but every time we run the job we need to generate different parameters. Can we do that?
    Thanks

    If your job is running in the database instance (ie it is not an external job) you can try to create a table containing the parameters and modify the job code to search for the right parameters in this table. See following example (for DBMS_JOB but should possible to adapt it for DBMS_SCHEDULER):
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:351033761220
    There is another possibilty with DMBS_SCHEDULER.SET_JOB_ARGUMENT_VALUE that I've tested with Oracle XE (10.2.0.1).
    SQL>
    SQL> create table jp(
      2  jn varchar2(30),
      3  p varchar2(10));
    Table created.
    SQL> insert into jp values ('J1', '1');
    1 row created.
    SQL> insert into jp values ('J2', '2');
    1 row created.
    SQL> insert into jp values ('J3', '3');
    1 row created.
    SQL> insert into jp values ('J4', '4');
    1 row created.
    SQL> insert into jp values ('J5', '2');
    1 row created.
    SQL> insert into jp values ('J0', '0');
    1 row created.
    SQL>
    SQL> create table jr(
      2  t varchar2(100));
    Table created.
    SQL>
    SQL> create procedure proc (p1 varchar2)
      2  is
      3  l_p varchar2(10);
      4  begin
      5  select p into l_p from jp where jn = p1;
      6  insert into jr values(to_char(sysdate,'HH24:MI:SS') || ' ' || p1 || ' ' ||
    l_p);
      7  commit;
      8  end;
      9  /
    Procedure created.
    SQL> show errors
    No errors.
    SQL>
    SQL> --
    SQL> -- enabled must be set to false otherwise ORA-27457
    SQL> --
    SQL>
    SQL> begin
      2  dbms_scheduler.create_job (
      3   job_name            => 'jtest',
      4   job_type            => 'stored_procedure',
      5   job_action          => 'proc',
      6   number_of_arguments => 1,
      7   start_date          => systimestamp,
      8   repeat_interval     => 'freq=minutely;bysecond=0,10,20,30,40,50',
      9   end_date            => null,
    10   enabled             => false);
    11  end;
    12  /
    PL/SQL procedure successfully completed.
    SQL> show errors
    No errors.
    SQL>
    SQL> begin
      2  dbms_scheduler.set_job_argument_value (
      3   job_name => 'jtest',
      4   argument_position => 1,
      5   argument_value => 'J0');
      6  end;
      7  /
    PL/SQL procedure successfully completed.
    SQL> show errors
    No errors.
    SQL>
    SQL> begin
      2  dbms_scheduler.enable('jtest');
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL>
    SQL> begin
      2  dbms_lock.sleep(10);
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL>
    SQL> begin
      2  dbms_scheduler.set_job_argument_value (
      3   job_name => 'jtest',
      4   argument_position => 1,
      5   argument_value => 'J1');
      6  end;
      7  /
    PL/SQL procedure successfully completed.
    SQL> show errors
    No errors.
    SQL>
    SQL> begin
      2  dbms_lock.sleep(10);
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL>
    SQL> select * from jr;
    T
    13:55:10 J0 0
    13:55:20 J1 1
    SQL>Edited by: P. Forstmann on 22 mai 2010 13:56

  • MPS/MRP : OPM Schedule Parameters

    Hi Folks,
    "If you accepted the default organization from the previous field, the code for the
    default schedule parameters assigned to the user/planner (in User Profiles)
    displays here."
    Above Paragraph i copied from OPM - MPS/MRP user guide.
    My query is :
    Where i can find the "User Profiles"?
    Please reply me, this is urgent i have to continue my setup.....
    Razzy

    Hi Razzy ,
    May be from Session Parameters > Default Values > Schedule
    Regards,
    Ram

  • Adobe captivate scheduling parameters for recording via a program schedular

    Hi, I have 3 PC's running slide shows in 3 lecture rooms. I need to schedule the PCs to run Captivate 4, start and stop recordings and save the recorded file. Hopefully without me having to touch them untill the end of the day.
    I have a sheduling program that is capable of the load required and the ability to add the paramaters to do the functions I would like done eg. start and stop recordings and save the recorded file.
    I cant find anywhere the parameters required to do this or an example of someone else having done so.
    Any help would be extemely appreciated.

    Hi there
    Unfortunately, I've never heard of or seen such a thing.
    One possiblity would be to acquire a copy of a product called Macro Express and try that.
    Click here to view the Macro Express web site
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Change parameters on network interface card

    Hi,
    Ndd utility says that my ce0 adv_100fdx_cap, adv_100hdx_cap, adv_10fdx_cap, adv_10hdx_cap are read only. Can I set these capabilities to read write??? I'll get a permission denied message, if I try "ndd -set /dev/ce0 adv_100fdx_cap 1" in superuser. My goal is to force NIC to work at 100Mbps with full-duplex operation.
    Best regards,

    Hello,
    No, you cannot change the "cap" value. That is fixed, as it is the "CAPability" of the card's driver. Hence read only. What you can change is the "adv_cap .. " params, in other words, what the card is "ADVertising" for capabilities.
    Some folks still use a startup script, but this changes the interface settings long after the card is initialized (since it has to wait for init to run). A bad idea if you are using IPMP or other processes that want the interfaces setup from the kernel.
    The other method is to setup ce.conf. You will need pathing info from /etc/path_to_inst to construct the proper syntax for that file. i don't recall that file exists by default, but you have to create it.
    Not using auto_negotiation is a very bad idea and I don't recommend that. I've sat through waaaay too many confcalls with waaaay too many people to sort through and explain the problems that fixing interface speed/duplex causes. I will bear those scars forever. So that is all I wish to say on this matter : )
    FWIW!

  • Machine capacity planning and efficency

    Dear Guru,
    I have number of machines and i want there individual capacity and efficency can we see that by any report or any tcode to see all capacity of machine.What is capacity leveling.
    Is thee any configuration for capacity planning.
    Thanks in advance

    Hi, the following configuration steps involved in the capacity planning: SPRO --> IMG --> PRODUCTION --> CAPACITY REQUIREMENT PLANNING Capacity Requirements Planning: 1) Define time units 2) Define Capacity Category 3) Set up Capacity Planner. 4) Define parameters 5) Define Standard value key. 6) Define Move time matrix. 7) Define Setup matrix. 8) Define Control Key. 9) Define Shift Sequence. 10) Define Key for performance efficiency rate. 11) Define Formula parameters. 12) Specify Scheduling type. 13) Set up Production scheduler group 14) Select Automatically. 15) Define Scheduling parameters for Production orders 16) Define Scheduling parameters for networks. 17) Define Reduction Strategies planned/ production orders. 18) Define Reduction Strategies for network/process orders. 19) Define Control Profile. 20) Define Selection profile. 21) Define time profile. 22) Define Evaluation profile. 23) Define Strategy Profile. You can follow these above configuration steps in capacity planning Yes you need to active your all work center for the finite scheduling at the bottom of capacity view. Use all standard SAP configurations, Capacity Leveling Profile. Define time profile in OPD2. Define the strategy profile in OPDB Define the Overall profiles in OPD0. Then only you need to to active your all work center for the finite scheduling at the bottom of capacity view in work center.(CR02) Then run MRP with scheduling- 2 Lead time scheduling and capacity planning.(MD02) You will get your capacity requirement in CM01, or CM25/CM21. In rem you can use MF50. -
    OR refer below steps Capacity Planning Evaluation: Use this procedure to Evaluate the Capacity of a Work Center (Resource). The same transaction will be used for finding out the Capacity Overload on the Work Center Select Logistics -> Production -> Capacity Planning -> Evaluation ->Work Center View ->Load and go to the Capacity Planning Selection screen (CM01) Through capacity planning : Standard overview :System will show week wise overload in Red Color. If there is no overload then system will show in the normal color. Date wise Capacity can be overviewed. If there were capacity overload, system would show with Red Color indication and Percentage overload can be viewed. Through capacity planning : Standard overview: Details: Date wise, planned process order wise capacity requirement. Through capacity planning : Standard overview: Graphical: Yellow Color indicates capacity lying un-used. Red Color Bars is the indication for Capacity Overload and Blue Color Bars indicate for Capacity available Use this procedure to Level / Schedule the Capacity of a Work Center Capacity Planning - Levelling/Scheduling: Select Logistics ->Production->Capacity Planning -> Levelling -> Work Center View and go to the Planning Table (Graphical) screen (CM21) Key Points u2022 This would be used for Shop floor production scheduling u2022 Capacity Scheduling is mandatory for correct results of Master Production Schedule and Material Requirement Planning For settings: Define formulas for resources: (OP54) IMG -> Production Planning For Process Industries -> Master Data ->Resource->Capacity requirements planning->Formulas for resources->Define formulas for resources. For formula parameters for Resource/workcentre:(OP51) IMG -> Production Planning For Process Industries -> Master Data ->Resource->Capacity requirements planning->Formulas for resources->Define formula parameters for resources-> Standard Value u2013 Define Parameters (OP7B) IMG -> Production Planning For Process Industries -> Master Data ->Resource-> General Data -> Standard value -> Define Parameters Define standard value key(OP19) IMG -> Production Planning For Process Industries -> Master Data ->Resource-> General Data -> Standard value -> Define Standard Value First configure the below settings in the capacity Planning. 1) Define time units Path : SPRO ->Production-> Capacity Requirements planning ->Master Data-> Define Time units (OPCF) 2) Define Capacity Category Path : SPRO ->Production ->Capacity Requirements planning->Master Data-> Capacity Data ->Define Capacity category. 3) Set up Capacity Planner. Path : SPRO ->Production ->Capacity Requirements planning -> Master Data->Capacity Data -> Set up Capacity Planner 4) Define parameters Path : SPRO->Production ->Capacity Requirements planning -> Master Data ->Work Center Data->Standard value ->Define Parameters (OP7B) 5)Define Move time matrix. Path : SPRO -> Production-> Capacity Requirements Planning -> Master Data-> Work Center Data -> Define Move time Matrix (OPCN) 6) Define Setup matrix. Path : SPRO -> Production ->Capacity Requirements Planning -> Master Data -> Routing data -> Define Setup Time Matrix 7)Define Control Key. Path : SPRO-> Production-> Capacity Requirements Planning -> Master Data ->Routing data -> Define Control Key(OPCG) 8) Define Shift Sequence. Path : SPRO -> Production-> Capacity Requirements Planning -> Operations -> Define Shift Sequences (OP4A) 9) Define Key for performance efficiency rate. Path : SPRO-> Production -> Capacity Requirements Planning -> Operations-> Available Capacity-> Define Key Performance Efficiency Rate (OPDU) 11) Specify Scheduling type. Path : SPRO ->Production ->Capacity requirements Planning->Operations->Scheduling ->Specify Scheduling Type (OPJN) 12) Set up Production scheduler group. Path : SPRO ->Production->Capacity requirements Planning -> Operations -> Scheduling -> Set up Production Scheduler Group (OPCH) 13) Select Automatically. Path : SPRO -> Production -> Capacity Requirements Planning ->Operations->Scheduling ->Task List Type-> Select Automatically (OPJF) 14) Define Scheduling parameters for Production orders. Path : SPRO -> Production ->Capacity Requirements Planning-> Operations->Scheduling -> Define Scheduling Parameters for Production orders (OPU3) 15) Define Reduction Strategies planned/ production orders. Spro-> Production->Capacity reqirements planning->operations->Scheduling->Reduction strategies->Define reduction strategies planned-/production order 16) Define Reduction Strategies for network/process orders. Spro-> Production->Capacity reqirements planning->operations->Scheduling->Reduction strategies-> Define reduction strategies for network/process order 17) Define Selection profile. Spro->Production->Capacity requirements Planning->Evalution->Profiles-> Define selection profiles Hope clear to u. Regards Alok

  • Workforce Planning for Partially Confirmed Activities

    Hi All,
    I have recently configured Workforce planning for one of the clients, and it has been working as per the requirement. Here, I have configured Workforce Planning profile and Scheduling parameters of Network. So, once a Project and a Network is created, User plans Personnel for this Network's activity using CMP2. Also, CATS profile is maintained in such a way that Worklist shows the Planned hours and accordingly a person can book Time against it.
    Now, the problem arises after a Personnel assigned to an activity books the Timesheet. Once a Person books time against this particular Activity, it gets disappeared from CMP2 screen. Now, practical implications are that, suppose that person goes for a leave or leaves the organization and PM wants to assign another person for the same Activity (which is partially confirmed).
    How can we address this issue - to perform workforce planning for Partially Confirmed activities?
    Any pointers to User Exits, BADIs, BAPIs or SAP Notes are highly appreciated.

    Hi Sanjeev,
    Thanks for your feedback.
    In CMP2, we are already checking the activity work hours. According to that only we are adding resource, then checking that resource's availability and then assigning work.
    As an example, activity work duration is from 20.08.2014 to 30.09.2014. I assigned a resource A from 20.08.2014 to 30.09.2014 for 8 hours because he is available in that duration.
    Now, the real problem comes when this resource is suddenly unavailable (due to any reason) and PM comes to know about this on 07.09.2014. Resource A has already booked Timesheet for the duration he has worked (20.08 to 06.09). So activity is PCNF.
    So PM wants to reduce the Work assignment for Resource A from 30.09.2014 to 06.09.2014 and assign Resource B from 07.09.2014 to 30.09.2014, but he is unable to get this activity in CMP2 view because it is PCNF. Here PM can only see activities of same project which are in REL status.
    So how can I enable this PCNF activity in CMP2 view.
    If there is any IMG activity settings, then let me know.
    If this is standard behavior and can be done through User Exit/BADI/BAPI then also let me know.
    Message was edited by: Aditya Kotak

  • Getting Account Assignment Category D error

    Dear All,
    While creating a debit note with internal order, with item category ZTPS (Standard item category for project) i am getting error message" item category "D" is not defined ". This is rollout prject and i have checked in the sytem i found some documents with same item cateogry .
    Please advice.
    Regards
    Sunil

    Hi,
    Create network parameters in sales document (SD)
    You can make the default settings required to create a network from a sales order in the menu options Basic data -> Standard structures -> Parm. SalesOrd->Ntwk (Parameters for sales order -> network).
    If you do not enter data here, you can also enter the necessary data online directly in the sales order.
    The data in the material master actually controls whether a network can be created from a sales order item. To set this up, you should enter the core information like (assembly type, order type (i.e. network or order type) configuration, account assignment category) in the requirements class for the material. The requirements class is determined by the strategy group (see above) which was maintained in the material master.
    Therefore, if you want to be able to create a network while working in a sales order, you must have maintained the corresponding MRP data or strategy group for the material being sold.
    Standard settings
    SAP has predefined the following strategy groups:
    83: Assembly processing with network, account assignment category E (assignment to sales document. A network with network type PS05 (header assignment) is created.
    85: Assembly processing with network/project, account assignment category D (assignment to project). A network with network type PS04 (activity assignment) is created.
    In both cases, the system automatically creates a network with network type PS04.
    Recommendation
    Do not change the default settings that SAP provides in Customizing. You can use these defaults to set up your own strategy groups, requirement types etc. and specify other network types or other settings for the availability check.
    Note
    When values are missing from the sales order item, such as the plant, the system cannot determine the requirements type which means that it also cannot create a network from the sales order.
    In order to have the scheduled dates in the network be copied into the sales document as confirmed dates, you must have maintained scheduling parameters for network type PS04 and PS05 in Customizing.
    Keep this in mind when you define your own network types.
    Among the scheduling parameters to be maintained, you should set the indicator reconcile basic dates .
    You must set this indicator if you want the system to copy the scheduled dates into the basic dates and then pass them on to the sales order as confirmed dates.
    Hope this will resolve your problem.
    Regards,

Maybe you are looking for

  • Help on the ADOC history table in SBO 2007

    Hi I am interested in writing a report on changes to sales orders so I thought the ADOC and ADO1 tables would be a good start However if I place a sales order in my system I can't see the order in the ADOC table Is there some setting I need in SAP so

  • European Pi embedding font issue

    Hi: I am using a liscensed copy of the European P1 font in LiveCycle Designer 8.2.  Windows XP SP 3  Acrobat 9.4.1 When I generate the Pdf as Adobe dynamic XML form (PDF) I recieve the followign warning in LC Designer and the fornt is not embedded in

  • Color Shading Map Renderer not working

    Hi, Has anybody got the Color Shading rendering working in NW2004s? And if so how? I am able to display Bars using note 1016072, but the Color Shading does not work. We are on SP11, backend and frontend. Thanks, József.

  • IPod Nano does not want to sync anymore. It gives an error -48

    I am getting the following error message when I connect my ipod nano to my windows pc. The I pod "my name´s Pod cannot be synced. An unknowned error occurred (-48) Windows- Corrupt file The file or directory \Pod_Control\Speakable\PLSS001D\F8C37FB123

  • Timeline in my Project

    hallo i'm working in my graduation project about decision support system !! & in my project i wanna make a form ( screen ) for the timeline connect with the database & take the data from it And displayed on that time line with the ability for the use