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

job scheduling

Former Member
0 Likes
507

what is job scheduling??what is its importance???how to schedule job???

what is job scheduling??what is its importance???how to schedule job???

4 REPLIES 4
Read only

Former Member
0 Likes
479

Hi,

Many times its needed to run the jobs/programs at prededefined schedule, without user intervention / triggers.Thus Job scheduling is required.

[Very useful SAP Help Link |http://help.sap.com/saphelp_nw2004s/helpdata/en/c4/3a7f8750521]

[Scheduling background jobs by triggering events|http://www.saptechnical.com/Tutorials/ABAP/BackgroundJob/OnEvent.htm]

Use JOB_OPEN to create a background job. The function module returns the unique ID number which, together with the job name, is required for identifying the job.

After OPEN, add job steps to it with JOB_SUBMIT

and

JOB_CLOSE sends job for processing.

TCODES: SM36, SM37

-

Achyut

Edited by: Achyut Dake on May 8, 2008 2:12 PM

Read only

Former Member
0 Likes
479

Hi Somesh

Job Scheduling means planning to execute the program at a particular time.

Importance : scheduling plays key role in business process flow.

Say, in the daily transactions, we come across many orders ie. purchase orders, sales orders etc... So there's need to update all to related database tables, and it is preferred to do once for all not like one by one. So, simply all these are scheduled to run at night time and that too we can reduce system load rather than doing at day time.

How to schedule.

Go to T.code SM36

there we find options to give date, time, status etc..

To see the status of scheduled jobs, go to SM37.

Also we can do it manually by using editor program.

We've function modules, BDC_OPEN, BDC_SUBMIT, BDC_CLOSE.

If u want program, i can send you.

If it helpful to you, reward me plz.

Thanks

Suren

Read only

0 Likes
479

hi suren

thanks alot.

plz send me progrm using function modules....

if u dont ming plz send me u r mail id...

thanks in advance

somesh

Read only

0 Likes
479

thanks