Search Results csd_repairs
Overview
The CSD_REPAIRS table is the central transactional entity within the Oracle E-Business Suite Depot Repair (CSD) module. It serves as the master repository for all repair orders, commonly referred to as Repair Lines, created within the system. Every repair transaction, from initial intake and estimation through final completion and billing, is anchored to a record in this table. Its role is fundamental to the repair lifecycle, acting as the primary hub that integrates core business functions such as service contracts, installed base management, project accounting, and order management by linking to their respective transactional entities.
Key Information Stored
Each record in CSD_REPAIRS represents a single repair order. The table is uniquely identified by the primary key column, REPAIR_LINE_ID. A second unique key, REPAIR_NUMBER, ensures business-level uniqueness for the repair order identifier. The table's structure is defined by its critical foreign key relationships, which store the essential context for each repair. Key columns include CUSTOMER_PRODUCT_ID (linking to the CSI_ITEM_INSTANCES or CS_CUSTOMER_PRODUCTS tables to identify the serviced item), REPAIR_TYPE_ID (classifying the repair), and INCIDENT_ID (linking to the associated service request). It also holds references to financial and planning objects such as CONTRACT_LINE_ID, ORDER_LINE_ID, PROJECT_ID, and TASK_ID, enabling integrated cost tracking and revenue recognition.
Common Use Cases and Queries
This table is central to operational reporting, process tracking, and data integration. Common use cases include generating open repair backlog reports, analyzing repair cycle times, and reconciling repair costs against estimates or service contracts. Technical consultants often query this table to troubleshoot data issues or build custom interfaces. A typical pattern for fetching core repair data involves joining to its primary referenced tables:
- Tracking Repair Status:
SELECT repair_number, creation_date, status_code FROM csd_repairs WHERE status_code NOT IN ('CLOSED', 'CANCELLED') ORDER BY creation_date; - Linking Repair to Item and Contract:
SELECT cr.repair_number, csi.serial_number, okc.line_number FROM csd_repairs cr, csi_item_instances csi, okc_k_lines_b okc WHERE cr.customer_product_id = csi.instance_id AND cr.contract_line_id = okc.id AND cr.repair_line_id = :p_repair_line_id;
Related Objects
CSD_REPAIRS has extensive relationships, acting as a parent to numerous child transactional tables and being a child to several master tables. Key dependent child tables, which store detailed information for a repair line, include CSD_REPAIR_ESTIMATE (for cost estimates), CSD_REPAIR_ACTUALS (for actual costs incurred), CSD_REPAIR_HISTORY (for audit trail), and CSD_PRODUCT_TRANSACTIONS (for material issues). As indicated by the foreign keys, it references master data from modules like Service (CS_INCIDENTS_ALL_B), Installed Base (CSI_ITEM_INSTANCES), Order Management (OE_ORDER_LINES_ALL), Service Contracts (OKC_K_LINES_B), and Resource Management (JTF_RS_RESOURCE_EXTNS).
-
Table: CSD_REPAIRS
12.1.1
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_REPAIRS, object_name:CSD_REPAIRS, status:VALID, product: CSD - Depot Repair , description: This table holds all the repair orders. , implementation_dba_data: CSD.CSD_REPAIRS ,
-
Table: CSD_REPAIRS
12.2.2
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_REPAIRS, object_name:CSD_REPAIRS, status:VALID, product: CSD - Depot Repair , description: This table holds all the repair orders. , implementation_dba_data: CSD.CSD_REPAIRS ,
-
Table: CSD_REPAIR_TYPES_B
12.2.2
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_REPAIR_TYPES_B, object_name:CSD_REPAIR_TYPES_B, status:VALID, product: CSD - Depot Repair , description: This table stores all the repair types. , implementation_dba_data: CSD.CSD_REPAIR_TYPES_B ,
-
Table: CSD_PRODUCT_TRANSACTIONS
12.2.2
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_PRODUCT_TRANSACTIONS, object_name:CSD_PRODUCT_TRANSACTIONS, status:VALID, product: CSD - Depot Repair , description: This enitty is the child table for CSD_REPAIRS and holds all the product (Inbound / Outbound) transactions for a Repair Order. , implementation_dba_data: CSD.CSD_PRODUCT_TRANSACTIONS ,
-
Table: CSD_PRODUCT_TRANSACTIONS
12.1.1
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_PRODUCT_TRANSACTIONS, object_name:CSD_PRODUCT_TRANSACTIONS, status:VALID, product: CSD - Depot Repair , description: This enitty is the child table for CSD_REPAIRS and holds all the product (Inbound / Outbound) transactions for a Repair Order. , implementation_dba_data: CSD.CSD_PRODUCT_TRANSACTIONS ,
-
Table: CSD_REPAIR_JOB_XREF
12.2.2
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_REPAIR_JOB_XREF, object_name:CSD_REPAIR_JOB_XREF, status:VALID, product: CSD - Depot Repair , description: This table holds all the jobs submitted for a repair order. This is the table as a result of many-many relationship between CSD_REPAIRS and WIP_DISCRETE_JOBS. , implementation_dba_data: CSD.CSD_REPAIR_JOB_XREF ,
-
Table: CSD_REPAIR_TYPES_B
12.1.1
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_REPAIR_TYPES_B, object_name:CSD_REPAIR_TYPES_B, status:VALID, product: CSD - Depot Repair , description: This table stores all the repair types. , implementation_dba_data: CSD.CSD_REPAIR_TYPES_B ,
-
Table: CSD_REPAIR_JOB_XREF
12.1.1
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_REPAIR_JOB_XREF, object_name:CSD_REPAIR_JOB_XREF, status:VALID, product: CSD - Depot Repair , description: This table holds all the jobs submitted for a repair order. This is the table as a result of many-many relationship between CSD_REPAIRS and WIP_DISCRETE_JOBS. , implementation_dba_data: CSD.CSD_REPAIR_JOB_XREF ,
-
View: CSD_RO_RMA_SLS_INT_ORDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_RO_RMA_SLS_INT_ORDS_V, object_name:CSD_RO_RMA_SLS_INT_ORDS_V, status:VALID, product: CSD - Depot Repair , description: This view gets RMA, sales order, internal order and internal requistion for repair orders. , implementation_dba_data: APPS.CSD_RO_RMA_SLS_INT_ORDS_V ,
-
View: CSD_RO_RMA_SLS_INT_ORDS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_RO_RMA_SLS_INT_ORDS_V, object_name:CSD_RO_RMA_SLS_INT_ORDS_V, status:VALID, product: CSD - Depot Repair , description: This view gets RMA, sales order, internal order and internal requistion for repair orders. , implementation_dba_data: APPS.CSD_RO_RMA_SLS_INT_ORDS_V ,
-
Table: CSD_RO_SOLUTIONS
12.1.1
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_RO_SOLUTIONS, object_name:CSD_RO_SOLUTIONS, status:VALID, product: CSD - Depot Repair , implementation_dba_data: CSD.CSD_RO_SOLUTIONS ,
-
Table: CSD_RO_SOLUTIONS
12.2.2
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_RO_SOLUTIONS, object_name:CSD_RO_SOLUTIONS, status:VALID, product: CSD - Depot Repair , implementation_dba_data: CSD.CSD_RO_SOLUTIONS ,
-
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 ,
-
Table: CSD_REPAIR_ACTUALS
12.1.1
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_REPAIR_ACTUALS, object_name:CSD_REPAIR_ACTUALS, status:VALID, product: CSD - Depot Repair , description: Stores Repair Actuals header information. , implementation_dba_data: CSD.CSD_REPAIR_ACTUALS ,
-
Table: CSD_REPAIR_ACTUALS
12.2.2
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_REPAIR_ACTUALS, object_name:CSD_REPAIR_ACTUALS, status:VALID, product: CSD - Depot Repair , description: Stores Repair Actuals header information. , implementation_dba_data: CSD.CSD_REPAIR_ACTUALS ,
-
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 ,
-
Table: CSD_REPAIR_ESTIMATE
12.2.2
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_REPAIR_ESTIMATE, object_name:CSD_REPAIR_ESTIMATE, status:VALID, product: CSD - Depot Repair , description: Header for estimate lines of a repair order. , implementation_dba_data: CSD.CSD_REPAIR_ESTIMATE ,
-
Table: CSD_REPAIR_HISTORY
12.1.1
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_REPAIR_HISTORY, object_name:CSD_REPAIR_HISTORY, status:VALID, product: CSD - Depot Repair , description: This table stores all the events (e.g. Broken Product Received, Job Created, Product Shipped) associated with a repair order. , implementation_dba_data: CSD.CSD_REPAIR_HISTORY ,
-
View: CSD_MASS_RO_SN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_MASS_RO_SN_V, object_name:CSD_MASS_RO_SN_V, status:VALID, product: CSD - Depot Repair , implementation_dba_data: APPS.CSD_MASS_RO_SN_V ,
-
Table: CSD_REPAIR_ESTIMATE
12.1.1
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_REPAIR_ESTIMATE, object_name:CSD_REPAIR_ESTIMATE, status:VALID, product: CSD - Depot Repair , description: Header for estimate lines of a repair order. , implementation_dba_data: CSD.CSD_REPAIR_ESTIMATE ,
-
Table: CSD_REPAIR_HISTORY
12.2.2
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_REPAIR_HISTORY, object_name:CSD_REPAIR_HISTORY, status:VALID, product: CSD - Depot Repair , description: This table stores all the events (e.g. Broken Product Received, Job Created, Product Shipped) associated with a repair order. , implementation_dba_data: CSD.CSD_REPAIR_HISTORY ,
-
View: CSD_MASS_RO_SN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_MASS_RO_SN_V, object_name:CSD_MASS_RO_SN_V, status:VALID, product: CSD - Depot Repair , implementation_dba_data: APPS.CSD_MASS_RO_SN_V ,
-
Table: CSD_REPAIR_ORDER_GROUPS
12.1.1
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_REPAIR_ORDER_GROUPS, object_name:CSD_REPAIR_ORDER_GROUPS, status:VALID, product: CSD - Depot Repair , description: Stores Repair Order groups. Each group translates into one or more repair order lines. , implementation_dba_data: CSD.CSD_REPAIR_ORDER_GROUPS ,
-
Table: CSD_REPAIR_ORDER_GROUPS
12.2.2
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_REPAIR_ORDER_GROUPS, object_name:CSD_REPAIR_ORDER_GROUPS, status:VALID, product: CSD - Depot Repair , description: Stores Repair Order groups. Each group translates into one or more repair order lines. , implementation_dba_data: CSD.CSD_REPAIR_ORDER_GROUPS ,
-
View: CSD_REPAIR_ACTUAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_REPAIR_ACTUAL_V, object_name:CSD_REPAIR_ACTUAL_V, status:VALID, product: CSD - Depot Repair , implementation_dba_data: APPS.CSD_REPAIR_ACTUAL_V ,
-
View: CSD_REPAIR_ACTUAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_REPAIR_ACTUAL_V, object_name:CSD_REPAIR_ACTUAL_V, status:VALID, product: CSD - Depot Repair , implementation_dba_data: APPS.CSD_REPAIR_ACTUAL_V ,
-
View: CSD_RO_GROUP_MATERIALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_RO_GROUP_MATERIALS_V, object_name:CSD_RO_GROUP_MATERIALS_V, status:VALID, product: CSD - Depot Repair , description: View to summarize all the charges for a given repair ordergroup by MLE categories. , implementation_dba_data: APPS.CSD_RO_GROUP_MATERIALS_V ,
-
View: CSD_RO_GROUP_ESTIMATE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_RO_GROUP_ESTIMATE_V, object_name:CSD_RO_GROUP_ESTIMATE_V, status:VALID, product: CSD - Depot Repair , description: View to summarize all the estimates for a given repair order line by MLE categories. , implementation_dba_data: APPS.CSD_RO_GROUP_ESTIMATE_V ,
-
View: CSD_RO_GROUP_ESTIMATE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_RO_GROUP_ESTIMATE_V, object_name:CSD_RO_GROUP_ESTIMATE_V, status:VALID, product: CSD - Depot Repair , description: View to summarize all the estimates for a given repair order line by MLE categories. , implementation_dba_data: APPS.CSD_RO_GROUP_ESTIMATE_V ,
-
View: CSD_RO_GROUP_JOBS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_RO_GROUP_JOBS_V, object_name:CSD_RO_GROUP_JOBS_V, status:VALID, product: CSD - Depot Repair , description: View that fetches the details of the WIP job that is submitted for the repair order group. , implementation_dba_data: APPS.CSD_RO_GROUP_JOBS_V ,
-
View: CSD_RO_GROUP_MATERIALS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_RO_GROUP_MATERIALS_V, object_name:CSD_RO_GROUP_MATERIALS_V, status:VALID, product: CSD - Depot Repair , description: View to summarize all the charges for a given repair ordergroup by MLE categories. , implementation_dba_data: APPS.CSD_RO_GROUP_MATERIALS_V ,
-
View: CSD_RO_DIAGNOSTIC_CODES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_RO_DIAGNOSTIC_CODES_V, object_name:CSD_RO_DIAGNOSTIC_CODES_V, status:VALID, product: CSD - Depot Repair , description: Displays Diagnostic Codes associated to Repair Orders. , implementation_dba_data: APPS.CSD_RO_DIAGNOSTIC_CODES_V ,
-
View: CSD_POST_RO_GROUP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_POST_RO_GROUP_V, object_name:CSD_POST_RO_GROUP_V, status:VALID, product: CSD - Depot Repair , description: View based on which post repair logistics are performed. , implementation_dba_data: APPS.CSD_POST_RO_GROUP_V ,
-
View: CSD_RO_GROUP_JOBS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_RO_GROUP_JOBS_V, object_name:CSD_RO_GROUP_JOBS_V, status:VALID, product: CSD - Depot Repair , description: View that fetches the details of the WIP job that is submitted for the repair order group. , implementation_dba_data: APPS.CSD_RO_GROUP_JOBS_V ,
-
View: CSD_PRE_RO_GROUP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_PRE_RO_GROUP_V, object_name:CSD_PRE_RO_GROUP_V, status:VALID, product: CSD - Depot Repair , description: View based on which pre repair logistics are performed. , implementation_dba_data: APPS.CSD_PRE_RO_GROUP_V ,
-
View: CSD_POST_RO_GROUP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_POST_RO_GROUP_V, object_name:CSD_POST_RO_GROUP_V, status:VALID, product: CSD - Depot Repair , description: View based on which post repair logistics are performed. , implementation_dba_data: APPS.CSD_POST_RO_GROUP_V ,
-
View: CSD_PRE_RO_GROUP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_PRE_RO_GROUP_V, object_name:CSD_PRE_RO_GROUP_V, status:VALID, product: CSD - Depot Repair , description: View based on which pre repair logistics are performed. , implementation_dba_data: APPS.CSD_PRE_RO_GROUP_V ,
-
View: CSD_RO_DIAGNOSTIC_CODES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_RO_DIAGNOSTIC_CODES_V, object_name:CSD_RO_DIAGNOSTIC_CODES_V, status:VALID, product: CSD - Depot Repair , description: Displays Diagnostic Codes associated to Repair Orders. , implementation_dba_data: APPS.CSD_RO_DIAGNOSTIC_CODES_V ,
-
View: CSD_REPAIR_KB_SOLUTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_REPAIR_KB_SOLUTIONS_V, object_name:CSD_REPAIR_KB_SOLUTIONS_V, status:VALID, product: CSD - Depot Repair , description: Views that gets all the solutions from Knowledge Base based on reapair orders. , implementation_dba_data: APPS.CSD_REPAIR_KB_SOLUTIONS_V ,
-
View: CSD_REPAIR_ESTIMATE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_REPAIR_ESTIMATE_V, object_name:CSD_REPAIR_ESTIMATE_V, status:VALID, product: CSD - Depot Repair , description: Fetches the estimate header for repair orders. , implementation_dba_data: APPS.CSD_REPAIR_ESTIMATE_V ,
-
View: CSD_REPAIR_ACTUALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_REPAIR_ACTUALS_V, object_name:CSD_REPAIR_ACTUALS_V, status:VALID, product: CSD - Depot Repair , implementation_dba_data: APPS.CSD_REPAIR_ACTUALS_V ,
-
View: CSD_REPAIR_ESTIMATE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_REPAIR_ESTIMATE_V, object_name:CSD_REPAIR_ESTIMATE_V, status:VALID, product: CSD - Depot Repair , description: Fetches the estimate header for repair orders. , implementation_dba_data: APPS.CSD_REPAIR_ESTIMATE_V ,
-
View: CSD_REPAIR_ACTUALS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_REPAIR_ACTUALS_V, object_name:CSD_REPAIR_ACTUALS_V, status:VALID, product: CSD - Depot Repair , implementation_dba_data: APPS.CSD_REPAIR_ACTUALS_V ,
-
View: CSD_REPAIR_KB_SOLUTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_REPAIR_KB_SOLUTIONS_V, object_name:CSD_REPAIR_KB_SOLUTIONS_V, status:VALID, product: CSD - Depot Repair , description: Views that gets all the solutions from Knowledge Base based on reapair orders. , implementation_dba_data: APPS.CSD_REPAIR_KB_SOLUTIONS_V ,
-
View: CSD_JOB_HEADER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_JOB_HEADER_V, object_name:CSD_JOB_HEADER_V, status:VALID, product: CSD - Depot Repair , description: This view gets the header information for the job to be submitted. This view is used by the header block of the submit Repair Job screen. This is specific to the header screen brought up, when navigate from the Repair order Workbench. , implementation_dba_data: APPS.CSD_JOB_HEADER_V ,
-
View: CSD_JOB_HEADER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_JOB_HEADER_V, object_name:CSD_JOB_HEADER_V, status:VALID, product: CSD - Depot Repair , description: This view gets the header information for the job to be submitted. This view is used by the header block of the submit Repair Job screen. This is specific to the header screen brought up, when navigate from the Repair order Workbench. , implementation_dba_data: APPS.CSD_JOB_HEADER_V ,
-
View: CSD_RO_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_RO_SUMMARY_V, object_name:CSD_RO_SUMMARY_V, status:VALID, product: CSD - Depot Repair , description: Repair Order Summary View , implementation_dba_data: APPS.CSD_RO_SUMMARY_V ,
-
View: CSD_RO_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_RO_SUMMARY_V, object_name:CSD_RO_SUMMARY_V, status:VALID, product: CSD - Depot Repair , description: Repair Order Summary View , implementation_dba_data: APPS.CSD_RO_SUMMARY_V ,
-
View: CSD_RO_GROUP_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_RO_GROUP_DETAILS_V, object_name:CSD_RO_GROUP_DETAILS_V, status:VALID, product: CSD - Depot Repair , description: Views that defines all the repair order details for a group. , implementation_dba_data: APPS.CSD_RO_GROUP_DETAILS_V ,
-
View: CSD_RO_GROUP_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_RO_GROUP_DETAILS_V, object_name:CSD_RO_GROUP_DETAILS_V, status:VALID, product: CSD - Depot Repair , description: Views that defines all the repair order details for a group. , implementation_dba_data: APPS.CSD_RO_GROUP_DETAILS_V ,