Loading
Insurance
Table of Contents
Select Filters

          No results
          No results
          Here are some search tips

          Check the spelling of your keywords.
          Use more general search terms.
          Select fewer filters to broaden your search.

          Search all of Salesforce Help
          Run Batch Jobs for Insurance

          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.

          1. Click the quick access menu (Setup gear icon), and click Developer Console.
          2. From the Debug menu, select Open Execute Anonymous Window.
          3. 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);
            
          4. Click Execute.
          5. Repeat steps 3 and 4 with the remaining code blocks.
           
          Loading
          Salesforce Help | Article