위치:
자동 실행 플로를 사용하여 데이터 처리 엔진 정의 실행(관리 패키지)
데이터 처리 엔진 정의를 자동 실행 플로와 연결합니다. 그런 다음, 수동으로 플로를 실행하거나 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.