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: 

Status of transports

Former Member
0 Kudos
1,210

Hi,

I have a requirement to check if the transport requests have been moved to Quality server from development server.

I am able to find out the status of the request as released from the table but i need to know if the same has been transported succesfully or not.

I have to display this information ina report.

So can anyone tell me if this informaton is stored in some table or can anyone help me how can i achieve this.

Thanks

GT

1 ACCEPTED SOLUTION

Former Member
0 Kudos
258

There are two SAP tables E070 and E071.

First is used to store the TR with the attributes and the second for the object list for the TR.

The status related info you can get from the first table.

Amit

7 REPLIES 7

Former Member
0 Kudos
258

hi

try with E070 table

cheers,

sasi

Former Member
0 Kudos
258

Dont know about getting the report but you can see the transport status of individual requests by selecting them and viewing the transport log OR selecting and pressing CtrlShiftF2.

Hope this helps.

Abhishek

Former Member
258

Hi,

Normally you release the transports using <b>SE01</b>.

As you may know you can find the released requests with

the status released there.

After that when we need to transport that request the

transaction <b>STMS</b> is run.This is used to

transport the released requests.

If a transport fails corresponding log will be

generated.

Please reward points if you find this explanation

useful.

former_member208581
Participant
0 Kudos
258

Hi,

do you have checked function group CTS_API already?

There is a fine function module to read informations about a certain transport request. It's named CTS_API_READ_CHANGE_REQUEST.

The status information will be returned in field STATUS and will be same meaning as table field e070-TRSTATUS.

Former Member
0 Kudos
258

Hi,

You may try the transaction code STMS to know the details,

Rgds,

Former Member
0 Kudos
259

There are two SAP tables E070 and E071.

First is used to store the TR with the attributes and the second for the object list for the TR.

The status related info you can get from the first table.

Amit

258

Hi,

try fm TR_READ_GLOBAL_INFO_OF_REQUEST

regards Andreas