Project Manager can still create Baseline even though ACLs and Create Baseline UI Action locked down to specific roleDescription<!-- div.margin { padding: 10px 40px 40px 30px; } table.tocTable { border: 1px solid; border-color: #e0e0e0; background-color: #fff; } .title { color: #d1232b; font-weight: normal; font-size: 28px; } h1 { color: #d1232b; font-weight: normal; font-size: 21px; margin-bottom: 5px; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #cccccc; } h2 { color: #646464; font-weight: bold; font-size: 18px; } h3 { color: #000000; font-weight: bold; font-size: 16px; } h4 { color: #666666; font-weight: bold; font-size: 15px; } h5 { color: #000000; font-weight: bold; font-size: 13px; } h6 { color: #000000; font-weight: bold; font-size:14px; } ul, ol { margin-left: 0; list-style-position: outside; } --> Symptoms 'Create new baseline' action does not recognize updated ACLs for pm_project_baseline or planned_task_baseline. Even though ACLs for these tables are updated to NOT allow users with 'project_manager'* from creating Baselines, this action is still possible for Project Managers in Planning Console using 'more options' method * legacy role for it_project_manager Release Kingston, London, Madrid + Cause This is expected behavior. In order to prevent Users with 'project_manager' from seeing the 'Create new baseline' action noted above, there is a function in the Script Include 'PlanningConsoleSecurityValidator' that needs to be updated Resolution Line 80: createBaselineAccess: function() { return gs.hasRole('project_manager');}, Open the 'PlanningConsoleSecurityValidator' Script IncludeScroll to line 80On line 81, replace 'project_manager' with your custom role/role of choiceSave/Update Additional Information Note that this is considered a customization. Customizations are typically not supported by customer support.'PlanningConsoleSecurityValidator' only dictates if the 'Create new baseline' action is accessible/displayed. The Script Includes necessary for inserting/creating the Baseline record are 'PlanningConsoleAjax' and 'PmProject'. 'PmProject' is specifically the Script Include that inserts the Baseline record.