Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
ScheduleTPMAccrualProcessChain Class
This Apex class initiates TPM Accrual Process orchestrator after ensuring the accrual
export configuration is successfully updated.
Constructors
The following are the two constructors for ScheduleTPMAccrualProcessChain.
- ScheduleTPMAccrualProcessChain(Date referencedate, List<String> salesorgs, String ingestionmode)
- ScheduleTPMAccrualProcessChain()
ScheduleTPMAccrualProcessChain(Date referencedate, List<String> salesorgs, String ingestionmode)
Schedules the accrual process chain at a specific reference date, based on the list of provided sales organizations, and with a specific mode of operation.
- API Version
- 65.0 and later
- Signature
-
1global ScheduleTPMAccrualProcessChain(Date referencedate, List<String> salesorgs, String ingestionmode) - Signature Parameters
-
- referencedate: Enter the reference date in date format.
- salesorgs: Enter the list of sales org names.
- ingestionmode: Enter the type of ingestion mode. The supported values are initial, partial, and full.
ScheduleTPMAccrualProcessChain()
Schedules the Accrual Process Chain at the current date, based on all sales organizations with accruals enabled, and with mode of operation initial.
- API Version
- 65.0 and later
- Signature
-
1global ScheduleTPMAccrualProcessChain()