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: 
Read only

Request System Status Table

former_member184342
Participant
0 Likes
1,423

Which table holds the information of the status of the request when comes to which system it is released (DEV, QA , PRD)?

1 ACCEPTED SOLUTION
Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,339

You didn't try to analyze FM TR_READ_GLOBAL_INFO_OF_REQUEST?

Regards,

Raymond

8 REPLIES 8
Read only

PeterJonker
Active Contributor
0 Likes
1,339

TPSTAT ,but if you are using Solution Manager you will only be able to find the generated test transport request

Read only

0 Likes
1,339

Hello, Peter

I´m not using Solman and haven´t got many results, just 14 entries in all table.

Read only

roberto_vacca2
Active Contributor
0 Likes
1,339

Hi.

E070-TRSTATUS

Hope to help

Bye

Read only

0 Likes
1,339

I´m using SAP ECC 6.0 and i haven´t found this table.

Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,340

You didn't try to analyze FM TR_READ_GLOBAL_INFO_OF_REQUEST?

Regards,

Raymond

Read only

0 Likes
1,339

I tried it now, but I have a list of requests (850) and need to know which ones was transported to Production

Read only

0 Likes
1,339

Hi Ramires,

if you run this Analysis on the Development Box you need to use something like function module TR_READ_GLOBAL_INFO_OF_REQUEST simply because there is no update of the development box when the Transport is imported in production. So the COFILEs of the transports need to be analyzed. That is what the Function Module does ...

Regards

Oliver

Read only

0 Likes
1,339

So use the FM in a LOOP, in the resulting deep structure look for existence/status of the production system.


DATA: es_cofile TYPE ctslg_cofile,

      system TYPE ctslg_system.

CALL FUNCTION 'TR_READ_GLOBAL_INFO_OF_REQUEST'

  EXPORTING

    iv_trkorr = iv_trkorr

  IMPORTING

    es_cofile = es_cofile.

LOOP AT es_cofile-systems INTO system.

* for systemid = 'PRD' look at rc - if found imported,

* if rc 0 okay, 4 warning is okay too (e.g. deletion of object)

ENDLOOP.

Regards,

Raymond