VRM Tiering Assessments are not appearing in user's "My Assessments and Surveys" menuIssue When a vendor tiering assessment (table sn_vdr_risk_asmt_vdr_tiering_assessment) is created and assigned to a user it does not appear under "Self Service -> My Assessments & Surveys".CauseThe assessment due date was in the past and violate with one of the condition set in the "assessment_list" UI page https://<instance name>.service-now.com/nav_to.do?uri=sys_ui_page.do?sys_id=0d9bf9e4d7321100158ba6859e610342 In the above UI Page record, there are below conditions that need to be met in order for an assessment or survey to be shown on the user's "My Assessments and Surveys" once it's assigned. ****************************** var gr = new GlideRecord("asmt_assessment_instance"); gr.initialize(); gr.addQuery("metric_type.active", true); gr.addQuery("due_date", '>=', new GlideDateTime().getLocalDate().getValue()); gr.addQuery("metric_type.publish_state", "published"); gr.addQuery("preview", false); gr.addQuery("metric_type.evaluation_method", "!=", "attestation_v2"); gr.addQuery("metric_type.evaluation_method", "!=", "risk_assessment"); ****************************** An assessment or survey needs to match all these conditions to let the record show in the user's "My Assessments and Surveys"ResolutionFor this user case, the due date of the assessment was in the past, therefore changing the due date to a future date will fix the issue and show in "My Assessments and Surveys".