Search Results csd_bulletins_b
Overview
CSD_BULLETINS_B is the base table for service bulletins within the CSD (Depot Repair) product module of Oracle E-Business Suite, applicable to releases 12.1.1 and 12.2.2. Service bulletins are internal communications — quality alerts, repair instructions, escalation notices, or process advisories — that depot repair organizations distribute to technicians, repair agents, and operational staff. The table resides in the CSD schema and is documented as VALID in ETRM. It serves as the master (header) entity for bulletin definitions, storing identifying, scheduling, workflow, and descriptive attributes that govern how and when a bulletin is surfaced to its audience.
Under a Data Vault modeling heuristic, the observed foreign-key topology classifies CSD_BULLETINS_B as hub-leaning: it is the referenced anchor for dependent child tables, and no foreign keys point outward from it to other hubs. This suggests treating BULLETIN_ID as a durable business key candidate at the center of the bulletin subject area, with dependent associations and descriptors modeled as separate satellites or links.
Key Information Stored
The table contains 32 documented columns. The most significant are:
- BULLETIN_ID — the surrogate primary key, enforced by the unique index CSD_BULLETINS_B_U1 and constraint CSD_BULLETINS_PK1. It is the join key for all dependent tables.
- BULLETIN_TYPE_CODE — classifies the bulletin (for example, by communication category or severity class).
- ACTIVE_FROM / ACTIVE_TO — the effective date range during which the bulletin is live.
- PUBLISHED_FLAG — indicates whether the bulletin has been released to its audience.
- ESCALATION_CODE — identifies the escalation path or severity level associated with the bulletin.
- MANDATORY_FLAG — marks whether acknowledgment or compliance is required.
- FREQUENCY_CODE — controls recurrence or re-display cadence.
- WF_ITEM_TYPE / WF_PROCESS_NAME — link the bulletin to an Oracle Workflow item type and process, enabling notification or approval routing.
- OBJECT_VERSION_NUMBER — supports optimistic locking for concurrent updates.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard EBS audit columns providing who/when traceability.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE15 — the standard EBS descriptive flexfield (DFF) columns for client-specific extensions.
The primary key is a system-generated surrogate; the documented unique index exposes BULLETIN_ID only, so any human-readable business identifier is carried in the flexfield or type/date attributes rather than a separate business-key column.
Common Use Cases and Queries
Typical scenarios include reporting the currently active bulletin set for a repair organization, auditing which bulletins are mandatory, and driving workflow notifications when a bulletin is published. A representative query retrieves active, published bulletins within their effective window:
SELECT b.bulletin_id, b.bulletin_type_code, b.escalation_code, b.mandatory_flag FROM csd.csd_bulletins_b b WHERE b.published_flag = 'Y' AND SYSDATE BETWEEN b.active_from AND NVL(b.active_to, SYSDATE + 1) AND b.mandatory_flag = 'Y';- Joining to CSD_BULLETIN_SCS to report which service organizations are scoped to each bulletin:
SELECT s.bulletin_id, s.* FROM csd.csd_bulletin_scs s WHERE s.bulletin_id = :p_bulletin_id; - Auditing workflow-enabled bulletins: filter on
wf_item_type IS NOT NULLand join to WF tables for notification history.
Because the table is the hub, most operational reporting joins child tables on BULLETIN_ID and applies date and flag predicates at the header level.
Related Objects
- CSD_BULLETIN_SCS — references CSD_BULLETINS_B via BULLETIN_ID; holds the service/organization scoping of each bulletin.
- CSD_RO_BULLETINS — references CSD_BULLETINS_B via BULLETIN_ID; associates bulletins with repair orders or related repair entities.
- CSD_BULLETINS_PK1 — the primary key constraint enforcing BULLETIN_ID uniqueness.
- CSD_BULLETINS_B_U1 — the unique index on BULLETIN_ID, the documented business-key candidate.
- Oracle Workflow (WF_ITEM_TYPE / WF_PROCESS_NAME) — external dependency for bulletin notification and approval processes.
- Standard EBS audit and DFF infrastructure that consumes the CREATED_BY / LAST_UPDATED_BY and ATTRIBUTE columns.
-
Table: CSD_BULLETINS_B
12.2.2
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_BULLETINS_B, object_name:CSD_BULLETINS_B, status:VALID, product: CSD - Depot Repair , description: Base table for service bulletins , implementation_dba_data: CSD.CSD_BULLETINS_B ,
-
Table: CSD_BULLETINS_B
12.1.1
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_BULLETINS_B, object_name:CSD_BULLETINS_B, status:VALID, product: CSD - Depot Repair , implementation_dba_data: CSD.CSD_BULLETINS_B ,
-
View: CSD_BULLETINS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_BULLETINS_VL, object_name:CSD_BULLETINS_VL, status:VALID, product: CSD - Depot Repair , description: View to join CSD_BULLETINS_B and CSD_BULLETINS_TL , implementation_dba_data: APPS.CSD_BULLETINS_VL ,
-
VIEW: APPS.CSD_BULLETINS_VL
12.1.1
-
VIEW: CSD.CSD_BULLETINS_B#
12.2.2
owner:CSD, object_type:VIEW, object_name:CSD_BULLETINS_B#, status:VALID,
-
SYNONYM: APPS.CSD_BULLETINS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CSD_BULLETINS_B, status:VALID,
-
SYNONYM: APPS.CSD_BULLETINS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CSD_BULLETINS_B, status:VALID,
-
VIEW: APPS.CSD_BULLETINS_VL
12.2.2
-
View: CSD_BULLETINS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_BULLETINS_VL, object_name:CSD_BULLETINS_VL, status:VALID, product: CSD - Depot Repair , description: View to join CSD_BULLETINS_B and CSD_BULLETINS_TL , implementation_dba_data: APPS.CSD_BULLETINS_VL ,
-
APPS.CSD_BULLETINS_PKG SQL Statements
12.1.1
-
VIEW: CSD.CSD_BULLETINS_B#
12.2.2
-
APPS.CSD_BULLETINS_PKG SQL Statements
12.2.2
-
APPS.CSD_RO_BULLETINS_PVT SQL Statements
12.1.1
-
VIEW: APPS.CSD_BULLETINS_V
12.1.1
-
VIEW: APPS.CSD_BULLETINS_V
12.2.2
-
VIEW: APPS.CSD_BULLETINS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_BULLETINS_VL, object_name:CSD_BULLETINS_VL, status:VALID,
-
Table: CSD_BULLETIN_SCS
12.1.1
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_BULLETIN_SCS, object_name:CSD_BULLETIN_SCS, status:VALID, product: CSD - Depot Repair , implementation_dba_data: CSD.CSD_BULLETIN_SCS ,
-
APPS.CSD_RO_BULLETINS_PVT SQL Statements
12.2.2
-
VIEW: APPS.CSD_BULLETINS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_BULLETINS_VL, object_name:CSD_BULLETINS_VL, status:VALID,
-
Table: CSD_BULLETIN_SCS
12.2.2
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_BULLETIN_SCS, object_name:CSD_BULLETIN_SCS, status:VALID, product: CSD - Depot Repair , description: Bulletin Service Codes table , implementation_dba_data: CSD.CSD_BULLETIN_SCS ,
-
Table: CSD_RO_BULLETINS
12.1.1
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_RO_BULLETINS, object_name:CSD_RO_BULLETINS, status:VALID, product: CSD - Depot Repair , implementation_dba_data: CSD.CSD_RO_BULLETINS ,
-
12.1.1 FND Design Data
12.1.1
-
Table: CSD_RO_BULLETINS
12.2.2
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_RO_BULLETINS, object_name:CSD_RO_BULLETINS, status:VALID, product: CSD - Depot Repair , description: Service Order Bulletins , implementation_dba_data: CSD.CSD_RO_BULLETINS ,
-
PACKAGE BODY: APPS.CSD_BULLETINS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSD_BULLETINS_PKG, status:VALID,
-
TABLE: CSD.CSD_BULLETINS_B
12.2.2
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_BULLETINS_B, object_name:CSD_BULLETINS_B, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.CSD_BULLETINS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSD_BULLETINS_PKG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.CSD_BULLETINS_PKG
12.2.2
-
TABLE: CSD.CSD_BULLETINS_B
12.1.1
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_BULLETINS_B, object_name:CSD_BULLETINS_B, status:VALID,
-
PACKAGE BODY: APPS.CSD_BULLETINS_PKG
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.CSD_RO_BULLETINS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSD_RO_BULLETINS_PVT, status:VALID,
-
VIEW: APPS.CSD_BULLETINS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_BULLETINS_V, object_name:CSD_BULLETINS_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.CSD_RO_BULLETINS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSD_RO_BULLETINS_PVT, status:VALID,
-
VIEW: APPS.CSD_BULLETINS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_BULLETINS_V, object_name:CSD_BULLETINS_V, status:VALID,
-
View: CSD_BULLETINS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_BULLETINS_V, object_name:CSD_BULLETINS_V, status:VALID, product: CSD - Depot Repair , description: View to fetch all Service Bulletins , implementation_dba_data: APPS.CSD_BULLETINS_V ,
-
View: CSD_BULLETINS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_BULLETINS_V, object_name:CSD_BULLETINS_V, status:VALID, product: CSD - Depot Repair , description: View to fetch all Service Bulletins , implementation_dba_data: APPS.CSD_BULLETINS_V ,
-
12.2.2 DBA Data
12.2.2
-
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_BULLETINS_PKG dependencies on CSD_BULLETINS_B
12.1.1
-
APPS.CSD_RO_BULLETINS_PVT dependencies on CSD_BULLETINS_B
12.2.2
-
APPS.CSD_RO_BULLETINS_PVT dependencies on CSD_BULLETINS_B
12.1.1
-
APPS.CSD_BULLETINS_PKG dependencies on CSD_BULLETINS_B
12.2.2