Industries Communications Setup
This skill activates when a practitioner needs to configure a Salesforce Communications Cloud org from scratch or diagnose a broken setup. It covers the mandatory sequencing of org setup steps, Enterprise Product Catalog (EPC) configuration for service catalog modeling, TM Forum-aligned order decomposition, Account record-type segmentation (Billing Account, Service Account, Consumer Account), Industries Order Management, and contract lifecycle activation.
Before Starting
Gather this context before working on anything in this domain:
- Confirm the Communications Cloud managed package is installed: Setup > Installed Packages should show "Communications Cloud" or "Vlocity Communications". The EPC objects (Product2, vlocity_cmt__ProductChildItem__c relationship tables, and catalog assignment objects) only appear after package install.
- Confirm which account model applies: Consumer (Person Accounts may be enabled) or Business (standard Account with record types). This determines how Billing, Service, and Consumer account record types are configured.
- Determine whether the org is a greenfield setup or a migration from a legacy catalog (e.g., Amdocs, Siebel, or manual Product2 entries). Migration orgs require EPC import tooling; greenfield orgs start with EPC catalog definition.
- Most common wrong assumption: practitioners treat Communications Cloud Account records like standard CRM Accounts and query them without RecordType filters. The Account object in a Communications Cloud org is segmented into Billing Account, Service Account, and Consumer Account via RecordTypes — querying without a RecordType filter produces data integrity problems at every layer.
- Key limit to know: EPC enforces a strict parent-child catalog hierarchy. Products, bundles, and child items must be modeled in EPC, not assembled ad hoc in Product2. Attempting to configure pricing or order decomposition before the EPC catalog is structured will block downstream flows.
Core Concepts
Enterprise Product Catalog (EPC) — Service Catalog Modeling
The Enterprise Product Catalog is the canonical source of truth for all communications service offerings in a Communications Cloud org. It is not a replacement for Salesforce CPQ or the standard Product2 object in isolation — rather, EPC uses Product2 as a base record and extends it with Communications Cloud-specific child relationships, attributes, and catalog assignments.
Key EPC constructs:
- Product Specification: the master template for a product or service type (e.g., "Broadband Internet 100Mbps"). Defined once, reused across catalog versions.
- Product Offering: a market-facing bundle or individual service offer derived from a Product Specification, with pricing, eligibility rules, and effective dates.
- Catalog Assignment: links a Product Offering to one or more catalogs (Consumer, Business, Wholesale). Controls visibility per segment.
- Child Items (vlocity_cmt__ProductChildItem__c): parent-child relationships that model bundle decomposition — a "Triple Play Bundle" parent contains child offering references for broadband, TV, and voice.
EPC must be configured before any order decomposition flows, pricing rules, or subscriber provisioning flows can function. Skipping EPC and creating products directly in Product2 breaks order fulfillment because the decomposition engine reads EPC child item structure, not raw Product2 records.
TM Forum-Aligned Order Decomposition (Commercial to Technical Order)
Communications Cloud implements TM Forum SID (Shared Information/Data Model) TR139-aligned order decomposition. When a subscriber places an order, Communications Cloud decomposes it in two stages:
- Commercial Order: the customer-facing representation of what was sold (e.g., "Add Broadband 100Mbps to account"). Stored as an Order record with associated OrderItem records referencing EPC Product Offerings.
- Technical Order (Decomposed Order): the network-fulfillment representation that breaks the commercial order into atomic fulfillment actions per service component. Generated by the Industries Order Management decomposition engine reading EPC child item definitions.
Industries Order Management in Communications Cloud is not the same as Salesforce Order Management (part of B2C/B2B Commerce). They use different object models, different APIs, and different fulfillment engines. Conflating them leads to incorrect API calls, missing object references, and broken decomposition rules.
Account Record-Type Segmentation
In Communications Cloud, the standard Account object is segmented by RecordType into three subtypes:
| RecordType DeveloperName |
Purpose |
Billing_Account |
Holds billing address, payment method, and invoice relationships. Parent of Service Accounts. |
Service_Account |
Represents a service location or service grouping. Child of Billing Account, parent of subscriptions. |
Consumer_Account |
Represents an individual subscriber (B2C). May be linked to Person Accounts if enabled. |
These are RecordTypes on Account, not separate objects. Any SOQL query, Apex trigger, or Flow that processes Accounts in a Communications Cloud org must filter by RecordType.DeveloperName or it will mix billing, service, and consumer records, causing reporting errors, workflow misfires, and data corruption.
Permission Sets and Setup Sequence
Communications Cloud requires specific permission sets to be assigned before any EPC configuration can proceed. Attempting to access EPC screens or run catalog APIs before permission set assignment produces silent failures or "Insufficient Privileges" errors that can be mistaken for missing metadata.
Required permission sets (names vary slightly by package version):
Vlocity_Communications_Admin (or equivalent Communications Cloud Admin PS)
Vlocity_Communications_User for non-admin users
- OmniStudio permission sets if OmniStudio runtime is used for order capture UIs
Permission sets must be assigned before configuring EPC catalogs, because EPC record visibility is controlled at the permission set level, not just profile level.
Common Patterns
Pattern 1: EPC Service Catalog Initialization for a New Org
When to use: Greenfield Communications Cloud setup where no products exist yet and EPC must be seeded before any order management work.
How it works:
- Navigate to the EPC app (App Launcher > Enterprise Product Catalog).
- Create one or more Catalogs (e.g., "Consumer Catalog", "Business Catalog") and set effective dates.
- Create Product Specifications for each atomic service component (Broadband, Voice, TV).
- Create Product Offerings that reference the Product Specifications, with pricing tiers attached.
- Create bundle Product Offerings with Child Items linking to the atomic offerings.
- Assign Product Offerings to the appropriate Catalog via Catalog Assignment records.
- Validate the catalog by running a test quote or order capture flow against it.
Why not the alternative: Creating products directly in Product2 with custom fields does not populate the EPC relationship tables (ProductChildItem, CatalogAssignment). The decomposition engine reads EPC relationships, not raw Product2. Orders placed against non-EPC products will fail decomposition silently.
Pattern 2: Account Hierarchy Setup (Billing → Service → Consumer)
When to use: Setting up a new subscriber, migrating an existing customer, or debugging account-related order failures.
How it works:
- Create or identify the Billing Account (
RecordType.DeveloperName = 'Billing_Account'): this holds payment and invoice information.
- Create a Service Account (
RecordType.DeveloperName = 'Service_Account') as a child of the Billing Account: this represents the service address.
- For B2C, create or link a Consumer Account (
RecordType.DeveloperName = 'Consumer_Account') representing the individual subscriber.
- Validate the hierarchy by querying:
SELECT Id, Name, RecordType.DeveloperName, ParentId FROM Account WHERE RecordType.DeveloperName IN ('Billing_Account', 'Service_Account').
- Ensure any order, subscription, or asset records are created on the correct account subtype.
Why not the alternative: Creating a single Account without RecordType assignment results in all Communications Cloud platform automations (order decomposition, billing event triggers, service provisioning) failing to associate the record with the correct processing pipeline.
Decision Guidance
| Situation |
Recommended Approach |
Reason |
| Setting up products for order capture |
Configure in EPC (Product Specification → Product Offering → Catalog Assignment) |
Order decomposition engine reads EPC; direct Product2 creation bypasses decomposition |
| Customer account creation |
Create Billing Account first, then Service Account as child |
Account hierarchy is required for billing and provisioning linkage |
| Querying accounts in Apex or Flow |
Always filter by RecordType.DeveloperName |
Without filter, all account subtypes mix, causing data integrity failures |
| Order management APIs |
Use Industries Order Management (vlocity_cmt namespace) APIs |
Salesforce Order Management (commerce) uses different object model and APIs |
| Permission errors in EPC config screens |
Assign Communications Cloud Admin permission set before configuring EPC |
EPC visibility is permission-set gated, not just profile-based |
| Contract lifecycle activation |
Activate contract through Industries Contract Management sequence, not standard Contract object workflow |
Standard Contract activation does not trigger Industries entitlement and provisioning flows |
Recommended Workflow
Step-by-step instructions for an AI agent or practitioner setting up or validating a Communications Cloud org:
Verify package install and permission sets — Check Setup > Installed Packages for Communications Cloud or Vlocity Communications. Assign the Communications Cloud Admin permission set to the implementing user before any configuration begins. Confirm EPC app appears in App Launcher.
Design and confirm the account model — Determine if the org is B2C (Consumer Accounts, possibly Person Accounts) or B2B (Billing + Service Account hierarchy). Document the RecordType DeveloperNames that will be used. Validate that RecordTypes for Billing_Account, Service_Account, and Consumer_Account exist on the Account object in Setup > Object Manager.
Build the EPC service catalog — In the EPC app, create Catalogs (one per market segment), Product Specifications for each service component, Product Offerings with pricing, bundle Product Offerings with Child Items, and Catalog Assignments linking offerings to catalogs. Do not bypass EPC and create offerings in raw Product2.
Configure order decomposition rules — In Industries Order Management, define the decomposition rules that map commercial order line items to technical fulfillment actions. Reference the EPC Child Item relationships defined in Step 3. Test decomposition by submitting a sample order and verifying that technical order records are generated.
Activate contract lifecycle — Configure Industries Contract Management for the subscriber contract types in scope (e.g., service agreements, device financing). Activate contracts through the Industries contract activation sequence, not the standard Contract object workflow, to ensure entitlement and provisioning flows fire.
Validate the end-to-end subscriber flow — Create a test Billing Account, add a Service Account child, place a test order against an EPC-cataloged offering, verify order decomposition generates technical order records, and confirm the contract is activated. Review any OmniStudio flows used for order capture and confirm they reference EPC catalog data.
Review Checklist
Run through these before marking work in this area complete:
Salesforce-Specific Gotchas
Non-obvious platform behaviors that cause real production problems:
EPC objects are invisible without the package — If the Communications Cloud managed package is not installed, EPC configuration screens and objects (ProductChildItem, CatalogAssignment) do not exist. Admins attempting to configure EPC before package install will find no App Launcher entry and no objects in Object Manager. Always confirm Installed Packages before starting any EPC work.
RecordType DeveloperName vs. Name on Account — Communications Cloud RecordType filtering must use RecordType.DeveloperName, not RecordType.Name. RecordType.Name is locale-sensitive and changes when orgs are deployed to different language environments. Queries using RecordType.Name = 'Billing Account' will break in non-English orgs or after translation workbench changes.
Industries Order Management ≠ Salesforce Order Management — These are two separate platforms with separate object models, APIs, and deployment requirements. Salesforce Order Management (part of B2C/B2B Commerce) uses OrderSummary, FulfillmentOrder, and Commerce APIs. Industries Order Management uses vlocity_cmt namespace objects and decomposition rules. Attempting to use Commerce APIs for Communications Cloud order fulfillment will produce missing field errors and silent fulfillment failures.
Output Artifacts
| Artifact |
Description |
| Org setup checklist |
Step-by-step verification list for Communications Cloud activation |
| EPC catalog structure |
Recommended Product Specification → Product Offering → Catalog Assignment hierarchy |
| Account segmentation design |
RecordType mapping for Billing, Service, and Consumer accounts with query patterns |
| Order decomposition flow diagram |
Commercial-to-technical order flow with EPC child item references |
| Permission set assignment plan |
List of Communications Cloud permission sets and assignment sequence |
| Contract lifecycle sequence |
Industries contract activation steps with entitlement flow validation |
Related Skills
architect/industries-data-model — Use for understanding the full Industries data model across Communications, Insurance, Energy & Utilities, and Health Cloud, including Account subtype SOQL patterns
omnistudio/omnistudio-custom-components — Use when customizing OmniStudio-based order capture UIs within a Communications Cloud org
admin/industries-energy-utilities-setup — Use when configuring Energy & Utilities Cloud; shares similar account hierarchy and Industries Order Management patterns
1---2name: industries-communications-setup3description: Use when configuring Communications Cloud for the first time: org setup sequence, permission sets, Enterprise Product Catalog (EPC) service catalog configuration, TM Forum-aligned order decomposition, Account record-type segmentation, and contract lifecycle activation. NOT for generic OmniStudio configuration, Salesforce CPQ (SBQQ), standard B2C/B2B Commerce order management, or non-Communications Industries clouds.4---56# Industries Communications Setup78This skill activates when a practitioner needs to configure a Salesforce Communications Cloud org from scratch or diagnose a broken setup. It covers the mandatory sequencing of org setup steps, Enterprise Product Catalog (EPC) configuration for service catalog modeling, TM Forum-aligned order decomposition, Account record-type segmentation (Billing Account, Service Account, Consumer Account), Industries Order Management, and contract lifecycle activation.910---1112## Before Starting1314Gather this context before working on anything in this domain:1516- Confirm the Communications Cloud managed package is installed: Setup > Installed Packages should show "Communications Cloud" or "Vlocity Communications". The EPC objects (Product2, vlocity_cmt__ProductChildItem__c relationship tables, and catalog assignment objects) only appear after package install.17- Confirm which account model applies: Consumer (Person Accounts may be enabled) or Business (standard Account with record types). This determines how Billing, Service, and Consumer account record types are configured.18- Determine whether the org is a greenfield setup or a migration from a legacy catalog (e.g., Amdocs, Siebel, or manual Product2 entries). Migration orgs require EPC import tooling; greenfield orgs start with EPC catalog definition.19- Most common wrong assumption: practitioners treat Communications Cloud Account records like standard CRM Accounts and query them without RecordType filters. The Account object in a Communications Cloud org is segmented into Billing Account, Service Account, and Consumer Account via RecordTypes — querying without a RecordType filter produces data integrity problems at every layer.20- Key limit to know: EPC enforces a strict parent-child catalog hierarchy. Products, bundles, and child items must be modeled in EPC, not assembled ad hoc in Product2. Attempting to configure pricing or order decomposition before the EPC catalog is structured will block downstream flows.2122---2324## Core Concepts2526### Enterprise Product Catalog (EPC) — Service Catalog Modeling2728The Enterprise Product Catalog is the canonical source of truth for all communications service offerings in a Communications Cloud org. It is not a replacement for Salesforce CPQ or the standard Product2 object in isolation — rather, EPC uses Product2 as a base record and extends it with Communications Cloud-specific child relationships, attributes, and catalog assignments.2930Key EPC constructs:31- **Product Specification**: the master template for a product or service type (e.g., "Broadband Internet 100Mbps"). Defined once, reused across catalog versions.32- **Product Offering**: a market-facing bundle or individual service offer derived from a Product Specification, with pricing, eligibility rules, and effective dates.33- **Catalog Assignment**: links a Product Offering to one or more catalogs (Consumer, Business, Wholesale). Controls visibility per segment.34- **Child Items** (vlocity_cmt__ProductChildItem__c): parent-child relationships that model bundle decomposition — a "Triple Play Bundle" parent contains child offering references for broadband, TV, and voice.3536EPC must be configured before any order decomposition flows, pricing rules, or subscriber provisioning flows can function. Skipping EPC and creating products directly in Product2 breaks order fulfillment because the decomposition engine reads EPC child item structure, not raw Product2 records.3738### TM Forum-Aligned Order Decomposition (Commercial to Technical Order)3940Communications Cloud implements TM Forum SID (Shared Information/Data Model) TR139-aligned order decomposition. When a subscriber places an order, Communications Cloud decomposes it in two stages:41421. **Commercial Order**: the customer-facing representation of what was sold (e.g., "Add Broadband 100Mbps to account"). Stored as an Order record with associated OrderItem records referencing EPC Product Offerings.432. **Technical Order** (Decomposed Order): the network-fulfillment representation that breaks the commercial order into atomic fulfillment actions per service component. Generated by the Industries Order Management decomposition engine reading EPC child item definitions.4445Industries Order Management in Communications Cloud is **not** the same as Salesforce Order Management (part of B2C/B2B Commerce). They use different object models, different APIs, and different fulfillment engines. Conflating them leads to incorrect API calls, missing object references, and broken decomposition rules.4647### Account Record-Type Segmentation4849In Communications Cloud, the standard Account object is segmented by RecordType into three subtypes:5051| RecordType DeveloperName | Purpose |52|---|---|53| `Billing_Account` | Holds billing address, payment method, and invoice relationships. Parent of Service Accounts. |54| `Service_Account` | Represents a service location or service grouping. Child of Billing Account, parent of subscriptions. |55| `Consumer_Account` | Represents an individual subscriber (B2C). May be linked to Person Accounts if enabled. |5657These are RecordTypes on Account, not separate objects. Any SOQL query, Apex trigger, or Flow that processes Accounts in a Communications Cloud org **must** filter by `RecordType.DeveloperName` or it will mix billing, service, and consumer records, causing reporting errors, workflow misfires, and data corruption.5859### Permission Sets and Setup Sequence6061Communications Cloud requires specific permission sets to be assigned before any EPC configuration can proceed. Attempting to access EPC screens or run catalog APIs before permission set assignment produces silent failures or "Insufficient Privileges" errors that can be mistaken for missing metadata.6263Required permission sets (names vary slightly by package version):64- `Vlocity_Communications_Admin` (or equivalent Communications Cloud Admin PS)65- `Vlocity_Communications_User` for non-admin users66- OmniStudio permission sets if OmniStudio runtime is used for order capture UIs6768Permission sets must be assigned before configuring EPC catalogs, because EPC record visibility is controlled at the permission set level, not just profile level.6970---7172## Common Patterns7374### Pattern 1: EPC Service Catalog Initialization for a New Org7576**When to use:** Greenfield Communications Cloud setup where no products exist yet and EPC must be seeded before any order management work.7778**How it works:**791. Navigate to the EPC app (App Launcher > Enterprise Product Catalog).802. Create one or more Catalogs (e.g., "Consumer Catalog", "Business Catalog") and set effective dates.813. Create Product Specifications for each atomic service component (Broadband, Voice, TV).824. Create Product Offerings that reference the Product Specifications, with pricing tiers attached.835. Create bundle Product Offerings with Child Items linking to the atomic offerings.846. Assign Product Offerings to the appropriate Catalog via Catalog Assignment records.857. Validate the catalog by running a test quote or order capture flow against it.8687**Why not the alternative:** Creating products directly in Product2 with custom fields does not populate the EPC relationship tables (ProductChildItem, CatalogAssignment). The decomposition engine reads EPC relationships, not raw Product2. Orders placed against non-EPC products will fail decomposition silently.8889### Pattern 2: Account Hierarchy Setup (Billing → Service → Consumer)9091**When to use:** Setting up a new subscriber, migrating an existing customer, or debugging account-related order failures.9293**How it works:**941. Create or identify the Billing Account (`RecordType.DeveloperName = 'Billing_Account'`): this holds payment and invoice information.952. Create a Service Account (`RecordType.DeveloperName = 'Service_Account'`) as a child of the Billing Account: this represents the service address.963. For B2C, create or link a Consumer Account (`RecordType.DeveloperName = 'Consumer_Account'`) representing the individual subscriber.974. Validate the hierarchy by querying: `SELECT Id, Name, RecordType.DeveloperName, ParentId FROM Account WHERE RecordType.DeveloperName IN ('Billing_Account', 'Service_Account')`.985. Ensure any order, subscription, or asset records are created on the correct account subtype.99100**Why not the alternative:** Creating a single Account without RecordType assignment results in all Communications Cloud platform automations (order decomposition, billing event triggers, service provisioning) failing to associate the record with the correct processing pipeline.101102---103104## Decision Guidance105106| Situation | Recommended Approach | Reason |107|---|---|---|108| Setting up products for order capture | Configure in EPC (Product Specification → Product Offering → Catalog Assignment) | Order decomposition engine reads EPC; direct Product2 creation bypasses decomposition |109| Customer account creation | Create Billing Account first, then Service Account as child | Account hierarchy is required for billing and provisioning linkage |110| Querying accounts in Apex or Flow | Always filter by `RecordType.DeveloperName` | Without filter, all account subtypes mix, causing data integrity failures |111| Order management APIs | Use Industries Order Management (vlocity_cmt namespace) APIs | Salesforce Order Management (commerce) uses different object model and APIs |112| Permission errors in EPC config screens | Assign Communications Cloud Admin permission set before configuring EPC | EPC visibility is permission-set gated, not just profile-based |113| Contract lifecycle activation | Activate contract through Industries Contract Management sequence, not standard Contract object workflow | Standard Contract activation does not trigger Industries entitlement and provisioning flows |114115---116117## Recommended Workflow118119Step-by-step instructions for an AI agent or practitioner setting up or validating a Communications Cloud org:1201211. **Verify package install and permission sets** — Check Setup > Installed Packages for Communications Cloud or Vlocity Communications. Assign the Communications Cloud Admin permission set to the implementing user before any configuration begins. Confirm EPC app appears in App Launcher.1221232. **Design and confirm the account model** — Determine if the org is B2C (Consumer Accounts, possibly Person Accounts) or B2B (Billing + Service Account hierarchy). Document the RecordType DeveloperNames that will be used. Validate that RecordTypes for `Billing_Account`, `Service_Account`, and `Consumer_Account` exist on the Account object in Setup > Object Manager.1241253. **Build the EPC service catalog** — In the EPC app, create Catalogs (one per market segment), Product Specifications for each service component, Product Offerings with pricing, bundle Product Offerings with Child Items, and Catalog Assignments linking offerings to catalogs. Do not bypass EPC and create offerings in raw Product2.1261274. **Configure order decomposition rules** — In Industries Order Management, define the decomposition rules that map commercial order line items to technical fulfillment actions. Reference the EPC Child Item relationships defined in Step 3. Test decomposition by submitting a sample order and verifying that technical order records are generated.1281295. **Activate contract lifecycle** — Configure Industries Contract Management for the subscriber contract types in scope (e.g., service agreements, device financing). Activate contracts through the Industries contract activation sequence, not the standard Contract object workflow, to ensure entitlement and provisioning flows fire.1301316. **Validate the end-to-end subscriber flow** — Create a test Billing Account, add a Service Account child, place a test order against an EPC-cataloged offering, verify order decomposition generates technical order records, and confirm the contract is activated. Review any OmniStudio flows used for order capture and confirm they reference EPC catalog data.132133---134135## Review Checklist136137Run through these before marking work in this area complete:138139- [ ] Communications Cloud managed package confirmed installed in Setup > Installed Packages140- [ ] Communications Cloud Admin permission set assigned before EPC configuration141- [ ] EPC service catalog contains at least one Catalog, Product Specification, Product Offering, and Catalog Assignment142- [ ] Account RecordTypes (`Billing_Account`, `Service_Account`, `Consumer_Account`) confirmed present on Account object143- [ ] All SOQL queries and Apex that touch Account include a `RecordType.DeveloperName` filter144- [ ] Industries Order Management decomposition rules configured and tested (distinct from Salesforce Order Management)145- [ ] Contract lifecycle activation uses Industries contract activation, not standard Contract workflow146- [ ] No products created directly in Product2 without corresponding EPC Product Offering and Catalog Assignment147- [ ] End-to-end subscriber flow tested: account creation → order capture → order decomposition → contract activation148149---150151## Salesforce-Specific Gotchas152153Non-obvious platform behaviors that cause real production problems:1541551. **EPC objects are invisible without the package** — If the Communications Cloud managed package is not installed, EPC configuration screens and objects (ProductChildItem, CatalogAssignment) do not exist. Admins attempting to configure EPC before package install will find no App Launcher entry and no objects in Object Manager. Always confirm Installed Packages before starting any EPC work.1561572. **RecordType DeveloperName vs. Name on Account** — Communications Cloud RecordType filtering must use `RecordType.DeveloperName`, not `RecordType.Name`. `RecordType.Name` is locale-sensitive and changes when orgs are deployed to different language environments. Queries using `RecordType.Name = 'Billing Account'` will break in non-English orgs or after translation workbench changes.1581593. **Industries Order Management ≠ Salesforce Order Management** — These are two separate platforms with separate object models, APIs, and deployment requirements. Salesforce Order Management (part of B2C/B2B Commerce) uses `OrderSummary`, `FulfillmentOrder`, and Commerce APIs. Industries Order Management uses vlocity_cmt namespace objects and decomposition rules. Attempting to use Commerce APIs for Communications Cloud order fulfillment will produce missing field errors and silent fulfillment failures.160161---162163## Output Artifacts164165| Artifact | Description |166|---|---|167| Org setup checklist | Step-by-step verification list for Communications Cloud activation |168| EPC catalog structure | Recommended Product Specification → Product Offering → Catalog Assignment hierarchy |169| Account segmentation design | RecordType mapping for Billing, Service, and Consumer accounts with query patterns |170| Order decomposition flow diagram | Commercial-to-technical order flow with EPC child item references |171| Permission set assignment plan | List of Communications Cloud permission sets and assignment sequence |172| Contract lifecycle sequence | Industries contract activation steps with entitlement flow validation |173174---175176## Related Skills177178- `architect/industries-data-model` — Use for understanding the full Industries data model across Communications, Insurance, Energy & Utilities, and Health Cloud, including Account subtype SOQL patterns179- `omnistudio/omnistudio-custom-components` — Use when customizing OmniStudio-based order capture UIs within a Communications Cloud org180- `admin/industries-energy-utilities-setup` — Use when configuring Energy & Utilities Cloud; shares similar account hierarchy and Industries Order Management patterns