You are here:
Run Batch Jobs for Insurance
Insurance provides several Apex batch jobs that correct incomplete or erroneous Insurance records in your org. Run these batch jobs to initiate them.
- Click the quick access menu (Setup gear icon), and click Developer Console.
- From the Debug menu, select Open Execute Anonymous Window.
-
Paste one of these code blocks into the Enter Apex
Code dialog box.
Run Fix Product Attribute Metadata batch job:
vlocity_ins.FixProductAttribJSONBatchJob attrJSONBatchJob = new vlocity_ins.FixProductAttribJSONBatchJob();ID batchprocessid3 = Database.executeBatch(attrJSONBatchJob);System.debug ('Fix attribute JSON:' + batchProcessId3);Add Source Type Product Attribute Rules batch job:
vlocity_ins.AttributeRuleUpgradeBatch upgradeAttrRuleBatchJob = new vlocity_ins.AttributeRuleUpgradeBatch();ID batchProcessId2 = Database.executeBatch(upgradeAttrRuleBatchJob);System.debug('Add source type to attribute rule process id:' + batchProcessId2);Fix Incomplete Override Definition batch job:
vlocity_ins.FixIncompleteOverrideDefinitionBatch fixOverrideBatchJob = new vlocity_ins.FixIncompleteOverrideDefinitionBatch();ID batchProcessId1 = Database.executeBatch(fixOverrideBatchJob);System.debug('Fix Incomplete Override Definition process id:' + batchProcessId1); - Click Execute.
- Repeat steps 3 and 4 with the remaining code blocks.

