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 Job

Former Member
0 Kudos

hi all,

i need to check whether a transport job is running on not...

can anybody please tell me what is the job which runs and how can we check it via abap report..

we can check the status of any job via transaction SM37.but i want to achieve this functionality via a abap report...

thanks in advance,

ashutosh

3 REPLIES 3

Former Member
0 Kudos

Hi,

Execute the program RSBDCSUB 2 .

***do rewards if usefull

vijay

Former Member
0 Kudos

Hi,

This will probably work.

report zTEST_0001 .

data: xtbtco type tbtco .

parameters: p_job type tbtco-jobname.

start-of-selection.

clear xtbtco.

select single * from tbtco

into xtbtco

where jobname = p_job

and status = 'R'. " running

if sy-subrc = 0.

write:/ 'Job', p_job, ' is currently running'.

endif.

Refer

https://forums.sdn.sap.com/click.jspa?searchID=4369376&messageID=1681128

Regards

Kiran sure

0 Kudos

hi kiran,

can u please provide me any transport related job number to run the report....

i am interested in the one which moves the new changed files to test system.

thanks

ashutosh