cancel
Showing results for 
Search instead for 
Did you mean: 

Process chain with ABAP program - pass values from previous step

Former Member
0 Kudos

Hi,

I have a simple process chain with 2 steps:

1- run DTP

2- run ABAP program

My question, is it possible to pass values from the DTP filter (from step 1) to the ABAP program which is called afterwards?

Any ideas?

One thing came to my mind, are the filter values for the DTP stored somewhere during runtime, so it could be read from there in the program with a request ID?

Thanks,

Tim

Accepted Solutions (1)

Accepted Solutions (1)

RafkeMagic
Active Contributor
0 Kudos

I think it should be possible.

We have used p_r_request->get_dtp( ) in start routines (to get the DTP being processed), p_r_request is type referenced to if_rsbk_request_admintab_view and there you have GET_TH_RANGE (I assume that would contain the selections, I don't think I have used it before).

To pass that/those value(s) to the ABAP program you work with the "memory" (either via export to & import from memory or via shared memory).

Good luck!

Former Member
0 Kudos

Hi Tim,

Filter values of the DTP will be stored in the table RSSELDONE along with the request ID of the DTP.

Maybe it can be read from this table and used in your ABAP programme.

Thanks

Nayab

Answers (0)