dc dotCreds
Reference guide

ServiceNow CAD Course Notes

Study ServiceNow CAD section notes, then jump straight into the guided course or related practice questions without losing your place.

Continue CourseStart PracticePDF downloads available in Pro.
Checking access

Checking Pro access...

Looking for your active Pro access before showing Course Notes. This usually takes just a moment.

Course Notes preview

Unlock Pro for the full per-exam reference guide.

Preview one piece from each section. Pro includes every Course Notes section, summary, key point, common mistake, exam tip, related-question review, and PDF export.

Includes full Course Mode and Course Notes.

Section 1Application User Interface (20%)Preview
More in this section
  • 9 more key points in Pro version
  • 5 more common mistakes in Pro version
  • 2 more exam tips in Pro version
  • 37 more related questions in Pro version

Summary

Forms/views are presentation over table data; do not confuse hiding a field with deleting or securing it. Use UI Policies for simple field-state behavior, Client Scripts for browser events, asynchronous GlideAjax for server data, display Business Rules/g_scratchpad for data known at form display, and Record Producers for catalog-style intake that creates target-table records.

Key Points

  • Form/view changes do not delete dictionary fields or disable integrations.

Common Mistakes

  • Confusing UI Policy vs Client Script.

Exam Tips

  • Identify the layer first: presentation, server logic, authorization, cross-scope runtime, lifecycle, or integration.
Section 2Security and Restricting Access (20%)Preview
More in this section
  • 9 more key points in Pro version
  • 5 more common mistakes in Pro version
  • 2 more exam tips in Pro version
  • 37 more related questions in Pro version

Summary

Security questions are about the correct enforcement layer. ACLs authorize users to records/fields; application scope and Application Access govern cross-scope runtime operations; Restricted Caller Access can target one caller/resource; menu/module roles govern navigation visibility. Client hiding is never a substitute for authorization.

Key Points

  • Inside one ACL, configured role/condition/script requirements must pass.

Common Mistakes

  • Confusing Same ACL requirements vs multiple ACL alternatives.

Exam Tips

  • Identify the layer first: presentation, server logic, authorization, cross-scope runtime, lifecycle, or integration.
Section 3Application Automation (20%)Preview
More in this section
  • 9 more key points in Pro version
  • 5 more common mistakes in Pro version
  • 2 more exam tips in Pro version
  • 37 more related questions in Pro version

Summary

Choose automation by timing and transaction needs: Flow Designer for declarative processes; before/after/async/display Business Rules for database-timed server logic; Scheduled Script Executions for time-based work; Events for decoupled handlers; Script Includes for reusable server code; properties for configurable values; reports for analysis rather than stored chart data.

Key Points

  • Before BR: modify/validate current in the same save.

Common Mistakes

  • Confusing Before vs after vs async vs display.

Exam Tips

  • Identify the layer first: presentation, server logic, authorization, cross-scope runtime, lifecycle, or integration.
Section 4Designing and Creating an Application (15%)Preview
More in this section
  • 8 more key points in Pro version
  • 5 more common mistakes in Pro version
  • 2 more exam tips in Pro version
  • 27 more related questions in Pro version

Summary

Design record-centric applications around a sound data model, appropriate platform fit, application scope, navigation modules, and supported experiences. ServiceNow is strongest when structured records, workflow, security, reporting, notifications, and integrations are central to the business problem.

Key Points

  • Platform fit: record/process/security/integration apps are strong fits; specialized rendering/compute engines may not be.

Common Mistakes

  • Confusing Reference vs extension.

Exam Tips

  • Identify the layer first: presentation, server logic, authorization, cross-scope runtime, lifecycle, or integration.
Section 5Managing Applications (15%)Preview
More in this section
  • 9 more key points in Pro version
  • 5 more common mistakes in Pro version
  • 2 more exam tips in Pro version
  • 27 more related questions in Pro version

Summary

Know the lifecycle boundary between Git source control, Application Repository distribution, Update Sets, and delegated development. Use one coherent promotion path, version what developers share, and grant only the development capabilities each delegated developer needs.

Key Points

  • Git source control: commit local changes, pull/apply remote changes, branch for parallel work, tag permanent versions.

Common Mistakes

  • Confusing Commit vs pull vs tag vs branch.

Exam Tips

  • Identify the layer first: presentation, server logic, authorization, cross-scope runtime, lifecycle, or integration.
Section 6Working with External Data (10%)Preview
More in this section
  • 9 more key points in Pro version
  • 5 more common mistakes in Pro version
  • 2 more exam tips in Pro version
  • 17 more related questions in Pro version

Summary

Import Sets stage data; Transform Maps map and control target updates; coalesce identifies existing target records. REST/SOAP integrations require correct endpoint/authentication configuration, controlled credentials, error handling, and verification. Transport success is not the same as correct data.

Key Points

  • Import row → import set table → Transform Map → target table.

Common Mistakes

  • Confusing Import Set vs Transform Map.

Exam Tips

  • Identify the layer first: presentation, server logic, authorization, cross-scope runtime, lifecycle, or integration.