Search Results source_id1




Overview

CSD_REPAIR_JOB_XREF_V is a reporting and integration view owned by the APPS schema in Oracle E-Business Suite, defined within the CSD – Depot Repair product family. Its purpose is to expose the linkage between depot repair order lines and their associated Work in Process (WIP) discrete jobs. The underlying transactional table, CSD_REPAIR_JOB_XREF, stores the cross-reference between a repair line (REPAIR_LINE_ID) and a manufacturing job (WIP_ENTITY_ID), together with allocation quantities and source attribution fields. The view enriches this raw cross-reference with descriptive attributes drawn from WIP, inventory organizations, item definitions, lookups, and service codes, producing a denormalized, query-ready result set suitable for reports, concurrent programs, and integrations.

The view is documented as VALID in both EBS 12.1.1 and 12.2.2 environments, and is the standard access point for retrieving repair-job relationships without requiring the consumer to reconstruct the multi-table join logic independently.

Underlying Base Objects

Per the ETRM documentation, the view is defined over the following objects:

Key Columns

Common Use Cases and Queries

The view supports repair-to-manufacturing traceability, job status dashboards, allocation reconciliation, and source attribution reporting. A typical query retrieving jobs for a given source identifier is:

  • SELECT wip_entity_name, organization_name, product, status_meaning, source_type, source_id1, source_name, created_quantity, completed_quantity FROM csd_repair_job_xref_v WHERE source_id1 = :p_source_id;
  • SELECT repair_line_id, wip_entity_name, allocated_created_quantity FROM csd_repair_job_xref_v WHERE repair_line_id = :p_repair_line_id;
  • SELECT source_type, source_id1, COUNT(*) FROM csd_repair_job_xref_v GROUP BY source_type, source_id1;

Because the view enforces organization security through HR_SECURITY and FND_GLOBAL, results are automatically restricted to the operating unit context of the session. Access is therefore typically granted to APPS and read-only reporting responsibilities.