Scheduled Job not updating Vulnerability Group's Risk ScoreIssue Scheduled Job not updating Vulnerability Group's Risk ScoreResolutionThis was happening because there is no record on the "sn_vul_update_manifest" table related to the VUL record.A list of Vulnerability Groups to be updated is maintained in the sn_vul_update_manifest table.A VUL record is inserted into the sn_vul_update_manifest table whenever VITs are associated with that VUL, and whenever those VITs are updated and deleted. The "Add update record to manifest" BR on the sn_vul_m2m_vul_group_item table triggers that behavior.Here is the code that our Product team shared if you want to manually update the risk score for that VUL record (please replace the sys id with an actual sys id of the group).new sn_vul.RollupCalculatorUtil().handleRollupManifest('');new sn_vul.VulnerabilityUtils().countforVG('');NEXT STEPS:1. Navigate to System Definition > Scripts - Background2. Paste in the script above and replace the related tags3. Click the Run Script buttonHere is a sample of what the code looks like when a Sys ID is populated:new sn_vul.RollupCalculatorUtil().handleRollupManifest('625076521391f600b9edf1e2e144b00c');new sn_vul.VulnerabilityUtils().countforVG('625076521391f600b9edf1e2e144b00c');