ProjectVarianceBatch__c
Label: Project Variance Batch Stores the status and details of Project Variance Batch Apex jobs.
ApexJobId__c |
Apex Job ID |
Spring 2019 |
Unique identifier for the current batch Apex job.
|
Text(18) |
|
BatchProcess__c |
Batch Process |
Spring 2019 |
Lookup to the batch process record. The batch process record is deleted automatically if the process completes successfully.
Looks up to: fflib_BatchProcess__c
|
Lookup |
|
NotificationType__c |
Notification Type |
Spring 2019 |
The type of notification sent when the process completed: Successful, Failure, or Mixed.
Formula: IF( TotalNumberOfLogs__c = 0, 'Undefined', IF ( AND( TotalNumberOfErrors__c=0,TotalNumberOfAborts__c=0,TotalNumberOfExternal__c=0), 'Successful', IF(TotalNumberOfErrors__c = TotalNumberOfLogs__c, 'Failure', IF(TotalNumberOfAborts__c > 0, 'Failure', IF( TotalNumberOfExternal__c > 0, 'Failure', 'Mixed' ) ) ) ) )
|
Text |
|
Status__c |
Status |
Spring 2019 |
The current status of the batch job: "Processing", "Complete", or "Error".
|
Picklist: Complete Error Processing |
|
TotalNumberOfAborts__c |
Total Number of Aborts |
Spring 2019 |
The number of logs where Log Type is Abort.
|
Summary |
|
TotalNumberOfErrors__c |
Total Number of Errors |
Spring 2019 |
The number of logs where Log Type is Error.
|
Summary |
|
TotalNumberOfExternal__c |
Total Number of External |
Spring 2019 |
The number of logs where Log Type is External.
|
Summary |
|
TotalNumberOfLogs__c |
Total Number of Logs |
Spring 2019 |
The total number of logs.
|
Summary |
|
|