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: 

How to check the status of a transport request no?

Former Member
0 Kudos

hai

Iam developing a customized report which should show all the transport request no of customized reports (ie. Zreport) which have not been moved to quality or

production server

Iam able to get list of transport requests from E070/E071

How to check whether ia particular transport request number  is transported to quality server or production server?

Can any one help me?

regards

Jayaanand

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

Please use FM 'TR_READ_GLOBAL_INFO_OF_REQUEST'.

It will return system in the variable es_cofile-systemid.

Check the variable es_cofile-rc

If rc = 0  then present in system

if rc = 4  then warnings are generated

if rc= 8   not transported

Regards

Tejas

13 REPLIES 13

kesavadas_thekkillath
Active Contributor
0 Kudos

former_member209119
Active Participant
0 Kudos

Hi,

check the below link for your answer.

http://scn.sap.com/thread/1134078

Reward if useful.

former_member198275
Active Contributor
0 Kudos

Try below logic to read remote system records , here you will get all you need:

* read table E070CTV from remote system

   call function 'RFC_READ_TABLE' destination <UR Remote system>

        exporting

             query_table          = 'E070CTV'

*           DELIMITER            = ' '

*           NO_DATA              = ' '

*           ROWSKIPS             = 0

*           ROWCOUNT             = 0

        tables

             options              = itab_options

             fields                 = itab_fields

             data                  = itab_data

0 Kudos

Hai

Thanks for your response

Iam able to get the report.

Jayanand

GauthamV
Active Contributor
0 Kudos

Use below function module.

TR_READ_GLOBAL_INFO_OF_REQUEST

Sijin_Chandran
Active Contributor
0 Kudos

HI Jayalakshmi ,

This thread may help you out :

http://scn.sap.com/thread/1134078

And I think you can't check whether a request has been transported or not from E070 and E071.

You can only check whether the request has been released or not.

Field TRSTATUS in E070 will have value D for Modifiable req and R for released.

For getting transport time details I guess you need to implement the above BADI and capture details in a ZTABLE 

Former Member
0 Kudos

Hi,

Please use FM 'TR_READ_GLOBAL_INFO_OF_REQUEST'.

It will return system in the variable es_cofile-systemid.

Check the variable es_cofile-rc

If rc = 0  then present in system

if rc = 4  then warnings are generated

if rc= 8   not transported

Regards

Tejas

Former Member
0 Kudos

Hi Jayaanand,

In se10, status can be seen whether given transport id has been moved to production or quality systems.

Moreover,try implementing the BADI CTS_IMPORT_FEEDBACK.

This method is triggered at the end of each import and returns a table with following structure:

TRKORR

TARSYSTEM

TARCLIENT

RETCODE

OWNER

PROJECT

Hope it helps!.

Thanks!!!!!

Alora

Former Member
0 Kudos

Hi,

Please find the details in Table : TMSBUFTXT.

But it shows only those request , which moved to production server.

Development, Quality and Production are three different servers with diff databases. So you can't find the details of all three servers from production servers.

You will have to generate reports for different servers.

Regards,

Ravi Pratap Singh

0 Kudos

Hai

Thanks for everyone who give response.

I used function TR_READ_GLOBAL_INFO_OF_REQUEST

Regards

Jayaanand

0 Kudos

Hi,

If your requirement is fulfilled then please make the discussion Answered..

regards

Former Member
0 Kudos

Hai

Thanks for your answer.

I used the function 'TR_READ_GLOBAL_INFO_OF_REQUEST  and it is working

0 Kudos

This message was moderated.