Search Results csd_repair_status
Overview
APPS.CSD_JOB_HEADER_V is a reporting view within the Oracle E-Business Suite Depot Repair module (CSD). It presents a consolidated, denormalized header-level picture of repair orders (repair jobs), joining the core repair transaction record to its originating service incident, its repair type, its status lookup, and the customer party. In EBS 12.1.1 and 12.2.2 the view is owned by the APPS schema and serves as a convenient read-only interface for forms, concurrent programs, OBIEE/BIP extracts, and custom integrations that need human-readable repair job information without reconstructing the joins against the underlying depot repair tables.
The view is especially relevant to the user search term csd_repair_status, since the repair order status is exposed through a lookup-based column (REPAIR_ORDER_STATUS) resolved from the CSD_REPAIR_STATUS lookup type. The view therefore returns the translated meaning of the status code rather than the raw code stored on the repair line.
Underlying Base Objects
The documented base objects referenced by the view are:
- CSD_REPAIRS (synonym) — the primary depot repair line table; aliased as
DRA. It supplies the repair number, quantities, status code, promise date, and the WHO columns and descriptive flexfield attributes. - CSD_REPAIR_TYPES_VL (view) — the repair type translated view; aliased as
RTYPE, supplying the repair type name. - CS_INCIDENTS_ALL_B (synonym) — the service request/incident base table; aliased as
SR, providing caller type and customer reference. - FND_LOOKUPS (view) — the lookup values view; aliased as
FND, translating the repair status code into its meaning for lookup typeCSD_REPAIR_STATUS. - HZ_PARTIES (synonym) — the trading community party table; aliased as
HZP, supplying customer name information. - FND_GLOBAL (package) — referenced for session context (org/user environment) in the deployed metadata.
The joins are inner joins on incident_id, repair_type_id, status lookup code, and customer_id, meaning rows are returned only where these related records exist.
Key Columns
- REPAIR_ORDER_NUMBER — the repair number from CSD_REPAIRS, the natural business identifier of the repair job.
- REPAIR_LINE_ID / ROW_ID — unique identifiers of the repair line, useful for drill-down and row-level integration.
- CUSTOMER_NAME — derived via DECODE on the incident caller type: organizations resolve to
PARTY_NAME, persons to the concatenated first and last name. - REPAIR_ORDER_STATUS — the lookup
MEANINGfor theCSD_REPAIR_STATUScode stored on the repair line; this is the status column most commonly used in repair status reporting. - REPAIR_TYPE — the translated repair type name.
- REPAIR_ORDER_QUANTITY and RECEIVED_QUANTITY — ordered quantity and the received quantity (with NVL to zero).
- REPAIR_PROMISE_DATE — the promised completion date for the repair.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard audit/WHO columns.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 — the descriptive flexfield context and segment values from the repair record.
Common Use Cases and Queries
The view is typically used for repair status dashboards, aging reports, and customer-facing repair tracking. A basic status query follows:
SELECT repair_order_number, customer_name, repair_order_status, repair_type FROM apps.csd_job_header_v WHERE repair_order_status = 'Awaiting Repair';
Additional scenarios include listing open repairs against a promise date window:
SELECT repair_order_number, repair_promise_date, repair_order_status FROM apps.csd_job_header_v WHERE repair_promise_date BETWEEN :from_date AND :to_date ORDER BY repair_promise_date;
Or aggregating workload by status for operational monitoring:
SELECT repair_order_status, COUNT(*) FROM apps.csd_job_header_v GROUP BY repair_order_status;
Because the view resolves the repair status meaning through FND_LOOKUPS and the customer name through HZ_PARTIES, it removes the need for custom joins and provides consistent, presentation-ready data for both in-application reporting and external extracts.
-
Lookup Type: CSD_REPAIR_STATUS
12.1.1
product: CSD - Depot Repair , meaning: Repair State , description: Repair State ,
-
Lookup Type: CSD_REPAIR_STATUS
12.2.2
product: CSD - Depot Repair , meaning: Repair State , description: Repair State ,
-
VIEW: APPS.CSD_JOB_HEADER_V
12.1.1
-
VIEW: APPS.CSD_REPAIR_FLOW_STATUSES_V
12.1.1
-
VIEW: APPS.CSD_JOB_HEADER_V
12.2.2
-
VIEW: APPS.CSD_REPAIR_FLOW_STATUSES_V
12.2.2
-
VIEW: APPS.CSD_RO_GROUP_DETAILS_V
12.1.1
-
VIEW: APPS.CSD_RO_GROUP_DETAILS_V
12.2.2
-
VIEW: APPS.CSD_RO_SUMMARY_V
12.2.2
-
VIEW: APPS.CSD_RO_SUMMARY_V
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.CSD_REPAIR_FLOW_STATUSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_REPAIR_FLOW_STATUSES_V, object_name:CSD_REPAIR_FLOW_STATUSES_V, status:VALID,
-
VIEW: APPS.CSD_REPAIR_FLOW_STATUSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_REPAIR_FLOW_STATUSES_V, object_name:CSD_REPAIR_FLOW_STATUSES_V, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.CSD_IR_REPAIR_JOBS_V
12.1.1
-
VIEW: APPS.CSD_IR_REPAIR_JOBS_V
12.2.2
-
View: CSD_REPAIR_FLOW_STATUSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_REPAIR_FLOW_STATUSES_V, object_name:CSD_REPAIR_FLOW_STATUSES_V, status:VALID, product: CSD - Depot Repair , implementation_dba_data: APPS.CSD_REPAIR_FLOW_STATUSES_V ,
-
View: CSD_REPAIR_FLOW_STATUSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_REPAIR_FLOW_STATUSES_V, object_name:CSD_REPAIR_FLOW_STATUSES_V, status:VALID, product: CSD - Depot Repair , implementation_dba_data: APPS.CSD_REPAIR_FLOW_STATUSES_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_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_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_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: APPS.CSD_REPAIRS_NON_SEC_V
12.1.1
-
VIEW: APPS.CSD_REPAIR_JOBS_V
12.2.2
-
VIEW: APPS.CSD_REPAIR_JOBS_V
12.1.1
-
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 ,
-
VIEW: APPS.CSD_REPAIRS_V
12.1.1
-
VIEW: APPS.CSD_REPAIRS_NON_SEC_V
12.2.2
-
VIEW: APPS.CSD_REPAIRS_V
12.2.2
-
View: CSD_IR_REPAIR_JOBS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_IR_REPAIR_JOBS_V, object_name:CSD_IR_REPAIR_JOBS_V, status:VALID, product: CSD - Depot Repair , description: The view used in Submit Repair Jobs if the Allow create WIP Job w/o RMA is set , implementation_dba_data: APPS.CSD_IR_REPAIR_JOBS_V ,
-
APPS.ISC_DEPOT_COMPLETION_PKG SQL Statements
12.1.1
-
View: CSD_IR_REPAIR_JOBS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_IR_REPAIR_JOBS_V, object_name:CSD_IR_REPAIR_JOBS_V, status:VALID, product: CSD - Depot Repair , description: The view used in Submit Repair Jobs if the Allow create WIP Job w/o RMA is set , implementation_dba_data: APPS.CSD_IR_REPAIR_JOBS_V ,
-
TABLE: CSD.CSD_FLOW_STATUSES_B
12.2.2
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_FLOW_STATUSES_B, object_name:CSD_FLOW_STATUSES_B, status:VALID,
-
TABLE: CSD.CSD_FLOW_STATUSES_B
12.1.1
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_FLOW_STATUSES_B, object_name:CSD_FLOW_STATUSES_B, status:VALID,
-
View: CSD_REPAIR_JOBS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_REPAIR_JOBS_V, object_name:CSD_REPAIR_JOBS_V, status:VALID, product: CSD - Depot Repair , description: The view for getting repair orders with service request information. , implementation_dba_data: APPS.CSD_REPAIR_JOBS_V ,
-
View: CSD_REPAIR_JOBS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_REPAIR_JOBS_V, object_name:CSD_REPAIR_JOBS_V, status:VALID, product: CSD - Depot Repair , description: The view for getting repair orders with service request information. , implementation_dba_data: APPS.CSD_REPAIR_JOBS_V ,
-
APPS.CSD_LOGISTICS_PVT SQL Statements
12.1.1
-
View: CSD_REPAIRS_NON_SEC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_REPAIRS_NON_SEC_V, object_name:CSD_REPAIRS_NON_SEC_V, status:VALID, product: CSD - Depot Repair , description: The view for getting repair orders. It is without Service Security. , implementation_dba_data: APPS.CSD_REPAIRS_NON_SEC_V ,
-
View: CSD_REPAIRS_NON_SEC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_REPAIRS_NON_SEC_V, object_name:CSD_REPAIRS_NON_SEC_V, status:VALID, product: CSD - Depot Repair , description: The view for getting repair orders. It is without Service Security. , implementation_dba_data: APPS.CSD_REPAIRS_NON_SEC_V ,
-
APPS.CSD_LOGISTICS_PVT SQL Statements
12.2.2
-
View: CSD_REPAIRS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_REPAIRS_V, object_name:CSD_REPAIRS_V, status:VALID, product: CSD - Depot Repair , description: The view for getting repair orders. , implementation_dba_data: APPS.CSD_REPAIRS_V ,
-
View: CSD_REPAIRS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_REPAIRS_V, object_name:CSD_REPAIRS_V, status:VALID, product: CSD - Depot Repair , description: The view for getting repair orders. , implementation_dba_data: APPS.CSD_REPAIRS_V ,
-
PACKAGE BODY: APPS.ISC_DEPOT_COMPLETION_PKG
12.1.1
-
PACKAGE BODY: APPS.CSD_LOGISTICS_PVT
12.1.1
-
PACKAGE BODY: APPS.CSD_LOGISTICS_PVT
12.2.2
-
APPS.CSD_LOGISTICS_PVT dependencies on FND_LOOKUPS
12.2.2
-
APPS.CSD_LOGISTICS_PVT dependencies on FND_LOOKUPS
12.1.1
-
APPS.CSD_PROCESS_PVT dependencies on CSD_REPAIR_TYPES_VL
12.1.1
-
APPS.CSD_PROCESS_PVT dependencies on CSD_REPAIR_TYPES_VL
12.2.2