BSS/OSS Academy
3.315 min read

Service Order Management (SOM)

What Is Service Order Management?

Service Order Management (SOM) is the orchestration engine at the heart of telco fulfillment. While COM captures what the customer wants to buy, SOM translates that commercial intent into actionable service-level work — creating, modifying, or ceasing Customer-Facing Services (CFS) that underpin the ordered products.

SOM sits at the boundary between the BSS world (products, pricing, customers) and the OSS world (network, resources, activation). It is the critical handoff point where commercial language is translated into technical language. In TM Forum's ODA, SOM maps to the Service Order Management functional block within the Service Management domain.

Service Order Management (SOM)
The OSS capability responsible for receiving service orders from COM (or other systems), decomposing them into resource-level order items using service catalog rules, orchestrating the execution of service order items with proper dependency management, and managing the service order lifecycle through to completion or rollback. SOM operates at the CFS and RFS layers. SOM is the system of record for Service Order entities.

SOM in the Architecture

Commercial Order Management (COM)Product Layer — TMF622Product OrderTMF622Service Order Management (SOM)OSS — Service LayerService OrderTMF641 ReceptionCFS → RFS DecompositionCFS:InternetCFS:WiFi-MgmtCFS:CPE-MgmtService CatalogTMF633Orchestration Plan (DAG)RFS:GPON-BearerRFS:VLAN-SvcRFS:IP-ProfileRFS:QoS-ProfiledependsdependsResource OrderTMF652 POSTService InventoryTMF638 updateResource Order Management (ROM)OSS — Resource Layer — TMF652Resource OrderTMF652TMF641 POSTreadsResource Order Itemson completionTMF652 events ↑TMF641 events ↑← parallel →← sequential →

SOM orchestration flow: from service order reception to ROM dispatch and completion

Figure 3.3 — SOM orchestration flow: CFS decomposition to RFS, dependency-driven execution, and ROM dispatch

The diagram above shows SOM's internal processing pipeline. Service orders arrive from COM via TMF641, are decomposed into RFS-level tasks using the service catalog, arranged into a dependency-aware orchestration plan (DAG), and dispatched to ROM via TMF652. Completion events flow back up to COM. Notice the parallel vs sequential execution patterns within the orchestration plan — independent tasks run concurrently while dependent tasks are sequenced.

SOM Role and Responsibilities

SOM has a broader set of responsibilities than many architects initially expect. It is not simply a "pass-through" between COM and ROM — it is a sophisticated orchestration platform with its own state management, dependency resolution, and exception handling.

SOM Core Responsibilities

ResponsibilityDescriptionWhy It Matters
Service Order ReceptionReceive service orders from COM via TMF641 and validate them against the service catalogEnsures only valid, well-formed service orders enter the fulfillment pipeline
Service DecompositionDecompose CFS-level order items into RFS-level order items using catalog rulesBridges the gap between customer-visible services and network-level services
Orchestration PlanningDetermine the execution plan: which items can run in parallel, which must be sequential, and what dependencies existOptimises fulfillment speed while respecting technical constraints
Dependency ManagementTrack and enforce dependencies between service order items (e.g., bearer must be provisioned before QoS)Prevents out-of-sequence provisioning that would fail at the network level
Resource Order DelegationSubmit resource order items to ROM via TMF652 for physical/logical resource allocation and activationDelegates resource-specific work to the appropriate specialist system
State ManagementTrack the state of every service order item through its lifecycle and aggregate into overall order stateEnables accurate order tracking and status reporting up to COM
Exception HandlingDetect and manage failures: retry, escalate, compensate, or route to manual work queuesHandles the inevitable real-world failures gracefully
Service Inventory UpdateCreate or update service instances in Service Inventory (TMF638) upon completionMaintains the service layer system of record

From Commercial Orders to Service Orders

When COM completes its validation and approval processing, it decomposes each Product Order Item into one or more Service Order Items using the Product-to-CFS mapping defined in the catalog. These Service Order Items are submitted to SOM as a Service Order via TMF641.

Decomposition in Action
COM receives a Product Order for "SuperFibre 200 Home" (action: add). The Product Specification "Residential Broadband Access" maps to three CFS types: CFS:Internet-Access, CFS:WiFi-Management, and CFS:CPE-Management. COM creates a Service Order with three Service Order Items — one per CFS — and submits it to SOM. Each Service Order Item carries the relevant characteristic values (e.g., downloadSpeed=200, technology=GPON) inherited from the product order.

