Application Development 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: 

Background Jobs Operation Mode

Former Member
0 Kudos

We have scheduled 4 jobs in ECC system , they will run for more than a day . We have selected operation mode as "Night Mode- 7 PM to 7 AM".

We now want to check if this job will be triggered today night once nightmode get triggered and stop once daymode is triggered. We have got some questions to be clarified as we could not find any documentation on this area.

Question-1)What will be the status of 4 job once operation mode change to daytime operation, will it get terminated or

Question-2)Will it resume again 4 pending jobs once nightmode triggered next day or

Question-3)Will it continue in the daytime mode

Purpose of this is to load a big file which will run for more than a day and we want to run this file only in the night time when system load is low. We will appreciate if you can give me feedback on this matter.

Also if this is not possible, any other idea to make this happen

2 REPLIES 2

Former Member

A: Jobs with high priority whose execution is absolutely necessary for further processing.

Class A jobs are always processed before jobs of other classes. If the system has several background work processes, the background processing system reserves at least one process for the processing of A jobs.

B: Jobs that should be run at regular intervals, for example, jobs transferring performance statistics.

Class B jobs are processed before class C jobs.

C: Jobs that neither fit into class A nor in class B and that do not require a higher priority. Class C is the default class.

Reference: [http://www.sap-abap4.com/background-jobs-job-classification-job-prority-and-job-type-33/|http://www.sap-abap4.com/background-jobs-job-classification-job-prority-and-job-type-33/]

Former Member
0 Kudos

thanks