Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

ABAP - get list of modifiable transport requests for user

0 Kudos
1,211

Hi,

what is the best way to get a list of modifiable transports for a user with ABAP?

I've found the function module TMS_TM_GET_TRLIST (but due to missing documentation I'm not able to use it properly).

Is there some function module for this task, or should I get the data directly from e070* tables*?

3 REPLIES 3

GK817
Active Contributor
0 Kudos
747

Hello,

Even if you are getting using FM, probably you will have to filter the results and FM mostly likely will be 'Not Relased' (as per my experience).

You may directly use table.

Gaurav

747

yes, select in E070 is easy, else try function TRINT_SELECT_REQUESTS.
With parameter iv_username_pattern = "user name to be used" and LS_SELECTION filled with REQSTATUS = 'LDO', returned table content list of modifiable requests and tasks for user.

former_member1716
Active Contributor
0 Kudos
747

Hello bwf,

Try using the FM SCTM_GET_OPEN_TRANSPORTS_RFC, but if the FMs are not released better to go with tables.

Regards!