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: 

Transport Request

former_member184495
Active Contributor
0 Kudos

hi,

which table stores the details of a transport request (SE09)

cheers,

Aditya.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

E070 ..E071.. DETAILS you could see at E0*

hope this helps you

thomas

6 REPLIES 6

Former Member
0 Kudos

E070 ..E071.. DETAILS you could see at E0*

hope this helps you

thomas

0 Kudos

good morning brother Thomas.

Andreas

Former Member
0 Kudos

Hi aditya,

1. E07* (E ZERO SEVEN *)

2. These are generally the main tables.

E070 Change & Transport System: Header of Requests/Tasks

E070A Change & Transport System: Attributes of a Request

E071 Change & Transport System: Object Entries of Requests/Tasks

regards,

amti m.

Former Member
0 Kudos

These data could be found in the table E071. You can try this out.

laxmanakumar_appana
Active Contributor
0 Kudos

Hi,

Tables : E070, E070C, E07T.

<b>check the below select statement which is used in SE09

transaction :</b>

SELECT e070trkorr e070trfunction e070trstatus e070tarsystem

e070korrdev e070as4user e070as4date e070as4time

e070strkorr e070cclient e070ctarclient e07tas4text

INTO TABLE x_request

FROM ( e070 LEFT JOIN e070c ON e070trkorr = e070ctrkorr )

LEFT JOIN e07t ON e070trkorr = e07ttrkorr

WHERE e070~trkorr IN s_trkorr

AND e070~trfunction IN s_trfun

AND e070~trstatus IN s_trstat

AND e070~tarsystem IN s_tarsys

AND e070~as4user IN s_as4usr

AND e070~as4date IN s_as4dt

AND e070~korrdev IN s_korr .

Regards

Appana

former_member184495
Active Contributor
0 Kudos

answered