---
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 legal services on standard ticket

# Configure an Action for legal services on the Standard ticket page {#ariaid-title1}

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

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

## Antes de Iniciar

* Review the configuration of the script include, scripted extension points and service portal widgets for legal services installed with the Legal Service Delivery apps.
* The Actions is one of the sections of a standard ticket page of the Service Portal, so get familiar with the [Standard ticket page](https://www.servicenow.com/docs/access?context=standard-ticket-page&version=australia&pubname=australia-platform-user-interface&ft:locale=en-US) and [Service Portal](https://www.servicenow.com/docs/access?context=c_ServicePortal&version=australia&pubname=australia-platform-user-interface&ft:locale=en-US).
* For more information about configuring service portal widgets, see [Service Portal widgets](https://www.servicenow.com/docs/access?context=service-portal-widgets&version=australia&pubname=australia-platform-user-interface&ft:locale=en-US).
* For more information about using and customizing the script includes, see [Script includes](https://www.servicenow.com/docs/access?context=c_ScriptIncludes&version=australia&pubname=australia-api-reference&ft:locale=en-US).
* Ensure that you've set the application scope to Legal Request Management.
{#configure-action-legal-request-lsp__ul_pl1_lyr_h5b}

Role required: admin

## Por Que e Quando Desempenhar Esta Tarefa

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

## Procedimento

1. Add or modify an action in the scripted extension point.
   1. Navigate to AllSystem Extension PointsScripted Extension Points.
   2. Search and select the LegalTicketAction 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:  

                canHandle: function(tableName) {
                       return tableName == '<TableName>'; //Replace TableName with a practice area table name
                   },

        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.
        {#configure-action-legal-request-lsp__ul_w2k_lwy_h5b}
      * To modify an existing implementation, open a class from the Implementations related list.  
        On the Script Include form, update the script as required.
        * To modify an existing action, update the name parameter in the JSON object to match the one in the DefaultLegalTicketActions script.

          For example, to change the
          Cancel action's default behavior in a specific practice area, open its extension point implementation keep the name parameter as <kbd class="ph userinput">cancel</kbd> while modifying other
          parameters in the JSON object as required.
        * To add a new action, create a JSON object and change the name and other parameters as required.
        {#configure-action-legal-request-lsp__ul_jld_2s5_h5b}
      {#configure-action-legal-request-lsp__ul_v2p_cs5_h5b}
   4. Click Update.
   {#configure-action-legal-request-lsp__substeps_vbj_xr5_h5b}
2. **Opcional:** Configure Actions widgets on the standard ticket page for legal services.
   1. Navigate to AllService PortalWidgets.
   2. Search and select the Legal Ticket Actions widget.
   3. Review the existing script and Angular ng-template for reference and then add or modify them as required.
   4. Click Update.
   {#configure-action-legal-request-lsp__substeps_qr1_ss5_h5b}

