cancel
Showing results for 
Search instead for 
Did you mean: 

bw extraction process starting after a process/job in source system

Former Member
0 Kudos

Hello gurus,

I want to start a extraction process (a chain process) in BW system after a background program (job background process) has finished in the source system (which is an R/3 system).

My solution sound like this: I make a RFC function in BW that start the event XX, and planning the process chain to start at event XX (all this in BW side).

In source system I call the RFC function when the desired background process has finish.

I look for another solution (more simple maybe) for my task, or for any another suggestion.

thanks

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Refer the note :135637

(1) Create an event in the BW system

-


Define a system event (for example SAP_BW_TRIGGER) with Transaction SM62.

(2) Create a function module in the BW system

-


Create a function module (for example Z_BW_EVENT_RAISE) with the help of Transaction SE37. For the source code refer to the attachment of this note.

(3) Use the below code in code of the triggered job in the R/3 System.Here BIMCLNT000 is the logical system name of the BI system. you need to cange it to yours.

parameters: rfcdest like rfcdisplay-rfcdest default 'BIMCLNT000'.

call function 'Z_BW_EVENT_RAISE'

destination rfcdest

exporting

eventid = 'SAP_BW_TRIGGER'.

Regards,

Anil Kumar Sharma .P

Former Member
0 Kudos

Hello Anil Kumar Sharma, thanks for your reply, but you have explained in details what I have wrote in message. If I don't find any other solution, I will implement it.

Former Member
0 Kudos

Hi,

you described the correct solution. I've implented it at a customer system and it works fine.

Cheers

Answers (0)