Monday, October 24, 2011

Back Ground Job Scheduling in ABAP

Methods for Controlling Job Scheduling are
1. Full Control Method
2. Job Variant Method

Full Control Method:
For Full Control Method Predefined Functions are
JOB_OPEN
JOB_SUBMIT
JOB_CLOSE

For Back Ground Job Scheduling predefined Table is "BTCEVTJOB"
Fields are JOBNAME
JOBCOUNT

JOBNAME : Job Name can hold identity to monitor background process.
JOBCOUNT : Job Count Provides number of ABAP objects involved in Background with one Identity.

JOB_OPEN : Job_Open Creates Identity to Monitor Back Ground Process.
JOB_SUBMIT : It Submits ABAP PRogram to the System to Execute in Back Ground as per Schedule Date.
JOB_CLOSE : It can close Identity once back ground process completed successfully.

VARIANTS : With Variants Functionality System can enter Input values to program for back ground execution. Variants are mandatory for back ground and optional for fore ground.

No comments:

Post a Comment

Application with Internal Table

Having screen painter with layout fields are vender, name, city operations. Select "SE80" -> Edit object Select program ->...