Skip to content

Territory Management Architecture

Sales Territories (formerly Enterprise Territory Management) provides a parallel access model to the role hierarchy, enabling account-based territory assignments that drive both sharing and forecasting. At the CTA level, understanding the architecture in depth (object model, hierarchy design, sharing interaction, and scaling limits) separates a passing answer from a failing one.

Sales Territories introduces a territory hierarchy that operates independently of, and in parallel with, the role hierarchy. Users can belong to multiple territories (unlike roles, which are one-per-user), and accounts can be assigned to multiple territories simultaneously.

Territory2Model as the top-level container, Territory2Types as classification labels, Territory2 nodes forming the hierarchy, and junction objects linking users and accounts to territories.
Figure 1. Territory2Model is the single container for all territory definitions. Territory2Types are classification labels, not hierarchy nodes. The actual hierarchy comes from Territory2.ParentTerritory2Id. Users and accounts connect to territories through separate junction objects, allowing many-to-many assignments.

The data model centers on six core objects. Understanding their relationships is required for CTA-level territory design.

Entity-relationship diagram of the eight core Sales Territories objects showing how Territory2Model, Territory2Type, Territory2, assignment rules, and junction objects relate to each other.
Figure 2. The Territory2 data model separates structure (Territory2, Territory2Type) from membership (UserTerritory2Association, ObjectTerritory2Association) and automation (ObjectTerritory2AssignmentRule). Understanding these objects is required to query and debug territory assignments via SOQL or the API.
ObjectPurposeKey Fields
Territory2ModelTop-level container; represents the entire territory structureName, State (Planning/Active/Archived), ActivatedDate
Territory2Individual territory node in the hierarchyName, Territory2ModelId, Territory2TypeId, ParentTerritory2Id, ForecastUserId
Territory2TypeClassification label for territories (not hierarchical)Name, Priority, Description
UserTerritory2AssociationJunction: assigns a user to a territoryTerritory2Id, UserId, IsActive, RoleInTerritory2
ObjectTerritory2AssociationJunction: assigns a record (Account, Lead, or Case) to a territoryTerritory2Id, ObjectId, AssociationCause (Rule/Manual/Owner)
ObjectTerritory2AssignmentRuleRule definition for auto-assigning recordsTerritory2ModelId, BooleanFilter, IsActive, IsInherited
ObjectTerritory2AssignmentRuleItemIndividual criterion within a ruleRuleId, Field, Operation, Value
RuleTerritory2AssociationMaps a rule to the territories it assigns intoRuleId, Territory2Id, IsInherited

Best for field sales organizations where territory boundaries align to regions.

Territory hierarchy organized by global region, country, and sub-region, used when field sales territories align to geographic boundaries and accounts are assigned by billing location.
Figure 3. Geographic territory hierarchies group accounts by billing location. Parent territories inherit visibility into child territories, so an Americas manager automatically sees all US West, US Central, and US East accounts without explicit sharing rules.

Best for organizations where strategic accounts are carved out regardless of geography.

Territory hierarchy organized by account segment and revenue tier, with strategic named accounts carved out as dedicated child territories regardless of geography.
Figure 4. Named account hierarchies assign strategic accounts to dedicated territories regardless of geography. When combined with geographic territories in a hybrid model, Territory2Type priority determines which territory’s forecast manager receives opportunity credit for accounts that span both.

Pattern 3: Hybrid (Most Common in CTA Scenarios)

Section titled “Pattern 3: Hybrid (Most Common in CTA Scenarios)”

Combines geographic and named-account patterns using Territory2Types.

Territory2TypePriorityAssignment LogicExample
Named Account1 (highest)Manual assignment; specific reps own named accounts”Acme Corp” always goes to Rep A
Industry Vertical2Criteria-based: Industry = 'Healthcare'All healthcare accounts to vertical team
Geographic3 (lowest)Criteria-based: BillingState IN (...)Catch-all by region

