Scheduling Parameter

Hi Experts,
I have occured following error message at the time when i create Production Order  through CO07 for rework .
"Scheduling parameters are not defined for production orders"
Message no. CT604
Waiting for helpful solutions from experts.
Regards

Hi Mukesh,
I hope u have created new order type OPJH & order type depenedent parameters at OPL8 for Rework.
For Order scheduling u ahve to defibne scheduling parameter at opu3 for order type/plant combination.
Activate "schceduling" check box for selction Id at detailed scheduling section or any of one of scheduling level as as defiend.
regards
pradeep

Similar Messages

  • Schedule parameter error in Service Order

    *Hello*
    *I have a problem. I have 4 (1000 to 4000) plants in my SAP ECC6.0. Now im configuring new plant which is (5000). I create notification in PM/CS and with refrence of this notification when im trying to create Service order system errors me this.*
    *Scheduling parameters for maintenance order have not been entered*
    *Message no. CT608*
    *Diagnosis*
    **No scheduling parameters have been entered for mainteance orders in Customizing plant 5000, order type SM04 and production scheduler . IF you do not enter the scheduling type no scheduling can be carried out.*
    *Procedure*
    *Enter scheduling parameters for maintenance orders.*
    *execute function*
    *i have checked in IMG that schedule parametrs are assigned to sm02 in existing 4 plants but not sm04. But in exsiting plants system allows me to create sm04 but not in new plant 5000. Im surprised that if scheduleing parameters are not assigned to sm04 then how system allows in existing plants to create sm04 and why not in new plant 5000?*
    *Please help*

    Hi,
    Maintain schedule parameter BY T-CODE   OPU7
    Plant - 5000
    Order - sm04
    Prod scheduler -  *  (star)
    Scheduling Type - forward
    Automatic scheduling - Tickmark
    Kapil
    Edited by: Kapildev Farakte on Feb 2, 2010 3:08 PM

  • Error during Scheduling Parameter Customizing - Message SV033

    Dear all,
    I am facing a problem when I try to assign a scheduling parameter to a service order in customizing with Tcode OPU7. I basically try to link my service order to the plant with a forwarding scheduling parameter and the system gives me the following message:
    Specify the key within the work area
    Message no. SV033
    Diagnosis
    You have attempted to create an entry whose key is not in the range defined for this area.
    System Response
    The entry cannot be created.
    Procedure
    Please check your entry.
    There are several threads about that message in the forum here but it doesn't helped me to solve the problem.
    Thank you very much for your help.
    Bernd.

    Dear Maddy,
    The function "Reschedule" follows an all-or-nothing logic, which means that either all selected activities on a resource can be re-scheduled or the function (better the liveCache) cancels and no activities will be re-scheduled.
    One reason might be that you have a pegging relation to a fixed activity (this might be a sales order, forecast, an activity outside the propagation range...) which cannot be considered during the
    scheduling. The liveCache cannot break the pegging, therefore it cancels the scheduling.
    Please have a look at the note 510669 which offers a heuristic on the basis of the algorithm /SAPAPO/HEUR_PLAN_SEQ_PACKAGES. This heuristic should solve your problem. It will re-schedule as many activities as possible and will not cancel if one fails.
    Depending on your current release there could be also some correction notes like
    1272960
    1027194
    I hope I could help you further.
    Regards,
    Tibor

  • MPS Schedule Parameter form ?

    Does anyone know where to access the MPS Schedule Parameter form ?
    I keep seeing this in the OPM - ASCP documents but I could not seem to find this form from various responsibilities I looked at.
    -- found in OPM process planning
    Edited by: user12306943 on Jan 12, 2010 2:26 PM

    Hi,
    The parameters form is available in OPM process planning responsibiity.
    To set up the parameter, you need to enable organization access for the specific responsibility.
    Warm Regards
    Siva

  • OIM 11g scheduler parameter update

    HI
    I have scenario to read changelog through OIM scheduler from iplanet and update the last read changenumber in scheduler parameter. But i am not able to update the scheduler parameter. Can anybody please guide me how to update the scheduler parameter or is there any better way to store last read change number?
    -Prakash

    Have you tried the following way?
    HashMap<String, String> map = new HashMap<String, String>();
    map.put("Task Scheduler.Name", scheduleTaskName);
    tcResultSet result = tcSchOp.findScheduleTasks(map);
    long mainObjKey = result.getLongValue("Task Scheduler.Key");
    tcResultSet result1 = tcSchOp.getScheduleTaskAttributes(mainObjKey);
    String[] scheduledtaskattrs = result1.getColumnNames();
    for (int i = 0; i < result1.getRowCount(); i++) {
       result1.goToRow(i);
       for (int j = 0; j < scheduledtaskattrs.length; j++) {
         if (scheduledtaskattrs[j] .equals("Task Scheduler.Task Attributes.Name")) {
              String taskname = result1 .getStringValue("Task Scheduler.Task Attributes.Name");
                   if (taskname.equals(lastTimeAttributeName)) {
                        temp = result1 .getLongValue("Task Scheduler.Task Attributes.Key");
    HashMap<String, String> updateMap = new HashMap<String, String>();
    HashMap<String, String> updateMap = new HashMap<String, String>();
    logger.debug("date == " + sdf.format(new Date()));
    updateMap.put("Task Scheduler.Task Attributes.Name", lastTimeAttributeName);
    updateMap.put("Task Scheduler.Task Attributes.Value", sdf .format(new Date()));
    tcSchOp.updateScheduleTaskAttribute(mainObjKey, temp, updateMap);HTH,
    BB

  • How to schedule a workflow for recurring executions: The solution

    Scheduling a workflow for recurring execution has been long awaited in WFA, perhaps from 2.0 time. The following document shows how to get it done. I've also explained the logic behind it. It’s very simple to use, meets every requirement which one can have from a scheduler and of course highly flexible. Let's go!! The Real stuff. What is this? Is this actually a scheduler? No. This is actually a command in your workflow, but a special 'magical' command. This 'magical' command logic is built using the answers for the following questions: Can a workflow be scheduled for a delayed execution in a future time? Yes, but only one execution instance. If you want the next execution, execute the workflow again providing the same set of inputs and the execution date/time.During workflow execution, can a command inside a workflow get to know what is the  name of the workflow? YesDuring workflow execution, can the command know what is the job execution id? YesIs there any programmatic interface available to know what are the user input provided or a particular job execution? YesCan a command inside a workflow trigger another workflow? Yes.Can a command inside the same workflow trigger itself? Absolutely yes. I've ticked all boxes needed to build such a solution. The solution is to make the workflow a smart workflow, so smart that it can schedule itself for the next execution. It no longer needs any other task scheduler to tigger it. WFA provides a large set of REST APIs for other 3rd part SW integration. But I  also can make  good use of these APIs to make smart workflows. I have always believed that WFA should not only be seen as a framework for automating Storage boxes or server, but just about any task( inside a computer of course) which is done manually. WFA is an awesome product indeed.  So this is a command called "Workflow Scheduler" which  you can put in your workflow as another command. Prerequisites: You need PowerShell 3.0 on your WFA server. I certainly could have done it for PoSH2.0 as well, but life for web interfaces  using PowerShell is so much easier with Posh3.0. Posh3.0 is a big jump from 2.0. WFA is fully supported to work on Posh3.0. Its available by default in Win2012, Win2008 can be upgraded, Win2003 users can't use it. Add credentials of a WFA Admin/Architect in you WFA itself with Name/IP: localhost Match: ExactType: OtherName/IP: localhostUsername: <WFA Admin/Architect Username>Password: <User Password>   3.  Minimum WFA version 2.2. This is only needed for Importing the dar. I've provided the command code in text too. The command code is the real deal. How to use it? If you have a workflow which you want for recurring executions, just add this command "Workflow Scheduler" in it. The command takes parameters for the workflow execution intervals. For example minsInterval for executing this workflow every x minutes, or daysInterval for executing the workflow etc.Now just like a normal workflow execution execute this workflow deciding what is the trigger time. Example: Suppose you want the execution every day at 10:00 PM.So provide daysInterval = 1 And execute the workflow for a delayed execution at 10:00 PM. You can pick the day to start as you wish. The workflow will execute at 10:00 PM and when this execution reaches our magical command "workflow scheduler", this command will trigger the same workflow  with same set of inputs for the next execution at 10:00 PM tomorrow. And so on an so forth. I’ve attached a very simple example workflow here to help you understand. An Example of a workflow scheduled for recurring execution Daily at 11:30 PM starting 10-March-2015     How to stop/suspend this recurring execution? Easy. You just abort the next scheduled job execution in Execution=> Execution Status. The cycle will stop. How to resume it? Easy again. Just resume the same aborted job. The cycle restarts. Can I change the schedule execution time? Yes. After aborting the current execution, you can resume the same workflow at a new time. Execution interval can't be modified as you can't change the command parameters. But the recurring execution now can occur at a new time. Where or which position to place this “workflow scheduler” command in your workflow? At the beginning ? At the end? Or somewhere in the middle. This completely depends on your choice. See some below cases. You don't want the next job execution scheduling to happen if any of the commands in my current workflow execution fails: Put command “workflow scheduler” in the end. It will trigger the schedule of the next job execution only when all real original commands of your workflow have passed. else not.     You want continuous job executions irrespective of the workflow command failures: Put it in the beginning. It will trigger the schedule for next execution before any of the actual command begin executing.     You want an approval before the next execution job is scheduled: Add an approval point before the comamnd.           So it’s all left to you.      Can an operator decide the execution schedule? Yes, but which workflows will be available to him/her for this recurring execution will have to be decided by the designer. This is a good thing to have as it serves for access control in a way. The Architect/Admin can now restrict which workflow can be put for recurring executions. Operators can’t execute just any workflow available to him for automatic recurring execution. And the workflow designer can also choose which scheduling parameter is to be made a variable for the operator. For example the designer want the operator to schedule a given workflow only for weeks Interval and not months or days i.e. he/she can only chose to schedule for weekly, biweekly etc. executions and  nothing else. For this the designer can define a User-Input variable only for weeksInterval parameter. It’s Done. You want workflow execution to be scheduled either for daily or once in 2 days but not any other. You can restrict this. Or he/she wants to give full freedom to the operator make his/her own decision about scheduling, he defined user-input variable for all scheduling parameters. The workflow designer wants weekly schedule but the day should not be a weekday: You can even do this. Is this flexible enough for my requirements? I’ve attached the very command code. You can modify the command as per your requirements. Suppose you want daily execution of a certain workflow at 10:00 PM but skip a day of execution if the day is a Monday. Modify the code check for the day and add another day if it’s a Monday. Its posh code and highly readable. So you can see how this can be used in a  variety of ways. This is the beauty of a programmatic solution. Its highly flexible, it allows users to design solution based on their requirements. Flexibility is the heart & soul of WFA. Thats why I like it. I have a workflow but I don't want to modify it by adding a new command in it. Can I still use this solution? Yes but with WFA 3.0 on wards. WFA3.0 allows to create modular workflows. Create a parent workflow with you actual workflow as a child workflow in it. Add our “workflow scheduler” command too. So now you don't need to touch your existing workflow. I've attached a workflow example here.   Have fun!! sinhaa  

    Providing a new version 1.1.0 of the command "WFA Schedular" Changes made: Added conditional String Representation based on the Scheduling parameter provided. Provided check for the right number of parameters passed into the command.Added a new parameter "Expiry Date" to automatically stop the recurring execution upon expiry.Check for Posh3.0 version in code.Have Fun!! sinhaa Below example for:Schedule a workflow for recurring execution every alternate day i.e. once in 2 days at 10:30 PM starting 06-Jul-2015 (Today's date is 02-Jul-2015) . The recurring workflow execution  should expire on 31-Dec-2015 and stop.  

  • Scheduling a report in the browser

    http://hbc-maroon.heartlandbc.org/reports/rwservlet?userid=HBC_QA/[email protected]&SCHEDULE=daily_from_04:00_tomorrow&subject="Four Seasons Rpt "&destype=mail&FROM=[email protected]&desname=[email protected]&desformat=PDF&ENVID=QA&report=r_four_seasons_email
    I want to know how to schedule one specific report to run everyday between Monday and Saturday, every 10 minutes between 7am-8pm? How to add the schedule parameter?

    hi,
    im getting this log:
    10.07.2008 08:41:44 Job started                                                             00           516          S
    10.07.2008 08:41:44 Step 001 started (program ZBWDATA_BW, variant , user ID CA.LOKESH)      00           550          S
    10.07.2008 08:42:14 ABAP/4 processor: SPOOL_INTERNAL_ERROR                                  00           671          A
    10.07.2008 08:42:14 Job cancelled                                                           00           518          A

  • Scheduled start and Finish date .

    Hi Everyone,
    I am facing a problem in dates in creating a process order in Production .
    In the tcode COR1, when input the BASIC START DATE manually, the BASIC FINISH DATE ,scheduled start date and finished dates should get calculated automatically  as per standard SAP.
    The problem that I am facing is that , if I input the BASIC START DATE in future , the scheduled start date and finished dates are always coming as  the system date.
    whatever date I input in the BASIC START DATE  the scheduled start date and finished dates are always coming as  the system date.
    But this is not happening in quality and development server .
    Please help me if you have any solution
    Thanks
    Bijay

    Dear ,
    1.Scheduling parameter for new process order type and plant combination, to be defined at OPUZ . U can copy the settings at standard order type PI01.Here you should keep Backward Scheduling as Scheduling Type  and Keep the adjustment  Scheduling as Adjust to Basic Date , depenent requirement Date .
    Now  Order Basic finish date = Order Basic start date + float before prod + Lead Time of Operations (operation time from routing )+ float after prod.
    These floats are predefined in SMK  and assinged to material master .It comes through Planned Order after MRP run andcoped to Production Order .
    .2.Check and Define Scheduling Margine key in MRP -Carry All over all palnt paremtres (OPPQ)
    If you are MTS process , then Keep the Scheudling Type as Forward .Enter the Basic Start date and Scheduling Margine Days ( Opening periods , FBP, FAP) and then hit the Scheduling Indicator .It will calcuate all the dates based on the SMK and operation setup and propose you Basic Finish Date .
    So adjust the Flaots in SMK tab in process order , enter Basic Finish Date , Choose Bacward Scheduling to arraive Basic Start  or Go in reverse direction by choosing Forward scheduling .
    Hope its clear
    Regards
    JH

  • Process order schedulling

    Hello friends,
    In process order, when i click  on 'scheduling tab', system gives massage that  scheduling is carried out. But in actual no scheduling takes place. What may be the reason?

    Hi,
    Please check the control key it should active for scheduling?
    And also chcek the scheduling parameter for order type, are marked for scheduling or not?
    Regards,
    R.Brahmankar

  • Stop enter parameter for report instance

    hello everyone:
    I have a problem when i schedule one of my report:
    this report contains a few parameters
    when i schedule it, i pre-enter the parameters' value (at schedule -> parameter panel)
    after report finish to run, the report instance gose to user's inbox.
    the problem is:
    when user try to view the report instance in their inbox, infoview ask user to enter parameter again. it only appear first time user view the instance, if user close the report and reopen it , it will skip the enter parameter step and get into the report stright away.
    any ideas to stop it?
    thanks

    Hi,
    Here are the steps :
    Go to CMC > Select  Report >click on Schedule report > click Default Settings option > Under Paramter Option > Uncheck Prompt While vewing Option > Save
    Now enter the parameters and Schedule the report to the following destination.
    Hope this will resolve the issue.
    Regards,
    Rameez
    Edited by: ramzraja on Aug 23, 2011 7:22 AM

  • Lead time scheduling problem

    Dear Gurus,
    When I run MRP using lead time scheduling, scheduling is not taking place for planed orders, the start and finished dates are the same. I have already maintained the required formula for the processing time in the work centers of the operations.
    What could be the reasons please suggest....
    Thanks in advance!
    Nilesh

    Hi,
    Please check your control key active for scheduling?
    Then check your scheduling parameter in OPU5 and OPU3 should active for scheduling?
    Regards,
    R.Brahmankar

  • DELIMITEDDATA with Scheduled report problem

    We are having problems with a report that should be generated as delimited data (CSV) that should be returned to the client and displayed in Excel as delimited data. Also, we need the report(s) to be scheduled so they will execute and the results cached for the user to view them at a later time. If we set the MIME type correctly for Excel and Schedule the report, the results are just displayed in the browser instead of in Excel. If we remove the Schedule parameter the report results are displayed correctly in Excel.
    Does anyone know if there is a way to get the "cached" report results to be returned and displayed in Excel?
    Here are some sample URLs that we are using. Both work with the exception of being displayed in the browser versus Excel as I described above.
    Generated to cache, but is displayed in browser as plain text when viewing results from SHOWJOBS:
    http://our_host/reports/rwservlet?paramform=no&destype=cache&MIMETYPE=application/vnd.ms-excel&desformat=delimiteddata&delimiter=tab&schedule=now&report=detail_worksheet
    Generated to cache, but is correctly displayed in Excel as delimited data:
    http://our_host/reports/rwservlet?paramform=no&destype=cache&MIMETYPE=application/vnd.ms-excel&desformat=delimiteddata&delimiter=tab&report=detail_worksheet
    Thanks
    Erik

    I have the impression that when you use the showjobs option you view the data from the reports server whilst when you use the cache option it gets pushed to you,. That might explain why the mimetype option is not working.
    Marcos

  • Scheduling with split error

    Hi Guys,
    I am getting this error in an activity: message class C7 and number 066 " Error during scheduling splits"
    The activity is for CATS time booking, The activity has must start on and must finish on contraints, and the actual start date is 3 days after the must start date. The activity has persons assigned to it. The error occurs when the user tries to delete or add an assignment or if any of the scheduling parameter is changed triggering automatic schdueling while saving.
    Any idea how to fix this or reason for this error.
    Regards,
    Paval.

    Hi Kanagavel,
                          A split for a person is scheduled using the available working time of a person, which is calculated from information pertaining to the person maintained in HR - Personnel Time Management.
    Because HR - Personnel Time Management information is used, it is necessary to configure certain parts of the R/3 Component HR Personnel Time Management. It is not necessary to use HR Payroll!
    A split is not scheduled using the operation work center information.
    The infotype 'Planned Working Time' with a Work Schedule Rule must be maintained for the person. This infotype has the number 0007.
    This is necessary for the generation a Personal Work Schedule for the person.
    Go to PA20 Transaction and check whether the person is maintained by Infotype planned working Time-007, If maintained check whether the infotype must contain a Work schedule rule, if not maintain the same.
    You can generate a work schedule rule using PT01 as well.
    Even You can use the function module HR_PERSONAL_TIME_LIST to test whether HR provides the necessary information for the scheduling of splits to the capacity planning component in logistics.
    go through this and revert back if the issue still persists.
    Rgds
    Sudhir Reddy Addaganti

  • Scheduling dates In Orders.

    Dear SAP Gurus,
    I have maintenance plan in which in scheduling parameter I  gave late completion Tolerance as 10% and early completion tolerance as 10%.Call Horizon is 90% and Scheduling period is 12 Months.The maintenances plan will be scheduled and I got order date as 2 days before the actual date and two date after the actual date.
    In general If the actual date is 20; In order I will get Basic Start date as 18 and Basic Finish Date as 22.
    My client wants same date i.e.20 as Basic Start and Finish Dates.So I have to remove the tolerances.I done it but still; the 2 days factor is there in every order.
    Is there any setting to remove it? Wat can be the possible reason For It?
    Please Comment as soon as possible.
    Thanking You
    Waiting for your reply.
    With Best Regards
    Pankaj U. Nimkar

    Thank You Very Much RameshChandra and John;
    With Your so may options I am able to solve the problems.
    The Problem is solved now and the exact date is coming there as per requirement.
    With Best Regards
    Pankaj U. Nimkar.

  • Auto GR parameter

    Hi all ,
    I am not maintaining AUTO GR parameter in Control KEy Of operation
    that is PP01 , instead of that AUTO GR parametr are maintained at OPKP (SCHEDULING parameter - Auto Goods receipt Tick ).
    My q's is : How the system will come to know that this is the last operation of the Routing and AUTO Gr has to be done at this operation
    Regards'

    Hi,
    In this case gr parameters will appear for you in first operation itself and rest of the operation you just confirm and save it or if suppose you have 0010 0020 0030 as three operations in routing and ur confirming the order by co11n t- code  then-----
    when u put the order there u have to put the operatio number by clicking F4 on that field.
    then in that case with all three operations when you confirm it ur goods movement screen will be full of gr parameter then if you confirm the first operation 0010 with the goods movement then it will not come for other two operations i.e. goods movement screen will be blank one for those operations 0020 0030.
    just confirm the operations only.
    In that case you have to assign a control key --milestone confirmation to last operation , then only last operation will get display to you at the time of confirmation .
    reward points if useful to you.

Maybe you are looking for