cancel
Showing results for 
Search instead for 
Did you mean: 

Triggering a Process Chain From R/3 program

former_member541575
Participant
0 Kudos

hi

i have a requirement where i have to trigger process chain from R3 Program.

create a event in BW system and add that event in process chain in start variant.

write below logic in R3 side

below code i have written in ABAP program in R3 side

parameters: rfcdest like rfcdisplay-rfcdest,

zevent type char32.

CALL FUNCTION 'Z999B_CB_F_EVENTRAISE' destination rfcdest

EXPORTING

EVENTID = ZEVENT

EXCEPTIONS

BAD_EVENTID = 1

EVENTID_DOES_NOT_EXIST = 2

EVENTID_MISSING = 3

RAISE_FAILED = 4

OTHERS = 5

.

IF SY-SUBRC 0.

MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

ENDIF.

Create a Customized FM with Remote Enabled in BW system

call that FM with RFC destination and Event name as Export parameter from a ABAP program in R3 Side

i have given the Event name in Variant as same as i have created in BW system SM62

when i had run the Program in R3 side the program run successfully but the process chain did not run in BW system.

please let me know what is the reason behind this.

Below FM i have developed in BW system with Remote Enabled in Attribute tab page of FM.

FUNCTION Z999B_CB_F_EVENTRAISE.

*"----


""Local Interface:

*" IMPORTING

*" VALUE(EVENTID) TYPE CHAR32

*"----


CALL FUNCTION 'BP_EVENT_RAISE'

EXPORTING

eventid = eventid

  • EVENTPARM = ' '

  • TARGET_INSTANCE = ' '

EXCEPTIONS

BAD_EVENTID = 1

EVENTID_DOES_NOT_EXIST = 2

EVENTID_MISSING = 3

RAISE_FAILED = 4

OTHERS = 5

.

IF sy-subrc 0.

MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

ENDIF.

ENDFUNCTION.

Regards

Atul

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Atul,

Check the below article might help you to resolve the issue,

[http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/80d9d03c-b66f-2c10-cebd-e7e7c44ea6f2?QuickLink=index&overridelayout=true]

Regards,

Durgesh.

Answers (2)

Answers (2)

former_member182470
Active Contributor
0 Kudos

HI,

Check this discussion :----


Regards,

Suman

Former Member
0 Kudos

hi,

have you created some parameter value for the event in SM62 and process chain, if yes then pass the parameter value as well in the program to trigger the process chain.

regards,

Arvind.