Service Order Handoff Process

1
COM Reads Catalog
COM

COM queries the product/service catalog to determine which CFS specifications are linked to the ordered Product Specification. The catalog defines the mapping: which CFS types are mandatory, optional, and what characteristics flow from product to service.

2
COM Builds Service Order
COM

COM constructs a TMF641-compliant Service Order payload containing one Service Order Item per CFS. Each item includes: the CFS specification reference, the action (add/modify/delete), characteristic values, and a traceability reference back to the originating Product Order Item.

3
COM Submits to SOM
COM → SOM

COM sends POST /serviceOrder to SOM via TMF641. SOM validates the request against the service catalog, assigns an order ID, and acknowledges receipt. COM's product order transitions to "inProgress".

4
SOM Takes Ownership
SOM

SOM now owns the service order lifecycle. It will independently plan, orchestrate, and execute the service order items. COM monitors progress via TMF641 events but does not control execution.

CFS-Level Order Items

Service Order Items at the CFS level represent customer-visible service changes. Each item references a Customer-Facing Service specification from the service catalog and describes the desired state of that service.

CFS Service Order Item Anatomy

FieldDescriptionExample Value
idUnique item identifier within the service orderSOI-001
actionWhat to do: add, modify, deleteadd
stateCurrent item stateacknowledged → inProgress → completed
service.serviceSpecificationReference to CFS spec in service catalogCFS:Internet-Access v2.1
service.serviceCharacteristicConfigured values for this service instancedownloadSpeed=200, uploadSpeed=50, technology=GPON
service.relatedPartyCustomer/account this service is forCustomer ID: CUST-4821
service.placeService delivery locationAddress: 42 Fibre Lane, Melbourne
orderItemRelationshipDependencies on other items in this orderSOI-003 (CPE) must complete before SOI-001 (Internet)
CFS Is Technology-Neutral
CFS-level service order items do not contain technology-specific details. "CFS:Internet-Access" describes the customer-facing service (200Mbps internet) without specifying whether it is delivered via GPON, HFC, fixed wireless, or satellite. The technology-specific decomposition happens when SOM maps CFS items to RFS items using the service catalog — and that mapping may vary based on the customer's address and available infrastructure.

Service Order Orchestration

Orchestration is SOM's core value proposition. It determines how to execute service order items: what can run in parallel, what must run sequentially, and how to handle the cascade of work across multiple downstream systems.

When SOM receives a service order, it creates an execution plan (sometimes called a fulfillment plan or orchestration plan). This plan defines:

  • Task graph: A directed acyclic graph (DAG) of tasks to execute, with dependency edges
  • Parallelism: Which tasks have no dependencies and can execute simultaneously
  • Sequencing: Which tasks must wait for predecessors to complete before starting
  • Conditional branches: Tasks that only execute under certain conditions (e.g., field visit needed only if no existing CPE)
  • Timeout thresholds: Maximum time allowed for each task before jeopardy escalation

Dependency Management Between Service Order Items

Dependencies between service order items exist because some services cannot be provisioned until others are in place. These dependencies come from two sources: the service catalog (design-time definitions) and runtime conditions (discovered during orchestration).

Dependency Example: Broadband Service
For a new broadband service: (1) CPE must be shipped/installed before it can be configured — CPE Management depends on physical delivery. (2) Internet Access service depends on the GPON bearer being provisioned at the exchange. (3) WiFi Management depends on CPE being online and registered with the cloud controller. (4) QoS profile can only be applied after the bearer and VLAN are configured. SOM must encode all these dependencies in its orchestration plan.

Dependency Types

TypeDescriptionExample
Finish-to-Start (FS)Item B cannot start until Item A finishesQoS profile cannot be applied until bearer is provisioned
Start-to-Start (SS)Item B can start as soon as Item A starts (but not before)Billing activation can start once service activation starts
Mutual ExclusionItems A and B cannot execute simultaneously (resource contention)Two configuration pushes to the same network element must be serialised
ConditionalItem B only executes if Item A produces a specific resultManual intervention task only if automated activation fails
Circular Dependencies
A circular dependency (A depends on B which depends on A) is a design error that will deadlock the orchestration engine. Well-designed service catalogs enforce acyclic dependency graphs. SOM implementations should detect circular dependencies during orchestration plan validation and reject the order with a clear error rather than entering an infinite wait state.

