詳細情報:
自動起動フローを使用したデータ処理エンジン定義の実行 (管理パッケージ)
データ処理エンジン定義を自動起動フローに関連付けます。次に、フローを手動で実行するか、Apex、プロセス、またはREST APIで呼び出します。提供されているデータ処理サンプルフローをコピーして使用したり、要件に従ってフローを作成したりできます。

より一般的な検索語を使用する。
絞り込み条件を減らして、検索範囲を広げる。
データ処理エンジン定義を自動起動フローに関連付けます。次に、フローを手動で実行するか、Apex、プロセス、またはREST APIで呼び出します。提供されているデータ処理サンプルフローをコピーして使用したり、要件に従ってフローを作成したりできます。
| 使用可能なインターフェース: Lightning Experience |
| 使用可能なエディション: Professional Edition、Enterprise Edition、および Unlimited Edition |
これは Financial Services Cloud 管理パッケージ機能です。

//Trigger Code
trigger InitiateCalcJob on MulesoftJob__c (after update) {
for (MulesoftJob__c job: Trigger.new) {
if(Trigger.oldMap.get(job.id).Status__c == 'In Progress' && job.Status__c == 'Completed'){
RunFlowFuture.runFlow(job.RBL_Job_Name__c);
}
}
}
// Future method code
global class RunFlowFuture {
public static Flow.Interview.Data_Processing_Flow rblFlow {get; set;}
@future
public static void runFlow(String ruleName) {
if(ruleName != null){
Map<String, Object> myMap = new Map<String, Object>();
myMap.put('v1', 'String');
rblFlow = new Flow.Interview.Data_Processing_Flow(myMap);
rblFlow.start();
}
}
}

We use three kinds of cookies on our websites: required, functional, and advertising. You can choose whether functional and advertising cookies apply. Click on the different cookie categories to find out more about each category and to change the default settings.
Privacy Statement
Required cookies are necessary for basic website functionality. Some examples include: session cookies needed to transmit the website, authentication cookies, and security cookies.
Functional cookies enhance functions, performance, and services on the website. Some examples include: cookies used to analyze site traffic, cookies used for market research, and cookies used to display advertising that is not directed to a particular individual.
Advertising cookies track activity across websites in order to understand a viewer’s interests, and direct them specific marketing. Some examples include: cookies used for remarketing, or interest-based advertising.