Approver related list not visible in Risk Mitigation formIssue The Approver related list is not visible in the Risk Mitigation - Open Risk mitigation form (sn_risk_mitigation_task)- Open any record which is in the Draft /WIP state- Under the related list, the Approver tab is missingReleaseN/AResolutionThis is an expected behaviour as per the OOB configurations - The Display Business rule Scratchpad entry to hide/show approvers checks for the state values. sys_script.do?sys_id=5d195a1043a042101aced2dd5bb8f2ba if(current.state == '1' || current.state == '2'){ g_scratchpad.hideApproversRelatedList = true; } - Based on the state value -> The Client Script hide approvers related list, hides the approvers related list. sys_script_client.do?sys_id=cdcb2a9843a042101aced2dd5bb8f26c if (g_scratchpad.hideApproversRelatedList) { g_form.hideRelatedList('sysapproval_approver.sysapproval'); }