Question Q-8461 A B2B software company wants to implement ServiceNow CSM to…
2 comments · last active May 10, 2026
By Marcus Chen · Updated Jul 10, 2026
| Questions | 25 |
| Passing Score | 75% |
| Format | 100% Multiple Choice |
| Sessions Logged | 572 |
| Your progress | Log in / Register to track times taken, best score, questions mastered, and coverage on this quiz. |
| Rating |
Uncategorized25 questions
Log in to post a comment, reply, or expand a question.
Omnichannel: portal, email inbound, Connect Support chat, OpenFrame CTI, social connectors — all create/update sn_customerservice_case with unified timeline.
Separate siloed systems per channel defeats CSM value prop — exam wants native routing.
Register Product catalog item on portal → installed product (customer_account_product) linked to account → entitlement check on new case.
Manual serial email to support doesn't scale and breaks self-service ROI.
Intelligent Triage uses NLU/ML on historical cases to predict category, product, assignment group — keyword AutoSuite is brittle maintenance.
Forcing customers to pick category in portal adds friction — triage automates after description is entered.
Low confidence predictions surface to agent; high confidence auto-applies — know both behaviors.
Gold 2hr vs Standard 8hr = Entitlements + SLA definitions per tier on account contract — not agents manually prioritizing.
Business rule setting priority doesn't wire Task SLA clocks the way entitlement + SLA attachment does.
Account 360 / Customer 360 = single pane: cases, activities, contacts, installed products, entitlements, CSAT trend — not hopping tables.
Custom report works but lacks integrated activity timeline the workspace provides.
At-risk account: scheduled flow or BR on case create — GlideAggregate count >3 open cases in 30 days, flag account, notify account manager. Weekly report is too slow.
SLA on account isn't a platform object — SLAs attach to tasks/cases.
Critical case → notification on priority change to Critical with recipient = account.account_manager dot-walk + Critical Cases dashboard on Account Manager homepage.
Custom escalation table duplicates case infrastructure — native notification + filtered report is the pair.
CSM Surveys on case close → notification with survey link → responses in PA dashboards. Agent-filled CSAT is biased garbage.
SurveyMonkey monthly import loses real-time supervisor alerting on low scores.
Technical vs Billing queues + transfer/handoff with notes preserves context. Two separate CSM instances kills cross-team reporting.
Single queue with agents self-picking is chaos at scale — structured routing wins.
VIP flag on account → before insert flow/BR: P1, VIP Support Group, supervisor notification immediately. 15-min SLA alert waits too long for VIP.
gs.eventQueue for escalation notification is clean decoupling from assignment logic.
Supervisor Workspace: live queue depth, agent presence, channel tiles — operational not hourly emailed stats.
ITOM monitors infrastructure metrics, not contact center handle time and CSAT.
Catalog listing of the 5 preview questions for this quiz.
An account manager wants to see a complete history of all interactions between the company and a specific customer, including all cases, phone calls, emails, and satisfaction scores. Which CSM feature provides this 360-degree customer view?
ServiceNow CSM provides an Account 360 view (Customer 360 in newer releases) accessible from the account record or CSM Agent Workspace: (1) All cases (open and historical) with status and priority; (2) Activity timeline — email exchanges, phone call logs, chat transcripts; (3) Contacts and their case history; (4) Installed Products — what the customer has purchased/deployed; (5) Entitlements — service contracts and remaining quota; (6) NPS/CSAT scores — satisfaction trend over time; (7) Outstanding quotes or renewals. This single-pane view enables account managers and senior support agents to understand the full customer relationship quickly. Individual table navigation (option C) is inefficient and lacks the integrated timeline view.
A CSM implementation is going live in 2 weeks. The project team needs to ensure that all critical CSM configurations are correct before go-live. Which approach is BEST for pre-go-live validation?
CSM go-live validation requires systematic testing: (1) Channel testing — create test cases via portal, email, and simulated phone/chat to verify all inbound channels route correctly; (2) SLA validation — create cases for each customer tier and verify correct SLA definition applies and timer starts; (3) Entitlement verification — test Gold, Silver, and Standard tier cases to confirm entitlement enforcement; (4) Escalation paths — test priority changes, SLA breach notifications, and supervisor escalation triggers; (5) Survey testing — verify post-closure surveys are sent to the correct contacts; (6) Integration points — test FSM work order creation, ITSM escalation, and external system updates; (7) Security — verify customers can only see their own cases in the portal. Documentation review (option D) is necessary but not sufficient — functional testing validates actual behavior.
A company's field service team handles on-site customer service dispatch. When a CSM case cannot be resolved remotely, it should automatically create a Field Service Management (FSM) work order and dispatch a field technician. What is the correct integration approach?
ServiceNow's CSM-FSM integration is a native platform capability: (1) CSM case escalation trigger — a button, state change, or condition (e.g., "Remote resolution failed" checked) in the CSM case; (2) Flow Designer action: "Create Work Order" in FSM with auto-population of customer address, installed product, issue description, and priority from the CSM case; (3) Work Order linked back to the CSM case via relationship (the case shows "Related Work Orders" in a related list); (4) Customer is notified when technician is scheduled and dispatched; (5) FSM mobile app allows technicians to update work order status and resolve the linked CSM case upon completion. Separate email processes (option A) break the case management thread and create accountability gaps.
A financial services company using CSM needs to ensure that when a VIP customer (marked as "Priority" on their account) submits a case, it is immediately escalated to a senior agent and a supervisor is notified. How is this automated?
VIP escalation automation: (1) Business Rule (before Insert) or Flow Designer trigger (Case Created): check `current.account.u_vip_priority == true`; (2) Set case priority to 1-Critical; (3) Set assignment group to VIP Support Group; (4) `gs.eventQueue('csm.vip.escalation', current)` fires a notification event; (5) Notification sends email/SMS to on-call supervisor with customer name, case number, and issue summary. This executes immediately upon case creation regardless of channel. SLA notification (option D) introduces a 15-minute delay before notification — unacceptable for VIP escalation. Manual monitoring (option A) creates gaps during breaks/shifts. The key advantage of the business rule approach is zero-latency automated escalation.
During a CSM implementation, the client asks you to configure the system so that customers who email support@company.com automatically have cases created with the correct category and assignment. What components must be configured?
ServiceNow email-to-case processing requires: (1) Inbound Email Account — configure the IMAP/POP3/Exchange connection to support@company.com in System Mailboxes; ServiceNow polls/receives emails; (2) Inbound Email Actions — server-side scripts that evaluate inbound emails and create csm_case records, setting fields from email metadata (subject → short description, from address → contact lookup); (3) Routing rules/conditions — subject line contains "billing" → set category = Billing, assign to Billing Queue; (4) Auto-acknowledgment — confirmation email to customer with case number. Without all three components, emails arrive but aren't processed into cases. Manual review (option C) is the pre-automation baseline being replaced. Autoresponders (option D) redirect rather than convert email interactions.
B2B CSM = customer_account + customer_contact + case linked to BOTH submitter and account. ITSM user/incident lacks entitlement hierarchy.
Consumer record is B2C when individual is both account and contact — different pattern than corporate hierarchy.