You are here:
Create Insurance Permission Sets
Use anonymous Apex to create Insurance Permission Sets.
- Click the quick access menu (Setup gear icon), and click Developer Console.
- From the Debug menu, select Open Execute Anonymous Window.
-
Paste the following code into the Enter Apex Code dialog box:
Map<String, Object> inputs = new Map<String, Object>(); Map<String, Object> output = new Map<String, Object>(); Map<String, Object> options = new Map<String, Object>(); vlocity_ins.VlocityInsUpgradeMethods vium = new vlocity_ins.VlocityInsUpgradeMethods(); vium.invokeMethod('createInsurancePermissionSets', inputs, output, options); - Click Execute.

