VR - bulk edit "No record will be updated" error is shownIssue 1. Go to sn_vul_vulnerable_item table list view 2. Manually select n number of VITS (please select more than one) 3. Click bulk edit. Desired BehaviorAble to perform Bulk edit for selected VIs. Unexpected/Actual BehaviorOn the "Bulk edit" dialog that opens, an Error is shown - "No record will be updated"ReleaseXanaduCauseThis is out-of-the-box (OOB) behaviour. Standard exclude Invalid CI query further filtering allowed VIs to be Bulk-edited.ResolutionScript below queries the selected rows from the VI list. Script include: VulnerabilityAsyncJobUtil/sys_script_include.do?sys_id=5f0462a72c9a4a10f877a2520a05946f It calls getVICount() with filterType = "vi_list". This function calls _getExcludeVIEncodedQuery() with tableName = "sn_vul_vulnerable_item" to check selected rows against an exclude query. From _getExcludeVIEncodedQuery(), it checks for active autoClose rule below. In this case, it returns false. /sn_vul_cmn_auto_close_rule_list.do?sysparm_query=sys_id%3D195a658d9fcc925070c8b47f6a0a1ce0&sysparm_view= So final exclude query to be appended is:===excludeInvalidCIQuery = 'src_ciISNOTEMPTY^src_ci.cmdb_ciISNOTEMPTY^src_ci.cmdb_ciSAMEAScmdb_ci^substateISEMPTY^ORsubstate!=7';=== Therefore, when selecting VIs from the list, you can filter the list further with the exclude query mentioned above to get a subset of VIs allowed for Bulk-edit.