Hide "Template Applied" pop-up in Service Operations WorkspaceIssue In Service Operations Workspace, apply a template to an Incident and observe that a "Template applied" message appears.ReleaseAllResolutionUnfortunately, there is no specific System Property or the OOB Configuration available which would remove the message from the WorkspacesAn existing Idea request was made but wasn't considered as the messages appearing are working as per product design and there are no changes planned in current or upcoming releases.https://support.servicenow.com/ideas?id=view_idea&sysparm_idea_id=ffd13227db720c5c14d6fb2439961984&sysparm_idea_table=x_snc_com_ideation_idea&sysparm_module_id=enhancement_requestsHowever if you wish to clear the Info message displayed on the FORM after applying the template, you can use the below API in the On-Change Client Script.g_form.clearMessages();Adding this function in an on-change client script which has highest order would clear the messages displayed on the FORM.→ Removes informational and error messages added with g_form.addInfoMessage() and g_form.addErrorMessage() from the top of the form..Please refer to the below Developer document:https://developer.servicenow.com/dev.do#!/reference/api/xanadu/client/c_GlideFormAPI#r_GlideFormClearMessagesNOTE : This will be considered as a customization request