Decomposing CFS into RFS

SOM performs a second level of decomposition: breaking CFS-level service order items into RFS-level items. This is where technology-specific detail enters the fulfillment chain. The same CFS (e.g., Internet Access) may decompose into completely different RFS sets depending on the access technology.

The service catalog defines rules for how each CFS type maps to RFS types. When SOM processes a CFS order item, it reads these rules and generates the corresponding RFS order items. These RFS items are then sent to ROM for resource allocation and activation.

  • CFS:Internet-Access → RFS:GPON-Bearer + RFS:VLAN-Service + RFS:IP-Profile + RFS:QoS-Profile
  • CFS:WiFi-Management → RFS:Cloud-Controller-Link
  • CFS:CPE-Management → RFS:TR069-Config + RFS:CPE-Provisioning

CFS decomposition is often technology-dependent. The same CFS may map to different RFS sets based on runtime information such as the customer's access technology, geographic location, or network topology:

CFSTechnologyRFS Set
Internet AccessGPONGPON-Bearer, VLAN-Service, IP-Profile, QoS-Profile
Internet AccessHFC/DOCSISDOCSIS-Bearer, CM-Config, IP-Profile, QoS-Profile
Internet AccessFixed WirelessFWA-Radio-Link, IP-Profile, QoS-Profile
Internet AccessADSLDSL-Bearer, ATM-PVC, IP-Profile, QoS-Profile

This technology-dependent branching is a core reason CFS exists as a separate layer — it insulates the product/commercial layer from technology choices.

Some decomposition decisions can be made at design time (when the catalog is created) because they are deterministic: a broadband product always requires an IP profile. Others must be made at runtime because they depend on context: which access technology is available at the customer's address, whether a new OLT port is needed or an existing one can be reused, whether the customer already has a CPE or needs a new one.

Decision Tables in the Catalog
Advanced service catalogs support "decision tables" or "decomposition rules" that encode runtime branching logic declaratively. For example: IF technology=GPON THEN include RFS:GPON-Bearer, ELIF technology=HFC THEN include RFS:DOCSIS-Bearer. This keeps the logic in the catalog rather than hard-coded in SOM, enabling new technologies to be added via catalog configuration.

Service Order Lifecycle States

TMF641 defines lifecycle states for service orders that closely mirror the TMF622 product order states, reflecting the layered but consistent approach to order management:

TMF641 Service Order States

StateDescriptionTypical Trigger
acknowledgedService order received and validated against service catalogPOST /serviceOrder from COM
inProgressOrchestration plan is executing; tasks are being dispatchedFirst task dispatched to ROM or internal activation
heldProcessing paused due to an issue requiring interventionResource exhaustion, manual task pending, external dependency
pendingWaiting for a scheduled event or external triggerInstallation appointment not yet reached
completedAll service order items successfully fulfilled; service inventory updatedAll tasks in orchestration plan completed successfully
failedFulfillment failed and compensation has been executedUnrecoverable error after retry exhaustion
cancelledOrder cancelled before completion; partial work reversedCancellation request from COM (customer-initiated)
partialSome items completed, others failed; awaiting resolution decisionMixed results across service order items

SOM and Service Inventory

Service Inventory (TMF638) is the system of record for active service instances. SOM interacts with Service Inventory throughout the order lifecycle:

  1. Pre-order query: For modify/cease orders, SOM reads the current service instance to understand existing configuration and identify the delta.
  2. Reservation: Some implementations create a "reserved" or "pending" service instance in inventory when the order is acknowledged, to prevent conflicts with concurrent orders.
  3. Progressive update: As individual service order items complete, SOM may progressively update the service instance (e.g., mark a characteristic as provisioned).
  4. Final activation: When all service order items for a CFS instance complete, SOM marks the service instance as "active" in Service Inventory.
  5. Cessation: For delete orders, SOM marks the service instance as "terminated" once all decommissioning tasks are complete.
TMF638 Service Inventory Management
TMF638 provides the standard API for managing service instances. Key operations: POST /service (create instance), GET /service/{id} (query), PATCH /service/{id} (update), DELETE /service/{id} (remove). Service instances carry the same structure as service order items (specification reference, characteristics, related parties, place) but represent the actual provisioned state rather than the desired state.

TMF641 Service Ordering API

