on 2010 Jun 07 12:14 PM
Hi,
( Meta process chains - X, Z
X - runs at 2 a.m. daily
Z - runs after every two hours daily from 9 a.m. to 10.30 p.m
Process chain - Y is to be included in X & Z)
There is a Meta process chain X which is scheduled for 2 a.m. daily. This meta process chain contains another
process chain Y.
I want to schedule another Meta process chain Z which executes after every two hours daily. Now I want to include process chain Y in Z, with the condition that if system time is 11 a.m. or later than it only then it should be scheduled.
Since this process chain is contained in Meta process chain X, its start variant
has Immediate Start selected. I don't want to change this start variant.
Is there any option or event through which this can be achieved?
Thanks & Regards,
Manisha
Hi Manisha....
Check the following Blog....
/people/debjani.das/blog/2009/04/05/scheduling-process-chain
Regards,
Debjani....
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You have to use event instead of immediate start in the start variant. Then only it is possible.
You can trigger the event based on the time you require.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You need a program to trigger event (using function module BP_EVENT_RAISE). You can include this program and variant only in the process chain as a ABAP process type.
The program will have a condition based on the time (you can use parameters to make it dynamic), when ever the specified time condition will be satisfied, it will trigger the event.
So whenever you will execute the process chain X, everytime ABAP process type will also be executed. But the event will be raised only at a specific time, so is it process chain Y. Therefore it will not affect process chain X execution.
User | Count |
---|---|
65 | |
8 | |
8 | |
6 | |
6 | |
6 | |
6 | |
6 | |
5 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.