Application Development and Automation 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: 

SAP table to find tasks related to a transport request

former_member355261
Participant
0 Kudos
16,455

Hi,

I need to find information about transport requests, and the tasks related to each transport request and then the objects related to each transport task and to each transport request.

I found the table e070 and e070t, but I couldn't found this information. So please help me find which tables store this information and how to extract it.

Thanks in advance

1 ACCEPTED SOLUTION

0 Kudos
6,109

Hi Occoro,

This is a simple query.

The table which you are looking for is E071.

The E071 table contains the task and the included objects.

The relation between Main TR and a Task is maintained in table E070.

You need to analyze the fields STRKORR & TRKORR to identify the TR -> Task relationship.

Regards,

Bhawit Kumar

4 REPLIES 4

0 Kudos
6,110

Hi Occoro,

This is a simple query.

The table which you are looking for is E071.

The E071 table contains the task and the included objects.

The relation between Main TR and a Task is maintained in table E070.

You need to analyze the fields STRKORR & TRKORR to identify the TR -> Task relationship.

Regards,

Bhawit Kumar

0 Kudos
6,109

Tasks in E071 can be identified thru 'commentary" records, but only after task release, in E070, you can identify a task thru field E070-TRFUNCTION (check domain values) or field E070-STRKORR which contains the request number for task records

Then transported objects are in table E071. There are tools to get this information as FM TR_GET_OBJECTS_OF_REQ_AN_TASKS.

Regards,

Raymond

gregorygotera
Explorer
0 Kudos
6,109

Hi

Check the table E071

Best Regards

Gregory Gotera

SandySingh
Active Contributor
0 Kudos
6,109

Hello

You can use following Function modules

TR_GET_OBJECTS_OF_REQ_AN_TASKS

TR_GET_REQUEST_OF_TASK

Regards

Sandy