TMF641 — Service Ordering Management
TMF641 provides a standardized REST API for creating, querying, and managing service orders. It is the standard interface between COM and SOM. Key operations: POST /serviceOrder (create), GET /serviceOrder/{id} (retrieve), GET /serviceOrder (list/search), PATCH /serviceOrder/{id} (update/cancel). TMF641 also defines event types for asynchronous status notifications: ServiceOrderCreateEvent, ServiceOrderStateChangeEvent, ServiceOrderItemStateChangeEvent.

TMF641 is the API that COM uses to submit service orders to SOM. It mirrors the structure of TMF622 but at the service level — a Service Order containing Service Order Items, each referencing a service specification.

TMF641 Service Order Item Fields

FieldTypeDescription
idstringUnique item identifier
actionstringadd | modify | delete | noChange
statestringItem-level lifecycle state
service.serviceSpecificationrefReference to CFS/RFS spec in service catalog
service.serviceCharacteristicarrayConfiguration values for this service
service.supportingServicearrayReferences to dependent/supporting services
service.supportingResourcearrayReferences to resources supporting this service
service.relatedPartyarrayCustomer/account this service belongs to
service.placearrayService delivery location(s)
orderItemRelationshiparrayDependencies on other items in this order

SOM communicates order progress to COM primarily via events. TMF641 defines several event types that SOM publishes as order items progress through their lifecycle:

  • ServiceOrderCreateEvent: Published when SOM acknowledges a new service order
  • ServiceOrderStateChangeEvent: Published when the overall service order state changes (e.g., acknowledged → inProgress)
  • ServiceOrderItemStateChangeEvent: Published when an individual item's state changes
  • ServiceOrderAttributeValueChangeEvent: Published when order attributes are modified (e.g., expected completion date updated)

COM subscribes to these events using the TMF Event Management pattern (hub/listener). This decouples COM from SOM's internal orchestration — COM does not need to poll for status updates.

SOM Integration Points

SOM Integration Map

SystemDirectionAPI / PatternPurpose
COMInboundTMF641 POST /serviceOrderReceive service orders from commercial layer
COMOutbound eventsTMF641 EventsNotify COM of service order state changes
Service CatalogOutbound queryTMF633 GETRetrieve CFS/RFS specs and decomposition rules
Service InventoryOutbound query + updateTMF638Read current service state; update on completion
ROMOutboundTMF652 POST /resourceOrderSubmit resource orders for allocation and activation
ROMInbound eventsTMF652 EventsReceive resource order completion/failure notifications
Workforce ManagementOutboundTMF646 / CustomSchedule field technician appointments
External PartnersOutboundTMF641 or B2B APIDelegate work to third-party providers (e.g., last-mile installation)

SOM Design Patterns

In a process-driven SOM, orchestration logic is defined as executable workflows (e.g., BPMN processes). Each product/service type has a corresponding workflow that defines the step-by-step fulfillment sequence. This approach is explicit and auditable but can be rigid — adding a new service type requires designing and deploying a new workflow.

  • Workflows are typically designed in a visual process designer
  • Each step in the workflow maps to a system call or manual task
  • Well-suited for complex, well-understood fulfillment sequences
  • Can become a maintenance burden as the number of service types grows

Handling Failures in SOM

Failures are not exceptional in telco fulfillment — they are expected. Network elements may be unreachable, resources may be exhausted, field appointments may be missed, and third-party providers may delay. SOM must handle all of these scenarios gracefully.

  • Automatic retry: For transient failures (network timeout, element busy), SOM retries with exponential backoff up to a configurable limit.
  • Manual task routing: When automatic resolution fails, SOM creates a manual task in a work queue for operations staff to investigate and resolve.
  • Compensation: If a task in the middle of a dependency chain fails, SOM may need to undo previously completed tasks. For example, if VLAN assignment succeeds but QoS application fails, the VLAN may need to be released.
  • Escalation: If an order item remains in a failed or held state beyond its jeopardy threshold, SOM escalates to supervisors or priority queues.
  • Partial completion: SOM reports partial status to COM, which decides whether to accept a partially fulfilled order or request full rollback.
The Fallout Problem
Service order "fallout" — orders that fail automatic processing and require manual intervention — is one of the biggest operational costs in telco. Industry benchmarks suggest 10-30% fallout rates for new provide orders. Reducing fallout through better catalog design, improved data quality, and smarter orchestration logic is a primary focus of BSS/OSS transformation projects.

What Breaks When SOM Is Missing or Bypassed