Assignment rules automate account-to-territory placement based on field criteria. Rules are defined at the model level and mapped to specific territories.

  1. Rules are created with up to 10 filter criteria fields per rule
  2. Each rule is associated with one or more territories via RuleTerritory2Association
  3. Rules can be inherited by child territories (set IsInherited = true)
  4. When rules run, matching accounts get ObjectTerritory2Association records with AssociationCause = 'Rule'
  5. Manually assigned accounts (AssociationCause = 'Manual') are not overwritten by rules
AspectBehavior
TriggerRun manually from Setup, or on account create/update if configured
Criteria fieldsUp to 10 per rule; use formula fields to combine criteria if more needed
Boolean filterSupports AND/OR logic between criteria items
InheritanceParent rules can cascade to child territories automatically
Evaluation orderChild territories evaluated before parents in the hierarchy
Conflict resolutionAn account can match multiple rules and belong to multiple territories; this is by design
MethodWhen to UseSurvives Rule Re-run?
Rule-basedAccounts follow predictable patterns (geography, revenue, industry)Recalculated on each run
ManualStrategic/named accounts that must stay with specific repsYes; manual assignments persist
API-basedBulk loading territory assignments from external systems (e.g., HR/comp systems)Depends on AssociationCause

Territory membership grants record access through the sharing engine. This operates in parallel with, and additive to, OWD, role hierarchy, and sharing rules.

  1. A user is assigned to a territory via UserTerritory2Association
  2. An account is assigned to the same territory via ObjectTerritory2Association
  3. The user gains access to the account at the level defined in Territory Settings (View Only or View and Edit)
  4. Access is inherited upward in the territory hierarchy; users in parent territories see accounts in child territories
SettingUsers SeeUsers EditConfigured In
View OnlyAll accounts in their territory + child territoriesOnly own recordsTerritory Settings (per object)
View and EditAll accounts in their territory + child territoriesAll accounts in their territory + child territoriesTerritory Settings (per object)
Territory membership sits in the cumulative sharing stack between sharing rules and teams, granting account access when both user and account share a territory assignment.
Figure 5. Territory sharing is additive in the sharing stack: a user gains account access when assigned to the same territory as the account, with parent territory users inheriting access to all child territory accounts. This is distinct from and cumulative with role hierarchy and sharing rule access.

This is a core CTA architectural decision. They are complementary, not competing mechanisms.

DimensionRole HierarchyTerritory Management
Primary purposeManagement visibility; approval routingSales territory alignment; account coverage
Users per groupOne role per userMultiple territories per user
Records per groupRecord ownership (1 owner)Multiple territories per account
Hierarchy depthKeep to 5-7 levels for performanceFlexible; depth limited by territory count
Sharing directionUpward (managers see subordinate records)Upward (parent territory sees child accounts)
ForecastingStandard role-based forecastingTerritory-based forecasting (independent)
Assignment methodManual (user profile)Rules-based + manual
CoexistenceAlways presentOptional; runs alongside role hierarchy
Performance costStandard sharing calculationAdditional sharing groups + calculations
ReportingStandard report typesTerritory-specific report types
Signal in CTA ScenarioRecommendation
”Sales reps cover multiple regions”Territory Management; users need multiple territory assignments
”Accounts should be visible to all reps in a region”Territory Management; territory-based sharing
”Forecast by territory, not manager”Territory Management; territory forecasting
”Simple reporting structure, one manager per team”Role hierarchy alone is sufficient
”Matrix organization with dual reporting”Territory Management supplements the flat role hierarchy
”Overlapping sales coverage (overlay reps)“Territory Management; accounts in multiple territories
”Account assignment changes frequently by geography”Territory Management; assignment rules automate realignment

Territory models move through three states. Only one model can be Active at a time.

