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

Background job scheduling.

Former Member
790

Hi all,

Can anyone let me know the steps to schedule a background job?

I have a program and i want that to run every night automatically. How do i schedule this?

Regards,

Sandra.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
764

hey sandra,

well u can do background job scedhuling using the folllowing transaction..

sm36 by using the job scehduling wizard.

the stpes are:

1. Call transaction SM36.

2. Give a job name.

3. Set the job?s priority, ie. High, Medium or Low priority.

4. Define when the job is to start by choosing Start Condition and completing the appropriate selections. If the job is to repeat, or be periodic, check the box at the bottom of this screen.

5. Define the job?s steps by choosing Step, then specify the ABAP program to be used for each step.

6. Save the fully defined job to submit it to the background processing system.

7. Release the job.

For scheduling the job to run every night automatically.

In start condition go to Date/Time, then enter the time to start the job.

Click on Period Values and choose Daily and save.

this wud solve ur periodical night scheduling problem.

do reward points if possible...

tale care

Hi all,

Can anyone let me know the steps to schedule a background job?

I have a program and i want that to run every night automatically. How do i schedule this?

Regards,

Sandra.

5 REPLIES 5
Read only

GauthamV
Active Contributor
0 Likes
764

hi,

u can create background jobs in sm36.

if u want to know how to create check existing ones in sm37.

also u have lot of posts related to same here.plz check them.

reward points if hlpful.

Read only

Former Member
0 Likes
764

Hi,

1. Run Transaction SM36.

There you can find a button "Job Wizard".

Click that button and follow the procedure.

Else.

go to SE38

type the program name

follow Path Program > Execute > Background

Read only

former_member182371
Active Contributor
0 Likes
764

Hi,

go to transaction SM36 and use the job wizard.

it´s very simple and it helps a lot.

Best regards.

Read only

Former Member
0 Likes
765

hey sandra,

well u can do background job scedhuling using the folllowing transaction..

sm36 by using the job scehduling wizard.

the stpes are:

1. Call transaction SM36.

2. Give a job name.

3. Set the job?s priority, ie. High, Medium or Low priority.

4. Define when the job is to start by choosing Start Condition and completing the appropriate selections. If the job is to repeat, or be periodic, check the box at the bottom of this screen.

5. Define the job?s steps by choosing Step, then specify the ABAP program to be used for each step.

6. Save the fully defined job to submit it to the background processing system.

7. Release the job.

For scheduling the job to run every night automatically.

In start condition go to Date/Time, then enter the time to start the job.

Click on Period Values and choose Daily and save.

this wud solve ur periodical night scheduling problem.

do reward points if possible...

tale care

Read only

Former Member
0 Likes
764

hi,

create a job in sm36

the steps would be

step

here u will be mentioning the kind of object reprt then he name and is varian

then when u can find a check box for periodic mark that then u can find he frequency in which u wnt it to run periodically from the adjascent tab nearby

there u choose the required option

save it

otherwise you can acheive he same functionality wih the funcion modules

JOB_OPEN

JOB_SUBMIT

OB_CLOSE

Reward points if useul