Register Login

SAP BASIS Background Jobs Interview Questions and Answers

Updated May 18, 2018

FAQ: BASIS Background Jobs

1. Q: Can I reserve background work processes for individual applications or users?

A: No. Reservation is only possible for job class A

2. Q: Can I assign priorities (job classes) in the function modules 'JOB_OPEN', 'JOB_SUBMIT' and 'JOB_CLOSE'?

A: No. If jobs of the class A or B must be scheduled automatically, you can do this as follows: You schedule a job of the required class and set it to start periodically.

3. Q: Can I influence the priority of the jobs, regardless of the job class?

A: In distributed systems via a well-designed distribution on the servers - see Note 24092.

4. Q: Can I save job logs in the database (analogously to the spool)?

A: There is no such option in the standard.

5. Q: What happens if the background work process needs to be switched and a job is running in that workprocess?

A: The instance kernel waits for the job to finish before the background workprocess is switched to an alternate type. Jobs are never terminated by the R/3 system to make way for an op-mode switch.

6. Q: Can job definitions be transported into other clients or systems?

A: No. Job definitions contain system specific parameters (target host, user, program, operation mode, ...). Therefore it wouldn't make sense to develop a transport tool.          .

For similar reasons, copying a job across clients is not foreseen. The following trick, however, is possible: Login to the target client (the one, where the job is to be copied to). The user must have job administrator authorizations. Then using transaction SM37 all jobs in all clients can be displayed. With the "Job > Copy" option a job can now be copied from the source client (only steps, no start time).

7. Q: Does the user receive a message if their job is cancelled?

A: No, but as of Release 4.x, cancelled jobs can trigger an alert in RZ20 which allows you to react correspondingly.

8. Q: How can I set that a periodic job is to be deleted after a maximum waiting time?

Example: A job is to run every 15 minutes after 08:00 hours. Automatic deletion is to apply for each of these jobs if it has to wait more than 20 minutes for execution.

A: Schedule the job with the following parameters: Start time 08:00 hours, No start after 08:20 hours, period 15 minutes. For each job, move the earliest and latest start time by 15 minutes in each case.

9. Q: How can I set that a periodic job no longer runs as of a certain date?

A: This is not provided in the standard system. It can, however, be implemented with the function modules 'JOB_OPEN', 'JOB_SUBMIT' and 'JOB_CLOSE' (see Note 4751).

10. Q: Can I restrict the number of jobs that a user can schedule in order to avoid that a single user uses all work processes?

A: No, a user can either schedule/releases job or he cannot.

11. Q: What do I do if an error occurs?

A: See Note 37104

12. Q: What are the house keeping jobs in sap basis?

  • A: SAP_REORG_JOBS - RSBTCDEL - Deletes old background jobs. 
  • SAP_REORG_SPOOL - RSPO0041 - Daily Deletes old spool requests. 
  • SAP_REORG_BATCHINPUT - RSBDCREO - Deletes old batch input sessions. 
  • SAP_REORG_ABAPDUMPS - RSSNAPDL - Daily Deletes old dumps produced by ABAP abnormal terminations 
  • SAP_REORG_JOBSTATISTIC - RSBPSTDE - Monthly Deletes job statistics for jobs not run since the specified date 
  • SAP_REORG_UPDATERECORDS - RSM13002 - Daily Deletes old completed update records 
  • SAP_COLLECTOR_FOR_JOBSTATISTIC - RSBPCOLL - Daily Generates runtime statistics for background jobs 
  • SAP_COLLECTOR_FOR_PERFMONITOR - RSCOLL00 - Hourly Collects system performance statistics


×