cancel
Showing results for 
Search instead for 
Did you mean: 

How-to trigger a process chain using ABAP?

Former Member
0 Kudos

Does anybody know how to trigger a process chain using ABAP code?

Any help would be appreciated!

Thanks

Ioan

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Ioan,

try this in your ABAP:

CALL FUNCTION 'BP_EVENT_RAISE'

EXPORTING

eventid = 'Your Event'

eventparm = 'START'

target_instance = ' '

EXCEPTIONS

OTHERS = 01.

and schedule your process chain, waiting for 'Your Event'.

regards

Siggi

Answers (1)

Answers (1)

Former Member
0 Kudos

Siegfried,

You are the man, this works perfectly. Thank you for your help

Ioan