cancel
Showing results for 
Search instead for 
Did you mean: 

How to know if a transport has been moved

Former Member
0 Kudos

In an ABAP program, how can I determine if a given transport has been moved to production? For example given transport number D01K900001, how can i determine if it's been moved to our P01 environment?

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos
RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

Please make sure that you award points for helpful answers. Thanks.

Regards,

Rich Heilman

Former Member
0 Kudos

Hi Wardell

If you have any production id, you can directly use txn SE01 and type request number there and see. If it has not been moved, you will get the message 'This request does not exist'

But if it is moved, you can see its status as well as the Import logs as well.

Excuse me for any offences, SE01 may not be the best answer but i know only this one

Cheers

Ashish Jain

Former Member
0 Kudos

use Tcode STMS and see in P01 system Queue.

Rgds,

Mano Sri

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

Please check out this thread. I think this may help you to do this programmatically.

Regards,

Rich Heilman

Former Member
0 Kudos

Call transcation SE09 for workbench or SE10 for Customising/workbench, place the cursor on the transport and select GOTO->Transport Logs. It will show the list of systems the transport was imported to along with the return codes.

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

Sample.....




data: xtpalog type tpalog.


parameters: trkorr type tpalog-trkorr.

select single  * from tpalog into xtpalog
             where trkorr = trkorr
               and trstep = '<'.

if sy-subrc = 0.
  write:/ 'This has been transported'.
else.
  write:/ 'This  has  not been transported'.
endif.

Regards,

Rich Heilman

Former Member
0 Kudos

Hi,

below link might help you.

http://help.sap.com/saphelp_erp2004/helpdata/en/de/6b0d9ff34d11d3a6510000e835363f/frameset.htm

http://help.sap.com/saphelp_erp2004/helpdata/en/44/b4a0137acc11d1899e0000e829fbbd/frameset.htm

reward with points for helpful answers and close the thread if your problem is solved

regards,

venu.