Search Results autocreated_from_system




Overview

APPS.CSI_SYSTEMS_V is an Oracle EBS service module view that exposes customer-installed system (CSI) records in a denormalized, reporting-friendly form. It sits in the Install Base (CSI) schema family and consolidates system header attributes with related Trading Community Architecture (TCA) party, account, site, location, and lookup information. Its purpose is to provide a single queryable surface for installed system data without requiring the caller to join the CSI system table to multiple TCA tables manually. The view is commonly consumed by Install Base reports, service contract generation, depot repair lookups, and integration interfaces that extract installed asset context for downstream systems. It is available in both EBS 12.1.1 and 12.2.2, with the documented metadata corresponding to 12.2.2.

Underlying Base Objects

The view is defined over the following documented base objects:

Because several TCA objects are joined, the view effectively represents a curated projection of system plus party/account context rather than a raw table read.

Key Columns

The view exposes identifiers and TCA enrichment alongside configuration and audit fields. Notable columns include:

Common Use Cases and Queries

Typical scenarios include listing installed systems for a customer, tracing auto-created systems back to their origin, and joining systems to service contracts. The AUTOCREATED_FROM_SYSTEM column is the key for the user's search, representing the source system from which a record was generated.

  • Find auto-created systems and their source:
    SELECT system_id, system_number, name, autocreated_from_system
    FROM   apps.csi_systems_v
    WHERE  autocreated_from_system IS NOT NULL;
  • List active systems for a customer:
    SELECT system_id, system_number, customer_name, system_type
    FROM   apps.csi_systems_v
    WHERE  customer_number = :p_account
    AND    SYSDATE BETWEEN NVL(start_date_active,SYSDATE)
                       AND NVL(end_date_active,SYSDATE+1);
  • Ship-to reporting:
    SELECT system_id, name, ship_to_customer, ship_to_site_number
    FROM   apps.csi_systems_v
    WHERE  ship_to_customer_id IS NOT NULL;

All queries should be executed against the APPS schema with appropriate Install Base responsibilities and row-level security consideration.