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

How can I run a method as a background process?

Former Member
0 Likes
487

Hello,

I am currently working on a report where depending on the number of items selected, the user may choose to process all the items right now or as a background process.

How can I do that in ABAP?

Thanks

Hello,

I am currently working on a report where depending on the number of items selected, the user may choose to process all the items right now or as a background process.

How can I do that in ABAP?

Thanks

2 REPLIES 2
Read only

Former Member
0 Likes
445

To run a job in the background it has to be scheduled as batch job. You would usually do that using transaction SM36. As I understand your problem you want to schedule such a job directly from your coding. You may want to have a look at function group BTCH. It overs quite a few FMs to programmatically add a batch job.

regards

Daniel

Read only

0 Likes
445

Alirhgt, thanks for the information. Looks like FG BTCH has what I need.

Regards

Paul