Text preview & study summary

ServiceNow CIS CSM - domain 2

A free sample of 5 questions from this quiz, shown in full with answer choices and explanations. No interactivity — everything is visible on this page for study and review.

Want to test your knowledge? Launch the Interactive Exam Simulator

Question 1

An administrator is configuring an Inbound Email Action for cases. They want to ensure that if an email is received from an email address that does not match any existing Contact or Consumer record, the system automatically creates a new Consumer profile and maps it to the case. What configuration setting or script logic facilitates this?

Answer choices

  • A. Toggle the system property sn_customerservice.auto_register_unknown_email_author to true.

  • B. The system does this automatically for all email applications and cannot be disabled.

  • C. Utilize the SYS_ID of the guest user account inside the Inbound Action script to call a consumer creation script include. (Correct)

  • D. Map the email to a generic corporate account named "Unknown Account".

Explanation

To process unauthenticated authors, the inbound action script must catch the unmatched sender address and dynamically execute data insertion routines against the csm_consumer table before associating it with the case.

Question 2

An enterprise deploys Engagement Messenger on an unauthenticated marketing website, but wishes to allow users to securely authenticate midway through their interaction to view personal case logs. What expert configuration is required on the platform provider side to handle this transition seamlessly?

Answer choices

  • A. Implement a dynamic login redirect using a verified JWT provider configuration mapped inside the Messenger record settings. (Correct)

  • B. Force the user to refresh the entire browser page manually.

  • C. Hardcode the customer administrator's credentials directly into the public messenger script snippet.

  • D. This is not supported; Engagement Messenger must be 100% public or 100% authenticated from the start.

Explanation

Engagement Messenger natively supports transitioning from a guest session to an authenticated session by triggering a login flow that validates against an identity provider and JWT script structure defined in its configuration.

Question 3

A configuration specialist is designing a custom case type. They want to ensure that when an agent selects this custom case type, the workspace shows a completely unique form layout with different fields than a standard case. How do they achieve this?

Answer choices

  • A. By writing a complex Client Script that hides 50 fields individually.

  • B. By defining a specific workspace Form View mapped explicitly to the extended case type table. (Correct)

  • C. By modifying the global base view of the task table.

  • D. By creating a separate database instance for the custom case type.

Explanation

Extended case types utilize platform form layout structures where a dedicated view name (often matching the case type configuration) is rendered automatically based on the table endpoint.

Question 4

An administrator needs to activate the core customer service management features. What is the technical ID of the primary application plugin required to deploy the baseline data structures, case forms, and workspaces?

Answer choices

  • A. com.snc.csm (Correct)

  • B. com.sn_customerservice

  • C. sn_csm_core

  • D. com.snc.customer_service

Explanation

The primary plugin that provisions the core tables, business logic, and base user interfaces for customer service management is com.snc.csm.

Question 5

A customer service organization wants to leverage the Phone channel via OpenFrame. They require that when an incoming call is answered, the system should read the caller's phone number (ANI) and automatically display a search list of matching accounts to the agent. What is the technical term for this workspace behavior?

Answer choices

  • A. Screen Pop (Correct)

  • B. UI Action Execution

  • C. Contextual Search

  • D. Activity Stream Update

Explanation

A Screen Pop is an OpenFrame-driven action that automatically opens a specific URL, record form, or filtered list in the workspace when a communication event (like an incoming call) occurs.