StatePurposeWhat HappensCan Edit?
PlanningBuild and test the territory structureNo sharing rules applied; no account access grantedYes, full editing
ActiveLive model driving sharing and forecastingSharing groups created; territory access enforced; forecast enabledYes; changes apply immediately
ArchivedPreserved for reference; no longer driving accessAll sharing from this model removed; territory data preservedNo, read only
EditionMax Models (Total)Max Active ModelsMax Territories
Enterprise211,000
Developer / Performance / Unlimited411,000 default (expandable to 20,000 via Support, up to 99,999 with special approval)
State machine for Territory2Model lifecycle showing transitions between Planning, Active, and Archived states, with only one model permitted in Active state at any time.
Figure 6. Only one territory model can be Active at a time. Activating a new model immediately archives the current one and removes its sharing groups, which triggers a full sharing recalculation. For large models this can take hours, requiring maintenance window planning.

Territory-based forecasting runs independently of role-hierarchy-based forecasting and uses the territory hierarchy to roll up opportunity amounts.

AspectRole-Based ForecastTerritory-Based Forecast
Hierarchy usedRole hierarchyTerritory hierarchy
Forecast managerUser’s manager in role hierarchyTerritory2.ForecastUserId per territory
Opportunity rollupBy opportunity owner’s roleBy account’s territory assignment
Multi-territory accountsN/AOpportunity rolls up to one territory only (based on Territory2Type.Priority)
RequiresCollaborative Forecasting enabledSales Territories enabled + Collaborative Forecasting

Scenario 1: Multi-Region Sales Organization

Section titled “Scenario 1: Multi-Region Sales Organization”

Situation: A company has 500 sales reps across North America, EMEA, and APAC. Reps cover geographic regions, but 30 strategic account managers cover named accounts globally. Forecasting must reflect territory performance, not individual rep performance.

Architecture:

  • Territory model with two Territory2Types: “Named Account” (Priority 1) and “Geographic” (Priority 2)
  • Geographic hierarchy: Global > Region > Country > State/Province
  • Named accounts manually assigned to Strategic Account territories
  • All other accounts auto-assigned via rules using BillingCountry + BillingState
  • Territory-based forecasting with forecast managers at the region level
  • Role hierarchy kept flat (3 levels) for management approval routing only

Situation: A SaaS company has both direct reps and product specialist overlays. The same account may need visibility from the regional rep, the product specialist, and the strategic account manager.

Architecture:

  • Account assigned to multiple territories simultaneously (this is the key differentiator vs role hierarchy)
  • Territory types: “Direct Sales” (Priority 1), “Product Overlay” (Priority 2), “Service” (Priority 3)
  • Direct reps get View and Edit; overlay reps get View Only
  • Opportunity forecast rolls up through the Direct Sales territory (Priority 1)
  • Role hierarchy handles management visibility for each team independently

Scenario 3: Multi-BU Organization with Shared Accounts

Section titled “Scenario 3: Multi-BU Organization with Shared Accounts”

Situation: A conglomerate has three business units sharing one Salesforce org. Each BU has its own sales team but some enterprise accounts buy from multiple BUs.

Architecture:

  • Single territory model with BU-level top territories (BU1, BU2, BU3)
  • Each BU branch has its own geographic sub-territories
  • Shared accounts assigned to territories in each relevant BU
  • Territory type priorities set so each BU’s forecast is independent
  • Consider supplementing with Account Teams for cross-BU collaboration on specific deals
MetricGuidelineRisk if Exceeded
Territories per model1,000 (EE) / 99,999 (UE)Hard limit; cannot exceed
Accounts per territoryKeep under 10,000Performance degradation in sharing calculations
Users per territoryUse API for >1,500 usersSetup UI times out; API required
User-to-territory ratio~3 territories per user (rule of thumb)Excessive sharing group memberships
Assignment rule criteriaMax 10 fields per ruleUse formula fields to combine criteria
Sharing recalculationProportional to territories x accounts x usersSchedule activations in maintenance windows

Personal study notes for the Salesforce CTA exam. Content compiled from VJ's study notes, official Salesforce documentation, community sources, and online publicly available content, then organized and presented with AI assistance. Not affiliated with Salesforce. © 2025–2026 VJ Srivastava.