您在此处:
使用自动启动的流运行数据处理引擎定义(受管软件包)
将数据处理引擎定义与自动启动的流相关联。然后,手动运行流,或通过 Apex、进程或 REST API 调用它。您可以复制和使用提供的数据处理示例流,或根据您的要求创建流。

使用更普遍的搜索词。
选择更少的筛选器,并扩大搜索范围。
将数据处理引擎定义与自动启动的流相关联。然后,手动运行流,或通过 Apex、进程或 REST API 调用它。您可以复制和使用提供的数据处理示例流,或根据您的要求创建流。
| 适用于:Lightning Experience |
| 适用于:Professional、Enterprise 和 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.