Search Results csd_sc_domains
Overview
CSD_SC_DOMAINS is a transactional configuration table owned by the CSD schema within the Oracle E-Business Suite Depot Repair module. Its documented purpose is to store service code domains — the qualifying scope or applicability rules that determine where and to which items a given service code may be applied. In EBS 12.1.1 and 12.2.2, service codes define the billable or warrantable repair activities performed in a depot or field service context, and CSD_SC_DOMAINS provides the domain-level detail that ties those codes to inventory items, item categories, and category sets.
The object is registered as VALID with a documented physical schema of 28 columns in ETRM 12.2.2. The heuristic Data Vault classification mined from its foreign-key structure is standalone, meaning the table is not modelled as a dependent satellite of a parent hub in the mined relationship graph. From a modelling-suggestion perspective, CSD_SC_DOMAINS behaves most like a hub or a richly attributed link in its own right: it carries its own surrogate key, references a service code, and optionally references an item or category, while also acting as the referenced parent for downstream recommendation records. Note that the "standalone" classification reflects the absence of upstream chains beyond a single hop, not a lack of relationships.
Key Information Stored
The table is anchored by the surrogate primary key SC_DOMAIN_ID, enforced through CSD_SC_DOMAINS_PK1, with a unique index CSD_SC_DOMAINS_U1 on the same column. The most significant columns are:
- SC_DOMAIN_ID — surrogate primary key and unique business-key candidate, referenced by child tables.
- SERVICE_CODE_ID — foreign key to CSD_SERVICE_CODES_B; identifies the service code whose domain is being defined.
- DOMAIN_TYPE_CODE — discriminator that identifies the kind of domain rule applied to the service code.
- INVENTORY_ITEM_ID — the specific inventory item to which the domain applies.
- CATEGORY_ID — the item category used as a domain qualifier.
- CATEGORY_SET_ID — the category set that owns the category reference, ensuring correct category context.
- OBJECT_VERSION_NUMBER — optimistic locking column used by the OAF/BC4J framework.
- CREATED_BY, CREATION_DATE — standard WHO audit columns recording creation.
- LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard WHO audit columns recording modification.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 — the DFF/descriptive flexfield block for extensible, implementation-specific attributes.
Because the table has no name or description column documented, domain rows are meaningfully identified only through the combination of SERVICE_CODE_ID plus the applicable item or category qualifier.
Common Use Cases and Queries
The primary use case is resolving which service codes apply to a given item or category during depot repair intake, estimate generation, and service-code defaulting. A typical query retrieves all domains for a service code:
SELECT sc_domain_id, service_code_id, domain_type_code, inventory_item_id, category_id, category_set_id FROM csd.csd_sc_domains WHERE service_code_id = :p_service_code_id;- Joining to the parent to describe the code:
SELECT d.*, b.service_code FROM csd.csd_sc_domains d, csd.csd_service_codes_b b WHERE d.service_code_id = b.service_code_id; - Item-driven lookup: filter on
INVENTORY_ITEM_IDto list all applicable service codes for a repaired item. - Category-driven lookup: join
CATEGORY_ID/CATEGORY_SET_IDto MTL_CATEGORIES and MTL_CATEGORY_SETS for reporting. - Audit reporting using
LAST_UPDATE_DATEandLAST_UPDATED_BYto track configuration changes over time.
Related Objects
- CSD_SERVICE_CODES_B — referenced by CSD_SC_DOMAINS.SERVICE_CODE_ID; the parent service code definition table.
- CSD_SC_RECOMMENDATIONS_B — references CSD_SC_DOMAINS.SC_DOMAIN_ID, linking recommended actions to a domain.
- MTL_SYSTEM_ITEMS_B / MTL_CATEGORIES_B / MTL_CATEGORY_SETS_B — supply the item, category, and category-set context for INVENTORY_ITEM_ID, CATEGORY_ID, and CATEGORY_SET_ID.
- CSD_SC_DOMAINS_PK1 / CSD_SC_DOMAINS_U1 — primary key constraint and unique index on SC_DOMAIN_ID.
- FND_ATTACHED_DOCUMENTS and standard WHO/FND lookups — support attachments and audit metadata.
-
Table: CSD_SC_DOMAINS
12.2.2
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_SC_DOMAINS, object_name:CSD_SC_DOMAINS, status:VALID, product: CSD - Depot Repair , description: This table stores service code domains. , implementation_dba_data: CSD.CSD_SC_DOMAINS ,
-
Table: CSD_SC_DOMAINS
12.1.1
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_SC_DOMAINS, object_name:CSD_SC_DOMAINS, status:VALID, product: CSD - Depot Repair , description: This table stores service code domains. , implementation_dba_data: CSD.CSD_SC_DOMAINS ,
-
SYNONYM: APPS.CSD_SC_DOMAINS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CSD_SC_DOMAINS, status:VALID,
-
SYNONYM: APPS.CSD_SC_DOMAINS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CSD_SC_DOMAINS, status:VALID,
-
VIEW: CSD.CSD_SC_DOMAINS#
12.2.2
owner:CSD, object_type:VIEW, object_name:CSD_SC_DOMAINS#, status:VALID,
-
APPS.CSD_SC_DOMAINS_PVT SQL Statements
12.2.2
-
VIEW: CSD.CSD_SC_DOMAINS#
12.2.2
-
VIEW: APPS.CSD_SC_DOMAINS_V
12.1.1
-
APPS.CSD_SC_DOMAINS_PVT SQL Statements
12.1.1
-
VIEW: APPS.CSD_SC_DOMAINS_V
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.CSD_SC_DOMAINS_PKG SQL Statements
12.1.1
-
APPS.CSD_SC_DOMAINS_PKG SQL Statements
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.CSD_SC_DOMAINS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSD_SC_DOMAINS_PVT, status:VALID,
-
PACKAGE BODY: APPS.CSD_SC_DOMAINS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSD_SC_DOMAINS_PKG, status:VALID,
-
PACKAGE BODY: APPS.CSD_SC_DOMAINS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSD_SC_DOMAINS_PVT, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.CSD_SC_DOMAINS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSD_SC_DOMAINS_PKG, status:VALID,
-
TABLE: CSD.CSD_SC_DOMAINS
12.1.1
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_SC_DOMAINS, object_name:CSD_SC_DOMAINS, status:VALID,
-
TABLE: CSD.CSD_SC_DOMAINS
12.2.2
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_SC_DOMAINS, object_name:CSD_SC_DOMAINS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
View: CSD_SC_DOMAINS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_SC_DOMAINS_V, object_name:CSD_SC_DOMAINS_V, status:VALID, product: CSD - Depot Repair , description: View that displays the mapping between Service Codes and Product Categories. , implementation_dba_data: APPS.CSD_SC_DOMAINS_V ,
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
View: CSD_SC_DOMAINS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_SC_DOMAINS_V, object_name:CSD_SC_DOMAINS_V, status:VALID, product: CSD - Depot Repair , description: View that displays the mapping between Service Codes and Product Categories. , implementation_dba_data: APPS.CSD_SC_DOMAINS_V ,
-
PACKAGE BODY: APPS.CSD_SC_DOMAINS_PKG
12.2.2
-
PACKAGE BODY: APPS.CSD_SC_DOMAINS_PKG
12.1.1
-
VIEW: APPS.CSD_SC_DOMAINS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_SC_DOMAINS_V, object_name:CSD_SC_DOMAINS_V, status:VALID,
-
VIEW: APPS.CSD_SC_DOMAINS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_SC_DOMAINS_V, object_name:CSD_SC_DOMAINS_V, status:VALID,
-
APPS.CSD_SC_DOMAINS_PVT dependencies on CSD_SC_DOMAINS
12.1.1
-
APPS.CSD_SC_DOMAINS_PKG dependencies on CSD_SC_DOMAINS
12.1.1
-
PACKAGE BODY: APPS.CSD_SC_DOMAINS_PVT
12.2.2
-
APPS.CSD_SC_DOMAINS_PVT dependencies on CSD_SC_DOMAINS
12.2.2
-
APPS.CSD_SC_DOMAINS_PKG dependencies on CSD_SC_DOMAINS
12.2.2
-
PACKAGE BODY: APPS.CSD_SC_DOMAINS_PVT
12.1.1
-
eTRM - CSD Tables and Views
12.1.1
description: Transaction table for the High Volume Repair module. ,
-
eTRM - CSD Tables and Views
12.2.2
description: Transaction table for the High Volume Repair module. ,
-
APPS.CSD_SC_DOMAINS_PKG dependencies on FND_API
12.2.2
-
APPS.CSD_SC_DOMAINS_PKG dependencies on FND_API
12.1.1
-
eTRM - CSD Tables and Views
12.1.1
description: Transaction table for the High Volume Repair module. ,
-
eTRM - CSD Tables and Views
12.2.2
description: Transaction table for the High Volume Repair module. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1