
- Post History
- Subscribe to RSS Feed
- Mark as New
- Mark as Read
- Bookmark
- Subscribe
- Printer Friendly Page
- Report Inappropriate Content
on 06-04-2025 12:17 AM
Persona: ServiceNow Administrator
Use Case:
You need to import members and associate them with the appropriate Internal or External Business Location, while also assigning the right responsibilities to each member. Product Documentation for performing this from the User Interface.
Key Questions:
-
How can I import users into Internal or External Business Locations with the correct responsibility?
-
Which tables are involved in this process?
-
What are the step-by-step actions required to complete this import successfully?
Assumptions:
-
Business Locations are already imported into:
-
sn_csm_business_location_internal
(Internal) -
sn_csm_business_location_external
(External)
-
-
Users are already available in:
-
sys_user
(for internal staff) -
sn_csm_service_organization_external_staff
(for external staff)
-
Import Process Overview (3 Steps):
To associate members with business locations and assign responsibilities, data must be imported into the following three tables:
-
Service Organization Member (
sn_csm_service_organization_member
)
→ Adds users as members to a Business Location. -
Service Organization Member Responsibility (
sn_csm_svc_org_member_responsibility
)
→ Assigns one or more responsibilities to each member.
Disclaimer: This content is for illustrative purposes only. It outlines the general steps but does not include exact code or production-ready configurations. Use caution and tailor to your specific environment before implementation.
Sample Update Set
Name: ImportExistingMembersToBL
-
Import Table:
sn_bus_loc_service_org_member_import
(Custom import staging table)
Fields in the Import Table:
Field | Description |
---|---|
Name of the Org | Name of the Internal/External Business Location |
User First Name | First name of the user (internal or external) |
User Last Name | Last name of the user |
Responsibility | Responsibility name (should match "Related Party Configurations") |
Transform Maps:
-
Import Members
-
Matches
User First Name
andUser Last Name
against existing users insys_user
orsn_csm_service_organization_external_staff
. -
Creates a record in
sn_csm_service_organization_member
linking the user to the specified Business Location.
-
-
Import Responsibilities
-
For each imported member, creates a record in
sn_csm_svc_org_member_responsibility
to assign the specified responsibility.
-
Attachment Details:
1. ImportExistingMembersToBL.xml [Import Set]
2. ImportMembersDemoData.xlsx [Demo data]