Some architectures skip the SOM layer, having COM send orders directly to ROM or to activation systems. Others embed service orchestration logic inside COM or an integration middleware layer. While this reduces the number of systems, it eliminates the service abstraction layer — and the consequences are severe.

Impact of Bypassing SOM

CapabilityWith SOMWithout SOM (Bypassed)
CFS/RFS decompositionCatalog-driven decomposition of products into CFS and RFS instances using service catalog rulesNo service layer decomposition. COM must understand the full technical decomposition to resource level — violating commercial/technical separation.
Service InventorySOM creates and maintains CFS/RFS instances in Service Inventory as services are activatedNo Service Inventory. There is no runtime record of what services are active. Assurance cannot correlate faults to customer-facing services.
Technology abstractionSOM translates a generic CFS (e.g., "Internet Access") into technology-specific RFS (GPON, HFC, FWA) based on customer contextTechnology selection must happen in COM or the channel. Commercial systems become tightly coupled to network technology decisions.
Service-level orchestrationSOM manages execution dependencies across multiple CFS and RFS items with parallel/sequential/conditional patternsOrchestration is pushed to COM (which is not designed for it) or to ROM (which only sees resources, not services).
Fault correlationService Inventory enables mapping from resource alarm → RFS impact → CFS impact → affected customerNo service-to-resource correlation. A fibre cut generates raw alarms, but nobody knows which customers are affected until they call in.
Service qualificationSOM can answer "can this service be delivered at this address?" by checking service catalog, inventory, and resource availabilityNo pre-order feasibility check. Orders are submitted without knowing if the service can be delivered, causing high fulfilment fallout.
Service testingSOM triggers end-to-end service tests after activation to verify CFS functionality before customer handoverNo service-level testing. Activation is assumed successful if resource provisioning completes, but end-to-end service may not work.
Modify and cease flowsSOM understands the current service state and calculates the delta between current and target CFS configurationModifications require full re-provisioning because no system tracks what services currently exist and what needs to change.
The "COM-to-ROM Direct" Anti-Pattern
When COM sends orders directly to ROM, the commercial system must understand every resource type, allocation strategy, and activation protocol. This means product managers cannot change the technical implementation of a product without changing the order management logic. It also means every new technology (e.g., migrating from GPON to XGS-PON) requires changes in COM — a BSS system — instead of being contained within OSS.
The "Missing Service Inventory" Problem
Without SOM, there is no Service Inventory. This means the organisation has a Product Inventory (what was sold) and a Resource Inventory (what is on the network) but nothing in between. When a customer calls to report a problem, support staff can see what they bought but cannot determine which network resources deliver that service. When planning a network change, engineers know what resources are affected but not which customers will be impacted. This "service layer gap" is one of the most damaging consequences of skipping SOM.

Workflows: BPMN-Driven Orchestration

Modern SOM implementations use BPMN 2.0 (Business Process Model and Notation) workflow engines to define and execute orchestration logic. Rather than embedding fulfilment sequences in application code, SOM delegates process control to a standards-based workflow engine — separating what needs to happen (catalog-driven decomposition) from how it is executed (BPMN process models).

This approach means fulfilment flows are defined as visual, version-controlled process models that business analysts can read and validate. Changes to orchestration logic — adding a new step, changing a timeout threshold, rerouting a failure path — are made by updating the BPMN model, not by rewriting microservice code. The workflow engine provides built-in support for parallel execution (AND gateways), conditional routing (XOR/OR gateways), timer-based escalation, compensation handlers for rollback, and human-in-the-loop tasks for manual intervention.

Why BPMN-Driven Orchestration?

In a modern O2A architecture, the SOM (Service Order Management) and ROM (Resource Order Management) layers use BPMN workflow engines rather than hard-coded orchestration logic. Here's why this matters.

Separation of Process Logic from Code

Orchestration rules live in visual BPMN models, not embedded in SOM/ROM microservice code. Business analysts can read, validate, and propose changes to fulfilment flows without developer assistance. Flow changes don't require code refactoring or redeployment of the orchestration engine.

Real-Time Visibility & Auditability

Every order instance has a visible process state — you can see exactly which task a fulfilment order is at, which gateway decision was taken, and how long each step took. Built-in audit trails mean every task completion, gateway evaluation, and exception is logged automatically.

Change Agility

