The Scoped App vs Global Scope Decision Pattern helps ServiceNow architects determine whether to build customizations within a scoped application or in the global scope. This decision impacts upgrade safety, cross-scope data access, deployment packaging, and future maintainability of the implementation.

Scoped applications provide isolation, upgrade protection, and clean deployment boundaries, but introduce complexity around cross-scope access and may limit certain platform capabilities. Global scope offers maximum flexibility and direct access to all platform features, but lacks upgrade protection and creates tighter coupling between customizations and the base platform.

This pattern establishes decision criteria based on factors like customization complexity, integration requirements, team structure, upgrade frequency, and long-term maintenance strategy. It includes code examples for implementing cross-scope communication patterns when scoped applications are chosen.