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,

Using a List of Records

Delete Multiple Records

View: http://localhost:8080/archibus/schema/ab-products/solutions/parts/grid/ab-ex-report-grid-multiselect-workflow-rules.axvw