Modify fulfilment flows — add steps, change routing logic, adjust timeout thresholds — by editing the BPMN model and deploying a new process version. The microservices that execute individual tasks (activation APIs, inventory updates) remain untouched. Enables A/B testing of fulfilment strategies.

Human-in-the-Loop Integration

BPMN natively supports User Tasks for manual intervention and exception handling. An automated activation failure can escalate to a human work item with timer-based SLA enforcement. Blends automated and manual steps in a single coherent, version-controlled flow.

Structured Error & Compensation Handling

Boundary events handle timeouts, errors, and signals declaratively. Sub-processes can define compensation handlers — if resource activation succeeds but service provisioning fails, the compensation flow automatically rolls back the resource. No custom retry/rollback code needed.

Vendor Portability (OMG Standard)

BPMN 2.0 is an OMG standard (ISO/IEC 19510). The same XML process definition can execute on Camunda, Flowable, jBPM, or Zeebe. This avoids deep vendor lock-in at the orchestration layer — the most strategically important layer in the O2A chain.

What BPMN 2.0 Offers

BPMN 2.0 (Business Process Model and Notation) is the OMG standard (ISO/IEC 19510) for defining executable business processes. Unlike earlier versions that were purely visual, BPMN 2.0 process definitions are machine-executable — the same model you design is the model the engine runs.

BPMN ElementVisual NotationO2A Example
eventStart EventThin circleProduct Order received from COM (TMF622)
eventEnd EventThick circleFulfilment complete — inventories updated, billing notified
taskService TaskRounded rect + gear iconCall TMF640 activation API, update service inventory via TMF638
taskUser TaskRounded rect + person iconManual order validation, exception review for failed activations
gatewayParallel Gateway (AND)Diamond with +Split: provision CFS service AND activate RFS resources simultaneously
gatewayExclusive Gateway (XOR)Diamond with XRoute by product type: mobile goes to HLR provisioning, fixed goes to access activation
gatewayInclusive Gateway (OR)Diamond with OActivate one or more resource components depending on which RFS specs are in the order
eventTimer Boundary EventClock on task borderIf network element activation exceeds 30 minutes, escalate to ops team
eventError Boundary EventLightning on task borderCatch activation failure → trigger compensation sub-process to rollback
eventMessage EventEnvelope icon in circleReceive async callback from NE confirming port configuration complete
taskSub-ProcessExpanded rounded rect with +Reusable "Activate Fixed Line" or "Provision HLR" sub-process called from multiple parent flows
eventCompensation HandlerRewind icon on sub-processIf service provisioning fails after resource activation, automatically de-activate the resource

Example: BPMN Process for O2A Fulfilment

This diagram shows a simplified but representative BPMN process for Order-to-Activate fulfilment. Three swim lanes represent the COM, SOM, and ROM domains. A parallel gateway splits the flow so service provisioning and resource activation happen concurrently.

COMOrder CaptureSOMOrchestrationROMActivationReceive & ValidateOrder (TMF622)Decompose OrderCFS → RFS → RSService OrderCreate Service OrderTMF641OrchestrateFulfilment PlanAND-splitProvision ServiceComponentsResource OrdersActivate & ConfigureNetwork ResourcesT30m timeoutAND-joinUpdateInventoriesTMF622 Product OrderTMF641 Service OrderTMF652 Resource Order

Simplified BPMN 2.0 process: Order-to-Activate fulfilment across COM, SOM, and ROM

Start EventEnd EventService TaskParallel Gateway (AND)Message / Handoff
BPMN-driven workflow patterns used in SOM/ROM orchestration — benefits, element reference, and example O2A fulfilment process

Section 3.3 Key Takeaways

  • SOM is the orchestration engine that translates commercial intent into service-level fulfillment
  • SOM operates at the CFS and RFS layers, bridging BSS and OSS worlds
  • Service orders are received from COM via TMF641 and decomposed into RFS items via catalog rules
  • Orchestration determines execution order: parallel, sequential, conditional, and fork-join patterns
  • Dependency management ensures tasks execute in the correct technical sequence
  • CFS → RFS decomposition is often technology-dependent (GPON vs HFC vs FWA)
  • SOM maintains Service Inventory (TMF638) as the system of record for active services
  • Failure handling includes retry, manual routing, compensation, and escalation
  • Real-world SOM implementations typically use a hybrid of catalog-driven and process-driven patterns
  • Bypassing SOM eliminates the service abstraction layer, destroying fault correlation, service testing, and technology independence