Strategic Planning Workspace and Strategic Planning modules are missing( module name is incorrect)DescriptionStrategic Planning Workspace and Strategic Planning modules are missing( module name is incorrect)Steps to Reproduce Try to Navigate to Strategic Planning Workspace or Strategic Planning modules You will not be able to find themWorkaroundfor workaround, please run below script which should resolve issue// START SCRIPTgs.info("app-alignment-workspace-advanced: Start of glidefix to update APW name");var ALIGN_APP = '39e40e49c7942010d302670f6ec26066';var ALIGN_APP_MODULE = '27350e49c7942010d302670f6ec260ed';var ALIGN_UX_PAGE_REGISTRY = '51dcf024c7002010d302670f6ec2606c';var appGr = new GlideRecord('sys_app_application');if (appGr.get(ALIGN_APP)) {appGr.setValue('sys_name', 'Strategic Planning');appGr.setValue('title', 'Strategic Planning');appGr.setValue('description', 'Strategic Planning');appGr.update();}var moduleGr = new GlideRecord('sys_app_module');if (moduleGr.get(ALIGN_APP_MODULE)) {gs.info(moduleGr.getValue('view_name'));moduleGr.setValue('mobile_title', 'Strategic Planning Workspace');moduleGr.setValue('sys_name', 'Strategic Planning Workspace');moduleGr.setValue('title', 'Strategic Planning Workspace');moduleGr.update();}var uxPageRegistryGr = new GlideRecord('sys_ux_page_registry');if (uxPageRegistryGr.get(ALIGN_UX_PAGE_REGISTRY)) {uxPageRegistryGr.setValue('sys_name', 'Strategic Planning Workspace');uxPageRegistryGr.setValue('title', 'Strategic Planning Workspace');uxPageRegistryGr.update();}gs.info("app-alignment-workspace-advanced: End of glidefix to update APW name");// END SCRIPTRelated Problem: PRB1696769