Search Results csd_bulletin_scs




Overview

CSD_BULLETIN_SCS is a child table within the CSD (Depot Repair) product schema of Oracle E-Business Suite, available in both 12.1.1 and 12.2.2. It records the association between depot repair bulletins and service codes, allowing a single bulletin to be linked to one or more service codes. Bulletins in Depot Repair communicate repair instructions, safety notices, or coverage rules to technicians, and the service code linkage determines which repair activities, service types, or pricing codes the bulletin applies to.

From a heuristic Data Vault modeling perspective, CSD_BULLETIN_SCS is best classified as a link table. It resolves a many-to-many relationship between two business entities — CSD_BULLETINS_B (the bulletin header) and CSD_SERVICE_CODES_B (the service code master) — and carries no descriptive attributes of its own beyond standard audit and concurrency columns. This classification is inferred from the foreign key structure and the presence of a composite unique index on the two foreign key columns.

Key Information Stored

The table contains nine documented columns. The most significant are:

The documented unique indexes distinguish keys: CSD_BULLETIN_SCS_U1 enforces uniqueness on BULLETIN_SC_ID, while CSD_BULLETIN_SCS_U2 enforces uniqueness on the (BULLETIN_ID, SERVICE_CODE_ID) pair, which is the true business-key candidate preventing duplicate bulletin-to-service-code mappings.

Common Use Cases and Queries

Typical usage includes reporting which service codes a bulletin covers, finding all bulletins applicable to a given service code, and validating bulletin coverage during repair order creation.

  • List service codes for a bulletin: SELECT SERVICE_CODE_ID FROM CSD_BULLETIN_SCS WHERE BULLETIN_ID = :bulletin_id;
  • Find bulletins for a service code: SELECT BULLETIN_ID FROM CSD_BULLETIN_SCS WHERE SERVICE_CODE_ID = :service_code_id;
  • Join to master tables for descriptive reporting: SELECT b.BULLETIN_NAME, s.SERVICE_CODE FROM CSD_BULLETIN_SCS scs JOIN CSD_BULLETINS_B b ON scs.BULLETIN_ID = b.BULLETIN_ID JOIN CSD_SERVICE_CODES_B s ON scs.SERVICE_CODE_ID = s.SERVICE_CODE_ID;

Related Objects

  • CSD_BULLETINS_B — Parent bulletin header; joined via BULLETIN_ID.
  • CSD_SERVICE_CODES_B — Service code master; joined via SERVICE_CODE_ID.
  • CSD_BULLETIN_SCS_PK1 — Primary key index on BULLETIN_SC_ID.
  • CSD_BULLETIN_SCS_U1 / U2 — Unique indexes enforcing surrogate and business-key uniqueness.
  • Related Depot Repair objects such as bulletin applicability, repair order, and estimate tables may reference these links indirectly through CSD_BULLETINS_B.