Extension points in Customer Service Management
Summarize
Summary of Extension Points in Customer Service Management
Extension points in Customer Service Management (CSM) allow users to integrate custom scripts to enhance the application’s functionality. Customers can access these extension points by enteringsysextensionpoint.listin the application navigator. Each extension point can have multiple implementations, ordered by priority, where the one with the lowest order number is executed first.
Show less
Key Features
- sncustomerservice.CSMService: Defines default logic for case object values.
- sncustomerservice.CSMCaseSync: Customizes parent-child case synchronization logic with additional conditions and state-based sync rules.
- snmajorissuemgt.MajorCase: Integrates with Major Issue Management plugin.
- snactionstatus.NeedsAttentionAccessUtil: Allows selection of user roles to enable or disable the Needs Attention field on case forms.
- sncssm.CSMChangeIntegrations: Maps the Change Request field on case records.
- sncssm.CSMIncidentIntegrations: Maps the Incident field on case records.
- sncssm.CSMProblemIntegrations: Maps the Problem field on case records.
- sncssmrequest.CSMRequestIntegrations: Maps the Request field on case records.
- global.CSMRelationshipServiceEP: Facilitates the creation of CSM relationships with responsibilities.
- global.CSMContentAccessEP: Implements ACLs for CRUD operations.
- AddressMgmtExtensionPoint: Customizes reference qualifiers for the location field in the Account Address table.
Key Outcomes
By leveraging these extension points, ServiceNow customers can tailor the CSM application to better meet their specific business needs, enhance case management processes, and improve overall customer service efficiency. Custom implementations can lead to more streamlined workflows and better control over case handling and related operations.
Use extension points to call custom scripts in the Customer Service Management application.
To access the available extension points, type sys_extension_point.list in the application navigator and press Enter. Click the desired extension point to view the record details.
You can create multiple implementations for each extension point and provide an order number for each implementation. The implementation that has the lowest order number is the implementation that is executed.
| Extension point | Description |
|---|---|
| sn_customerservice.CSMService | Defines the default value logic for case
objects. Available with the Customer Service (com.sn_customerservice) plugin. |
| sn_customerservice.CSMCaseSync | Use this extension point to customize the logic for parent-child case synchronization. This extension point can be used in one of two ways:
This extension point is used by the CSCaseSyncHelper script include and is available with the Customer Service (com.sn_customerservice) plugin. Note: In the base system, parent-child case
synchronization is available only for the Case table (sn_customerservice_case). This feature must be configured for tables that extend the Case table. |
| sn_majorissue_mgt.MajorCase | Available with the Major Issue Management (com.sn_majorissue_mgt) plugin. |
| sn_action_status.NeedsAttentionAccessUtil | Enables each application to choose the user
roles that can enable and disable the
Needs Attention field on a
case form. Available with the Customer Service Case Action Status plugin (com.snc.csm_action_status). |
| sn_cs_sm.CSMChangeIntegrations | Creates the logic for mapping the
Change Request field on the
case record. Available with the Customer Service with Service Management (com.sn_cs_sm) plugin. |
| sn_cs_sm.CSMIncidentIntegrations | Creates the logic for mapping the
Incident field on the case
record. Available with the Customer Service with Service Management (com.sn_cs_sm) plugin. |
| sn_cs_sm.CSMProblemIntegrations | Creates the logic for mapping the
Problem field on the case
record. Available with the Customer Service with Service Management (com.sn_cs_sm) plugin. |
| sn_cs_sm_request.CSMRequestIntegrations | Creates the logic for mapping the
Request field on the case
record. Available with the Customer Service with Request Management (com.sn_cs_sm_request) plugin. |
| global.CSMRelationshipServiceEP | Create CSM relationships with
responsibilities. Available with the Customer Service (com.sn_customerservice) plugin. |
| global.CSMContentAccessEP | Creates the logic to implement ACLs for
create, read, update, and delete (CRUD)
operations. Available with the Customer Service (com.sn_customerservice) plugin. |
| AddressMgmtExtensionPoint | Enables users to customize the reference
qualifiers of the location field in the Account
Address table. Allows users to create an implementation of this extension point and override the “getAccountLocationsRefQual” function. |