2008 Jun 12 8:00 AM
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.
2008 Jun 12 8:15 AM
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
2008 Jun 12 8:02 AM
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.
2008 Jun 12 8:03 AM
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
2008 Jun 12 8:04 AM
Hi,
go to transaction SM36 and use the job wizard.
it´s very simple and it helps a lot.
Best regards.
2008 Jun 12 8:15 AM
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
2008 Jun 12 8:34 AM
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