‎2007 Oct 15 5:10 AM
‎2007 Oct 15 5:16 AM
Hi,
Method 1: in SE38
type your program name
choose Program -> Execute -> Background
Method 2: in SM36
Create a job with your program name
it will run in bg
Check this thread, it will surely help you.
https://forums.sdn.sap.com/click.jspa?searchID=5273985&messageID=3151612
Thanks,
Reward If Helpful.
‎2007 Oct 15 5:18 AM
Hi
To run a program (Report) in Background you have to create a Background job in SM36.
You can monitor the Status of this job in Tcode SM37.
Goto Tcode SM36.
Create a Job.
Create the Step and assign the Report name and Variant (selection screen).
Assign the Start condition . Eg Date & Time.
Save the Job. so that it will be released.
You can monitor the Status of this job in Tcode SM37.
<b>Reward if Helpful.</b>
‎2007 Oct 15 5:36 AM
Hi
Method 1: in SE38
type your program name
choose Program -> Execute -> Background
Method 2: in SM36
Create a job with your program name
it will run in bg
We can Run an ABAP Program in Background but only Executable program i.e Report.
1. Tcode SE38.
Create the Variant with Required selection criteria.
2. Tcode SM36
Create a Background Job
Create a Step and Assign the Report and Variant.
Set the Start Condition (Date & Time )
Save the Job.
3. Monitor the jOB Status in Tcode SM37
This is how to do it through code
data: lv_job_name like tbtco-jobname,
lv_job_nr like tbtco-jobcount,
lv_job_released type c,
lv_job_start_sofort type c,
lv_print_parameters type pri_params.
lv_job_name = 'Z_test'. " your background program name
call function 'JOB_OPEN'
exporting
jobname = lv_job_name
importing
jobcount = lv_job_nr
exceptions
cant_create_job = 1
invalid_job_data = 2
jobname_missing = 3
others = 4.
if syst-subrc = 0.
*submit job with all the selection screen params...
submit (lv_job_name)
with applfile = applfile
with p_lines = p_lines
with rfc_dest = rfcdest
with p_selmtd = lv_selmtd
with px_shsim = px_shsim
with px_sherr = px_sherr
user syst-uname
via job lv_job_name number lv_job_nr and return.
if sy-subrc = 0.
call function 'JOB_CLOSE'
exporting
jobcount = lv_job_nr
jobname = lv_job_name
strtimmed = 'X'
importing
job_was_released = lv_job_released
exceptions
cant_start_immediate = 1
invalid_startdate = 2
jobname_missing = 3
job_close_failed = 4
job_nosteps = 5
job_notex = 6
lock_failed = 7
others = 8.
if syst-subrc <> 0.
message i162(00) with
'An error occured while closing the background job.'.
stop.
endif.
endif.
endif.
skip 1.
write: / 'Background process', lv_job_name ,
'called successfully' no-gap.
write: / 'You can check the job in transaction SM37'.