Question:
Hello Experts,
I need your suggestions to write a event to trigger a process chain. Could any one tell me the steps in brief. Pointers to any documentation would be highly appreciated.
Thanks,
kcb2
_________________
kcb2
Answer:
Just the read the AWB manual. Everything you need is in there.
Leandro
Answer:
Hi If there is lot of process chains has to be scheduled one after another you can use external scheduling program.. such ASWIN, TIDAL etc.
Answer:
/forums/viewtopic.php?t=134869&highlight=trigger+event
This one is for raising the event form R/3 but this is off course also possible manually (SM64) or in BW
Answer:
Or you can write an ABAP calling function module:
call function 'BP_EVENT_RAISE'
EXPORTING
eventid = eventid
EXCEPTIONS
bad_eventid = 1
eventid_does_not_exist = 2
eventid_missing = 3
raise_failed = 4
others = 5.
endfunction.