Create_Billing_Documents_Batch__c
Label: Create Billing Documents Batch Stores the status and details of Create Billing Documents Batch Apex jobs.
Apex_Job_Id__c |
Apex Job ID |
Fall 2019 |
Unique identifier for the current batch Apex job.
|
Text(18) |
|
Batch_Process__c |
Batch Process |
Fall 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 |
|
Notification_Type__c |
Notification Type |
Fall 2019 |
The type of notification sent when the process completed: Successful, Failure, or Mixed.
Formula: IF( Total_Number_Of_Logs__c = 0, 'Undefined', IF ( AND( Total_Number_Of_Errors__c=0,Total_Number_Of_Aborts__c=0,Total_Number_Of_External__c=0), 'Successful', IF(Total_Number_Of_Errors__c = Total_Number_Of_Logs__c, 'Failure', IF(Total_Number_Of_Aborts__c > 0, 'Failure', IF( Total_Number_Of_External__c > 0, 'Failure', 'Mixed' ) ) ) ) )
|
Text |
|
Status__c |
Status |
Fall 2019 |
The current status of the batch job: "Processing", "Complete", or "Error".
|
Picklist: Complete Error Processing |
|
Total_Number_Of_Aborts__c |
Total Number of Aborts |
Fall 2019 |
The number of logs where Log Type is Abort.
|
Summary |
|
Total_Number_Of_Errors__c |
Total Number of Errors |
Fall 2019 |
The number of logs where Log Type is Error.
|
Summary |
|
Total_Number_Of_External__c |
Total Number of External |
Fall 2019 |
The number of logs where Log Type is External.
|
Summary |
|
Total_Number_Of_Logs__c |
Total Number of Logs |
Fall 2019 |
The total number of logs.
|
Summary |
|
|