Foundations Data Dictionary

AsyncJobRecord__c

Label: Async Job Record

For Certinia internal use only. Contains the list of queueable asynchronous job records.

Field NameField LabelCreated in VersionDescriptionTypeRequiredDefault Value
ApexJobId__c Apex Job ID Spring 2024 The unique ID of the related Apex Job.

Text(18) false
ApexRequestId__c Apex Request ID Summer 2024 The request ID of the queueable Apex Job.

Text(50) false
CallableName__c Callable Name Spring 2024 A class that performs tasks for the job.

Text(255) true
Complete__c Complete Spring 2024 Indicates that the record process is complete.

Formula:
AND( OR(ISPICKVAL(Status__c, 'COMPLETE'), ISPICKVAL(Status__c, 'ERROR')), OR( ISBLANK(FinalizerCallableName__c), ISPICKVAL(FinalizerStatus__c, 'COMPLETE'), ISPICKVAL(FinalizerStatus__c, 'ERROR') ) )
Checkbox
Delay__c Delay Spring 2024 Indicates the delay, in minutes, to be applied the enqueued job.

Number(4,0) false
DependenciesLastChecked__c Dependencies Last Checked Spring 2024 Indicates the timestamp for when the last dependency check was performed. This only applies to dependent jobs.

DateTime false
DependencyStatus__c Dependency Status Spring 2024 Indicates the dependency status of the job record.

Picklist:
BLOCKED
NONE
RELEASED
true
Error__c Error Spring 2024 The error details when the async job fails.

LongTextArea(32768)
ExternalJobReference__c External Job Reference Spring 2024 An optional user supplied identifier for the job record.

Text(40) false
Failed__c Failed Spring 2024 Indicates that the record process is failed.

Formula:
OR( ISPICKVAL(Status__c, 'ERROR'), ISPICKVAL(FinalizerStatus__c, 'ERROR') )
Checkbox
FinalizerApexJobId__c Finalizer Apex Job ID Spring 2024 The unique ID of the related Apex Job.

Text(18) false
FinalizerApexRequestId__c Finalizer Apex Request ID Summer 2024 The request ID of the finalizer queueable Apex Job.

Text(50) false
FinalizerCallableName__c Finalizer Callable Name Spring 2024 A class that performs additional tasks after completing the main job, regardless of its success.

Text(255) false
FinalizerError__c Finalizer Error Spring 2024 Displays the error details when the finalizer fails.

LongTextArea(32768)
FinalizerResult__c Finalizer Result Value Spring 2024 Displays the result of the finalizer callable execution.

LongTextArea(131072)
FinalizerRunsOnlyOnError__c Finalizer Runs On Error Winter 2025 If selected, the finalizer will only be enqueued when there is an uncaught error.

Checkbox false
FinalizerStatus__c Finalizer Status Spring 2024 Displays the status of the finalizer part of the async job, if it has one.

Picklist:
COMPLETE
ENQUEUED
ERROR
NOT_STARTED
RUNNING
true
LastDependencyCount__c Last Dependency Count Spring 2024 Indicates the number of dependencies found during the last job check by the monitor job.

Number(18,0) false
Mode__c Mode Spring 2024 Indicates the execution mode of the job. This can be either USER_MODE or SYSTEM_MODE.

Picklist:
SYSTEM_MODE
USER_MODE
true
Parameters2__c Callable Parameters 2 Winter 2025 The storage to hold callable parameter 2 for the job. The supported formats are JSON, Text, CSV, etc.

LongTextArea(131072)
Parameters3__c Callable Parameters 3 Winter 2025 The storage to hold callable parameter 3 for the job. The supported formats are JSON, Text, CSV, etc.

LongTextArea(131072)
Parameters4__c Callable Parameters 4 Winter 2025 The storage to hold callable parameter 4 for the job. The supported formats are JSON, Text, CSV, etc.

LongTextArea(131072)
Parameters__c Callable Parameters Spring 2024 The storage to hold callable parameter 1 for the job. The supported formats are JSON, Text, CSV, etc.

LongTextArea(131072)
ProcessDescription__c Process Description Winter 2025 The description of the process.

TextArea false
ProcessUUID__c Process UUID Spring 2025 ID or UUID used to monitor the process of the asynchronous jobs.

Text(40) false
Result__c Result Value Spring 2024 Displays the result of the async job record.

LongTextArea(131072)
StalledJobCount__c Stalled Job Count Spring 2024 The number of times the job is checked for dependencies and failed to progress.

Number(18,0) false
Status__c Status Spring 2024 The status of the asynchronous job.

Picklist:
COMPLETE
ENQUEUED
ERROR
NOT_STARTED
RUNNING
true
Succeeded__c Succeeded Spring 2024 Indicates that the record process is succeeded.

Formula:
AND( ISPICKVAL(Status__c, 'COMPLETE'), OR( ISBLANK(FinalizerCallableName__c), ISPICKVAL(FinalizerStatus__c, 'COMPLETE') ) )
Checkbox
Worker__c Worker Spring 2024 Indicates the Job is a worker job generated by the async framework.

Checkbox false


© Copyright 2009–2025 Certinia Inc. All rights reserved. Various trademarks held by their respective owners.