-
Notifications
You must be signed in to change notification settings - Fork 0
The AsyncActionScheduledJobItem__mdt Custom Metadata Type
GitHub Action edited this page Sep 25, 2025
·
1 revision
The AsyncActionScheduledJobItem__mdt custom metadata type links individual processors to scheduled jobs, defining which async action processors should be executed when a scheduled job runs.
AsyncActionScheduledJobItem records create the association between scheduled jobs and processors. Each record represents a single processor that will be launched when its parent scheduled job executes.
Scheduled job items provide:
- Processor Association - Link specific processors to scheduled jobs
- Selective Execution - Enable/disable individual processors within a schedule
- Flexible Grouping - Organize processors into logical scheduling groups
- Execution Control - Fine-tune which processors run when
| Field API Name | Label | Data Type | Required | Description |
|---|---|---|---|---|
DeveloperName |
API Name | Text(40) | Yes | Unique identifier for the scheduled job item |
MasterLabel |
Label | Text(40) | Yes | Human-readable name for the item |
ScheduledJob__c |
Scheduled Job | Metadata Relationship | Yes | Reference to AsyncActionScheduledJob__mdt |
AsyncActionProcessor__c |
Async Action Processor | Metadata Relationship | Yes | Reference to AsyncActionProcessor__mdt |
Enabled__c |
Enabled | Checkbox | No | Controls whether this processor runs with the schedule |