cancel
Showing results for 
Search instead for 
Did you mean: 

process chain - passing information between tasks?

Former Member
0 Kudos

hi

we are starting an info package to load data to PSA as a part of a process chain.

After the info package is executed we want to run an abap program. We want to pass the the request id which was generated when the info package was started, to the abap program.

Is there any way of doing this?

Regards

Murali

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member192700
Active Contributor
0 Kudos

Hi Murali,

when you implement a custom defined process type for the execution of your report, you can check the contents of the signature table i_t_processlist in your EXECUTE method.

You might also want to call the GET_INFO (or another) method from the CL_RSSM_LOADING class to provide details about the InfoPackage executed, which is the implementation of the loading process.

Cheers

Andreas

Former Member
0 Kudos

HI Murali,

I think instead of passing the request id to the abap program, we can get the request id generated by the info package from the RSREQDONE table.

try out...

Dilse...

Harish