cancel
Showing results for 
Search instead for 
Did you mean: 

Get the package number of DTP package ?

cuiwui
Explorer
0 Kudos

Hi experts,

Which class or method could provide the current package number of DTP in tranformation routine ?

For example , three are total three packages of DTP , is it possible to get current running DTP package number in transformation routine ?

Tks.

Accepted Solutions (1)

Accepted Solutions (1)

MKreitlein
Active Contributor
0 Kudos

Hello Bess,

in an End Routine (ABAP) of a transformation, you can find at the very top:

*  Attributs
DATA:
p_check_master_data_exist
TYPE RSODSOCHECKONLY READ-ONLY,
*- Instance for getting request runtime attributs;
* Available information: Refer to methods of
* interface 'if_rsbk_request_admintab_view'
p_r_request
TYPE REF TO if_rsbk_request_admintab_view READ-ONLY.

Have you tried with this in the debugger, already?

BR, Martin

Answers (0)