cancel
Showing results for 
Search instead for 
Did you mean: 

Start variant in Process chain

Former Member
0 Kudos

Hello Experts,

I have three different process chains. I have a new fourth process chain. How can I specify a start condition so that the fourth process chain still being seperate should start only after successful completion of all three process chains? The reason is I am not supposed o touch other three as they are already running.

I apreciate any kind of help.

Thank you.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

After your first three local process chains are complete, kick off an event using ABAP process type. You could create this simple program & use it in the ABAP process type:

REPORT ZBW_RAISE_EVENT.

*************************************************************

  • Selection screen. **

*************************************************************

selection-screen skip 1.

selection-screen begin of block b1 with frame.

selection-screen skip.

parameters : p_event like btcuev-EVENTID obligatory.

selection-screen skip.

selection-screen end of block b1.

************************************************

  • Start-of-selection. **

************************************************

start-of-selection.

perform raise_event.

&----


*& Form raise_event

&----


  • text

----


  • --> p1 text

  • <-- p2 text

----


form raise_event.

CALL FUNCTION 'BP_EVENT_RAISE'

EXPORTING

eventid = p_event.

endform. " raise_event

AND use this event in START process of all subsequent process chains.

Kumar Gudiseva.

Message was edited by: Kumar Gudiseva

Answers (3)

Answers (3)

Former Member
0 Kudos

There is a How to Guide and couple of other documents on the www.service.sap.com/bi.

Former Member
0 Kudos

1)Put an AND after all the first three PC's

2)Connect the AND to ABAP program which raises an event

3)Use this event in the START of the fourth PC.

Kumar Gudiseva

Former Member
0 Kudos

Hai Kumar,

I think this is the best way for me. Can you give me more details on this or I would appreciate if you can refere me or send me any documentation on this.

My id is visu_venkat@yahoo.com

Former Member
0 Kudos

What version are you working on ?

Former Member
0 Kudos

BW version 3.0. I am curious how it works with 3.5. Can you please tell me?

Thanks.