Search Results csd_flwsts_trans_b
Overview
CSD_FLWSTS_TRANS_B is a foundational configuration table within the Oracle E-Business Suite Depot Repair module (product code CSD). Its purpose is to store the allowable status transitions for a given repair type. In practical terms, the table acts as the workflow rulebook for depot repair processing: it defines which repair lifecycle statuses a repair line or repair order may move to from any given current status, and it does so on a per-repair-type basis. This makes the table central to enforcing controlled, repeatable repair workflows rather than permitting arbitrary status changes.
The object resides in the CSD schema and is documented as VALID. Its physical definition in ETRM 12.2.2 comprises fifteen columns. Under the heuristic Data Vault classification supplied in the metadata, the table is assessed as standalone. As a modeling suggestion, this classification indicates that the table is not a pure hub, link, or satellite in the Data Vault sense, but rather a self-contained reference or rule entity that enforces valid state-transition pairs. It is best modeled as a configuration or reference object, potentially serving as a link between repair types and flow statuses in a broader integration model.
Key Information Stored
The table's most important columns fall into three logical groups: identity, transition definition, and behavioral control.
- FLWSTS_TRAN_ID — the surrogate primary key, enforced by unique index CSD_FLWSTS_TRANS_B_U1. Every transition rule row is uniquely identified by this column.
- REPAIR_TYPE_ID — foreign key to CSD_REPAIR_TYPES_B, tying each transition rule to a specific repair type. This is the scoping dimension that makes the rule set repair-type specific.
- FROM_FLOW_STATUS_ID and TO_FLOW_STATUS_ID — the pair of status identifiers defining the permitted move. Together with REPAIR_TYPE_ID, these form the business-key candidate enforced by unique index CSD_FLWSTS_TRANS_B_U2, guaranteeing that a given from-to pair is not duplicated for the same repair type.
- WF_ITEM_TYPE and WF_PROCESS_NAME — the Oracle Workflow item type and process used to drive or validate the transition, linking depot repair status changes to the underlying workflow engine.
- REASON_REQUIRED_FLAG — indicates whether the user must supply a reason when performing the transition, supporting audit and compliance requirements.
- CAPTURE_ACTIVITY_FLAG — controls whether an activity record is captured as part of the transition.
- ALLOW_ALL_RESP_FLAG — determines whether all responsibilities are permitted to execute the transition or only specific ones.
- OBJECT_VERSION_NUMBER, CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and LAST_UPDATE_LOGIN — standard Oracle Applications audit and concurrency-control columns applied to nearly every transactional or configuration table.
Common Use Cases and Queries
Typical use cases center on validating or reporting the repair workflow configuration. A common query retrieves all permitted next statuses for a given repair type and current status:
SELECT to_flow_status_id, reason_required_flag, capture_activity_flag
FROM csd.csd_flwsts_trans_b
WHERE repair_type_id = :p_repair_type_id
AND from_flow_status_id = :p_from_status_id;
Reporting scenarios include auditing which transitions require a reason, identifying repair types with the most permissive transition matrices, and reconciling the workflow item type and process against Oracle Workflow definitions. Administrators use the table during implementation to confirm that a repair type's status model is complete — every intended from-to pair must exist here or the transition will be rejected at runtime.
Related Objects
The most significant dependency is CSD_REPAIR_TYPES_B, referenced through the foreign key CSD_FLWSTS_TRANS_B.REPAIR_TYPE_ID. The from and to status identifiers logically reference the depot repair flow status definitions maintained elsewhere within CSD. Because transitions are executed through Oracle Workflow, the WF_ITEM_TYPE and WF_PROCESS_NAME columns functionally relate to the Workflow item type and process definition tables. The unique indexes CSD_FLWSTS_TRANS_B_U1 and CSD_FLWSTS_TRANS_B_U2 are the primary structural constraints. Downstream, application logic and concurrent programs in the Depot Repair module read this table to enforce valid status changes, making it a dependency for repair order and repair line processing rather than a passive reference.
-
Table: CSD_FLWSTS_TRANS_B
12.2.2
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_FLWSTS_TRANS_B, object_name:CSD_FLWSTS_TRANS_B, status:VALID, product: CSD - Depot Repair , description: To store the allowable status transition(s) for a given repair type. , implementation_dba_data: CSD.CSD_FLWSTS_TRANS_B ,
-
Table: CSD_FLWSTS_TRANS_B
12.1.1
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_FLWSTS_TRANS_B, object_name:CSD_FLWSTS_TRANS_B, status:VALID, product: CSD - Depot Repair , description: To store the allowable status transition(s) for a given repair type. , implementation_dba_data: CSD.CSD_FLWSTS_TRANS_B ,
-
VIEW: CSD.CSD_FLWSTS_TRANS_B#
12.2.2
owner:CSD, object_type:VIEW, object_name:CSD_FLWSTS_TRANS_B#, status:VALID,
-
APPS.CSD_FLWSTS_TRANS_PKG SQL Statements
12.1.1
-
APPS.CSD_FLWSTS_TRANS_PKG SQL Statements
12.2.2
-
SYNONYM: APPS.CSD_FLWSTS_TRANS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CSD_FLWSTS_TRANS_B, status:VALID,
-
SYNONYM: APPS.CSD_FLWSTS_TRANS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CSD_FLWSTS_TRANS_B, status:VALID,
-
VIEW: APPS.CSD_FLOW_STATUS_RULES_V
12.1.1
-
VIEW: CSD.CSD_FLWSTS_TRANS_B#
12.2.2
-
PACKAGE BODY: APPS.CSD_FLWSTS_TRANS_PKG
12.2.2
-
TABLE: CSD.CSD_FLWSTS_TRANS_B
12.1.1
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_FLWSTS_TRANS_B, object_name:CSD_FLWSTS_TRANS_B, status:VALID,
-
VIEW: APPS.CSD_FLOW_STATUS_RULES_V
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.CSD_FLWSTS_TRANS_PKG
12.1.1
-
APPS.CSD_MIGRATE_FROM_115X_PKG6 SQL Statements
12.2.2
-
PACKAGE BODY: APPS.CSD_MIGRATE_FROM_115X_PKG6
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSD_MIGRATE_FROM_115X_PKG6, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
APPS.CSD_MIGRATE_FROM_115X_PKG6 SQL Statements
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
TABLE: CSD.CSD_FLWSTS_TRANS_B
12.2.2
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_FLWSTS_TRANS_B, object_name:CSD_FLWSTS_TRANS_B, status:VALID,
-
PACKAGE BODY: APPS.CSD_FLWSTS_TRANS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSD_FLWSTS_TRANS_PKG, status:VALID,
-
PACKAGE BODY: APPS.CSD_FLWSTS_TRANS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSD_FLWSTS_TRANS_PKG, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.CSD_MIGRATE_FROM_115X_PKG6
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSD_MIGRATE_FROM_115X_PKG6, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
View: CSD_FLOW_STATUS_RULES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_FLOW_STATUS_RULES_V, object_name:CSD_FLOW_STATUS_RULES_V, status:VALID, product: CSD - Depot Repair , implementation_dba_data: APPS.CSD_FLOW_STATUS_RULES_V ,
-
PACKAGE BODY: APPS.CSD_REPAIRS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSD_REPAIRS_PVT, status:VALID,
-
View: CSD_FLOW_STATUS_RULES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_FLOW_STATUS_RULES_V, object_name:CSD_FLOW_STATUS_RULES_V, status:VALID, product: CSD - Depot Repair , implementation_dba_data: APPS.CSD_FLOW_STATUS_RULES_V ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
TABLE: CSD.CSD_FLWSTS_TRAN_MILES
12.1.1
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_FLWSTS_TRAN_MILES, object_name:CSD_FLWSTS_TRAN_MILES, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.CSD_REPAIRS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSD_REPAIRS_PVT, status:VALID,
-
VIEW: APPS.CSD_FLOW_STATUS_RULES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_FLOW_STATUS_RULES_V, object_name:CSD_FLOW_STATUS_RULES_V, status:VALID,
-
VIEW: APPS.CSD_FLOW_STATUS_RULES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_FLOW_STATUS_RULES_V, object_name:CSD_FLOW_STATUS_RULES_V, status:VALID,
-
TABLE: CSD.CSD_FLWSTS_TRAN_MILES
12.2.2
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_FLWSTS_TRAN_MILES, object_name:CSD_FLWSTS_TRAN_MILES, status:VALID,
-
PACKAGE BODY: APPS.CSD_MIGRATE_FROM_115X_PKG6
12.1.1
-
PACKAGE BODY: APPS.CSD_MIGRATE_FROM_115X_PKG6
12.2.2
-
APPS.CSD_FLWSTS_TRANS_PKG dependencies on CSD_FLWSTS_TRANS_B
12.2.2
-
APPS.CSD_MIGRATE_FROM_115X_PKG6 dependencies on CSD_FLWSTS_TRANS_B
12.2.2
-
APPS.CSD_FLWSTS_TRANS_PKG dependencies on CSD_FLWSTS_TRANS_B
12.1.1
-
APPS.CSD_MIGRATE_FROM_115X_PKG6 dependencies on CSD_FLWSTS_TRANS_B
12.1.1
-
APPS.CSD_REPAIRS_PVT dependencies on CSD_FLWSTS_TRANS_B
12.2.2
-
APPS.CSD_REPAIRS_PVT dependencies on CSD_FLWSTS_TRANS_B
12.1.1
-
APPS.CSD_REPAIRS_PVT SQL Statements
12.1.1
-
eTRM - CSD Tables and Views
12.1.1
description: Transaction table for the High Volume Repair module. ,
-
APPS.CSD_REPAIRS_PVT SQL Statements
12.2.2
-
eTRM - CSD Tables and Views
12.2.2
description: Transaction table for the High Volume Repair module. ,