Update – We can use the below option – Customer Service Admin Center >> Operations >> Miscellaneous >> New and upcoming features – Multisession Layout Improvements
With the Enhanced multisession layout in Customer Service Workspace, we have different sessions open in different tabs at the top and different tabs inside each session, along with the Navigation on the left.
To revert to the old default workspace or legacy navigation (deprecated), open the developer tools in the browser.
And paste the following command in the Console tab.
Xrm.Utility.getGlobalContext().saveSettingValue(“msdyn_MultiSessionLayoutImprovements”,false)
Or
Xrm.Utility.getGlobalContext().saveSettingValue(“msdyn_MultisessionNavigationImprovements”,false)
We can see the layout changed to the legacy one–
To enable the new enhanced layout (recommended) back, in the console window of developers tools paste the below command.
Xrm.Utility.getGlobalContext().saveSettingValue(“msdyn_MultiSessionLayoutImprovements”,true)
Hope it helps..
One thought on “How to – switch between Enhanced and Legacy (Default) multisession workspace in Customer Service Workspace”