With the System Property csm_auto_account_domain_generation set to True:
Answer : C
When the system property csm_auto_account_domain_generation is set to True, it specifies that a new domain is created automatically and placed under the TOP domain whenever a new account in the Customer Service application is created. If the 'parent' field on the account form is populated and a new record is inserted, it creates that account as a subdomain of the parent. This property is particularly relevant in domain-separated environments, ensuring that new account records are properly organized within the domain hierarchy2.
What is the best purpose of the TOP domain?
Answer : D
The TOP domain in ServiceNow's domain separation model serves as the core data domain and the parent domain for the mapping diagram. This is because the TOP domain is typically owned by the service provider and has control over all other sub-domains within the instance1. It is the highest level in the domain hierarchy and is responsible for the global rules, processes, and administrative tasks that affect all sub-domains1. The instance administration is given to the global and top domains, with the global domain setting the overarching rules and the top domain managing the specifics for each sub-domain1.
Domain separation in ServiceNow is a mechanism to separate data, processes, and administrative tasks into logical groupings called domains. This allows for control over several aspects of this separation, including absolute data segregation between business entities, customization of business process definitions, user interfaces for each domain, and maintenance of some global processes and global reporting within a single instance2.
In summary, the TOP domain's primary purpose is to act as the core data domain, providing a foundation for domain separation and ensuring that the service provider can effectively manage and control the entire domain structure within the ServiceNow instance.
To grant domain visibility to a user you can
Choose 2 answers
Answer : A, E
In ServiceNow, domain visibility determines whether users from one domain can access records from another domain. To grant domain visibility to a user, you can:
AAssociate a visibility domain to one of the user's roles: This allows any user with that role to see records in the associated visibility domain1.
EAssociate a visibility domain to one of the user's groups: Groups grant their members the visibility domains of the group, which means when a user is part of a group, they inherit the visibility domains associated with that group1.
It's important to note that when a user leaves a group, they lose the group's visibility domains, and the use of visibility domains should be done thoughtfully as excessive use can slow performance2. Moreover, the domain hierarchy should be optimal to prevent performance issues2.
The options B, C, and D are not standard practices for granting domain visibility according to the ServiceNow documentation and best practices. Specifically, associating a visibility domain directly to a user record or setting the visibility domain's parent to the user's domain are not mentioned as recommended methods3421.
What business logic can be created in a domain?
Choose 3 answers
Answer : B, C, E
In ServiceNow, domain separation allows for the segregation of data, processes, and administrative tasks into logical groupings called domains. Within these domains, you can create specific business logic that is unique to each domain. The business logic that can be created in a domain includes:
* Business Rules: These are server-side scripts that execute when a record is displayed, inserted, updated, or deleted, or when a table is queried. Business rules can be used to apply business logic across all applications within a domain1.
* Email Notifications: These can be configured to respond to various events within a domain and can be set up to target users within specific domains. This allows for domain-specific communication strategies2.
* Script Includes: These are reusable server-side scripts that can be included in other scripts. Script includes can be used to store common functions or classes that are applicable to the domain-specific business logic3.
UI Policies and UI Scripts, while they can be part of the user interface customization in a domain-separated environment, are not considered business logic in the context of this question. UI Policies dynamically change information on a form and UI Scripts can add JavaScript to forms. However, they do not define the underlying business logic like Business Rules, Email Notifications, and Script Includes do.
For further details and best practices regarding domain separation and the creation of business logic within domains, you can refer to the ServiceNow documentation and resources provided23.
What is the first step an admin must perform before using domain-separation for Service Catalog items?
Answer : D
Before using domain separation for Service Catalog items, the first step an administrator must perform is to activate the Service Catalog - Domain Separation plugin (com.glideapp.servicecatalog.domain_separation). This plugin enables domain separation within the Service Catalog, allowing for the separation of data, processes, and administrative tasks into logical groupings called domains1. By activating this plugin, the admin ensures that the Service Catalog is prepared to handle the complexities of a domain-separated environment, which is essential for maintaining data integrity and proper access controls across different domains21.
When an administrator working in a domain modifies a policy that exists in a higher domain or in global, the system automatically:
Answer : C
When an administrator working in a domain modifies a policy that exists in a higher domain or in the global domain, ServiceNow automatically creates a new record for that administrator's current domain and overrides the original policy. This ensures that the changes are specific to the current domain and do not affect the policies in the higher or global domains. This behavior is part of the domain separation feature, which allows different domains to have their own customized policies and configurations without impacting each other.
For more detailed information, you can refer to the following resources:
* ServiceNow Support Article on Domain Separation
* Developing Domain-Separated Applications
Even though the Inbound Actions table has a domain field, records in this table should all be placed in this single location within the domain hierarchy.
Answer : D
In ServiceNow, even though the Inbound Actions table has a domain field, records in this table should all be placed in the Global domain. This is because inbound actions, such as inbound email actions, are designed to be accessible across the entire platform, regardless of the specific domain. By placing these records in the Global domain, ServiceNow ensures that the actions can be executed and managed universally, without domain-specific restrictions.
For example, if an inbound email action creates an incident, the system creates the incident in the same domain as the user in the Caller field. If that user is not in the User [sys_user] table, the incident is placed in the Global domain1.
This approach maintains the integrity and accessibility of inbound actions across the platform.
1: ServiceNow Inbound Email Actions Documentation