Change Risk Assessment overrides an Assessments UI Action which has left the UI Actions out of sync and condition is missing survey_creator role check with owner checkDescriptionChange Risk Assessment overrides an Assessments UI Action which has left the UI Actions out of sync. The Survey and Assessments UI Action has additional conditions that the Change Risk Assessment does not have and it would be ideal to have a single condition encompassing all functionality.Steps to Reproduce 1. Install plugin: Change Management - Risk Assessment [com.snc.change_management.risk_assessment]Notice that "Assign Assessment" UI Action condition is now missing: (gs.hasRole("survey_creator") && g_scratchpad.isOwner)WorkaroundModify UI Action Assign Assessment sys_id cfc9d6019f031100d7f5f79ff57fcf7c changing the condition to: new AsmtMetricsUtil().showAssignAssessment() Modify sys_script_include: 4d0fd338730023009ecc234ffff6a7d3 AsmtMetricsUtil adding the following function: showAssignAssessment: function() { return (gs.hasRole('assessment_admin') || (gs.hasRole('survey_creator') && g_scratchpad.isOwner)) && current.schedule_type == 'on_demand' && current.evaluation_method == 'assessment' && current.active && current.publish_state != 'draft' && current.sys_class_name != 'change_risk_asmt'; }, Related Problem: PRB1930532