Send multiple records to a workflow rule
Send multiple records to a workflow rule
Technologies > User Interface Add-Ins > Parts for Reports > Running a Workflow Rule on Multiple Rows
An action may call a workflow rule, passing multiple selected records:
<action id="verify">
<title>Verify Selected Items</title>
<command type="workflowRule" ruleId="AbSolutionsViewExamples-LogicExamples-verifyActions"/>
The workflow rule method then receives the list of records as a parameter:
public void verifyActions(List<DataRecord> pkRecords) { ... }
Call a workflow rule from the view
To call a workflow rule from JavaScript,