---
sourceDocument: Australia Employee Service Management
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/pt-BR/employee-service-management

 Release :

    - australia

ft:locale :

    - pt-BR

ft:publication_title :

    - Australia Employee Service Management

ft:clusterId :

    - emplsm

bundleId :

    - emplsm

workflow :

    - Employee


---

# Configure extension point for notifications

# Configure extension point for notifications {#ariaid-title1}

* Versão de lançamento: Australia
* 
* Atualizado 12 de mar. de 2026
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 1 min. de leitura

Add or modify an Action and its functionality on the Standard ticket page for a contract request.

## Antes de Iniciar

Role required: Admin  
* Review the configuration of the script include, scripted extension points, and widgets.
* For more information about using and customizing the script includes, see [Script includes](https://servicenow.com/docs/bundle/vancouver-application-development/page/script/server-scripting/concept/c_ScriptIncludes.html).
* Ensure that you've set the application scope to this application.
{#cmpro-configure-action-extension-point-email-notification-admin__ul_pl1_lyr_h5b}

## Por Que e Quando Desempenhar Esta Tarefa

The base system ApprovalNotificationWorkspaceURLExt script provides the configuration of common actions for all request types. You can override these common actions for a specific request type or add more
actions.

## Procedimento

Add or modify an action in the scripted extension point.

1. Navigate to AllSystem Extension PointsScripted Extension Points.
2. Search and select the ApprovalNotificationWorkspaceURLExt extension point.  
   Figura 1. Approval notification extension point
3. Add or modify an implementation for a practice area.  
   To add a new implementation for a practice area, click the Create implementation related link.  
   On the Script Include form, update the script as required.
   1. To restrict this implementation to the practice area, add the following code to the canHandle parameter:  

           appliesTo(parentRecord) {
                  return <tablename of the parent record>;
              },
              /**
               * @return {String} workspace to which the user can be navigated to view the contract request from notification
               * The navigation URL is formed in runtime as '/now/' + (getWorkspaceURL return value/output)  + '/record/' + table '/' + sysID.
               *
               * For example:
               * getWorkspaceURL output is  "legal/counsel-center"
               * URL formed in runtime is '/now/legal/counsel-center/record/' + table + '/' + sysId
               */
              getWorkspaceURL: function() {
                  return "legal/counsel-center";
           
              },

   2. To add a new action, update the process method.

      For reference, see an existing process method of the DefaultLegalTicketActions script include or
      the implementation of another practice area.
   {#cmpro-configure-action-extension-point-email-notification-admin__ul_w2k_lwy_h5b}
4. Click Update.
{#cmpro-configure-action-extension-point-email-notification-admin__substeps_vbj_xr5_h5b}

## Resultado

To see a list of available default email notifications, go to AllSystem NotificationNotifications and search for the Contracts Support category.

To create new email notifications, see [Create an email notification](https://www.servicenow.com/docs/access?context=t_CreateANotification&version=australia&pubname=australia-platform-administration&ft:locale=en-US).

