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

submit in background

Former Member
0 Likes
427

Is there any program to submit in background, ALV report?

I tried in job_open and job_close, but nto worked out.

2 REPLIES 2
Read only

andreas_mann3
Active Contributor
0 Likes
397

Hi,

try fm K_BATCH_REQUEST

A.

Read only

michael-john_turner
Active Participant
0 Likes
397

Hi,

You need to use the following function modules:

- JOB_CREATE - create the job

- JOB_SUBMIT - add a step in the job

- JOB_CLOSE - to pass the job to the background processing subsystem

Alternatively, you can use SUBMIT... VIA JOB, which is easier but gives you less control.

MJ