KBI 220033 Bitmap Settings For Archive Status
Version
The Argent Job Scheduler 3.1A-0001 and later
Date
12 Jan 2000
Summary
How to define the Jobs to archive.
Technical Background
The jobs to be archived are controlled by the Rollover registry key:
HKEY_LOCAL_MACHINE\Software\Argent\TheArgentJobScheduler\Rollover
The job status is controlled by the subkey JobStatus.
It is a bitmap value, composed by bitwise OR of the following value:
#define UIJOB_BIT_COMPLETED 1 #define UIJOB_BIT_FAILED 2 #define UIJOB_BIT_ABORTED 4 #define UIJOB_BIT_OTHERS 8
For example:
Completed and Failed: the value of the string is “3” (1 + 2).
Completed, Failed and Aborted: the value of the string is “7” (1 + 2 + 4).
Resolution