Search Results change_amount




Overview

PA_CI_SUPPLIER_DETAILS is a Projects (PA) module table in Oracle E-Business Suite 12.1.1 and 12.2.2 that stores the impact of change orders on suppliers and purchase orders. It records how a control item change propagates to supplier commitments and PO documents, capturing cost, revenue, and quote negotiation attributes tied to a specific change impact. The table is owned by the PA schema and is documented with 46 columns in the ETRM 12.2.2 physical schema.

From a modeling perspective, the mined foreign-key structure suggests a link classification in a Data Vault heuristic. The table sits between control items, change impacts, change types, vendors, and purchasing documents, and each row asserts an association rather than describing a standalone hub business key. This classification is a suggested interpretation, not a mandated construct.

Key Information Stored

The surrogate primary key is CI_TRANSACTION_ID, enforced by PA_CI_SUPPLIER_DETAILS_PK. Two unique indexes provide business-key candidates: PA_CI_SUPPLIER_DETAILS_U1 on CI_TRANSACTION_ID and PA_CI_SUPPLIER_DETAILS_U2 on the combination of ORIGINAL_SUPP_TRANS_ID and AUDIT_HISTORY_NUMBER, which supports audited history across change revisions.

Common Use Cases and Queries

Project controls and procurement analysts use this table to report supplier cost impact from change orders, to compare estimated against negotiated and final supplier costs, and to trace which purchase order lines were affected by a given control item change.

  • Change order cost impact by supplier: sum CHANGE_AMOUNT grouped by VENDOR_ID.
  • PO line exposure reporting: join PO_HEADER_ID and PO_LINE_ID back to PO_HEADERS_ALL and PO_LINES_ALL to identify affected lines.
  • Current versus historical view: filter CURRENT_AUDIT_FLAG and order by AUDIT_HISTORY_NUMBER to isolate the active revision.
  • Negotiation variance analysis: compare ESTIMATED_COST against NEGOTIATED_COST and FINAL_COST.

A representative pattern joins the supplier detail to control items and impacts:

SELECT s.CI_TRANSACTION_ID, s.CI_ID, s.VENDOR_ID,
       s.PO_HEADER_ID, s.PO_LINE_ID, s.CHANGE_AMOUNT
FROM   PA.PA_CI_SUPPLIER_DETAILS s
WHERE  s.CURRENT_AUDIT_FLAG = 'Y'
AND    s.CI_ID = :control_item_id;

Related Objects

The foreign keys documented in the ETRM metadata establish the following dependencies, all joined on the columns shown:

Collectively these relationships position PA_CI_SUPPLIER_DETAILS as the Projects-to-Purchasing bridge for change order supplier impact, supporting both transactional processing and cross-module reporting between the Projects and Purchasing applications.

  • Table: PA_CI_SUPPLIER_DETAILS 12.1.1

    owner:PA,  object_type:TABLE,  fnd_design_data:PA.PA_CI_SUPPLIER_DETAILS,  object_name:PA_CI_SUPPLIER_DETAILS,  status:VALID,  product: PA - Projectsdescription: A new entity PA_CI_SUPPLIER_DETAILS, which stores the details of impact of change orders on Suppliers and Purchase Orders. This entity contains the following attributes ,  implementation_dba_data: PA.PA_CI_SUPPLIER_DETAILS

  • Table: PA_CI_SUPPLIER_DETAILS 12.2.2

    owner:PA,  object_type:TABLE,  fnd_design_data:PA.PA_CI_SUPPLIER_DETAILS,  object_name:PA_CI_SUPPLIER_DETAILS,  status:VALID,  product: PA - Projectsdescription: A new entity PA_CI_SUPPLIER_DETAILS, which stores the details of impact of change orders on Suppliers and Purchase Orders. This entity contains the following attributes ,  implementation_dba_data: PA.PA_CI_SUPPLIER_DETAILS

  • View: PA_CI_SUPPLIER_DETAILS_V 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:PA.PA_CI_SUPPLIER_DETAILS_V,  object_name:PA_CI_SUPPLIER_DETAILS_V,  status:VALID,  product: PA - Projectsdescription: Pa_ci_supplier_details_v is view used to desgin UI screen ,  implementation_dba_data: APPS.PA_CI_SUPPLIER_DETAILS_V

  • View: PA_CI_SUPPLIER_DETAILS_V 12.2.2

    owner:APPS,  object_type:VIEW,  fnd_design_data:PA.PA_CI_SUPPLIER_DETAILS_V,  object_name:PA_CI_SUPPLIER_DETAILS_V,  status:VALID,  product: PA - Projectsdescription: Pa_ci_supplier_details_v is view used to desgin UI screen ,  implementation_dba_data: APPS.PA_CI_SUPPLIER_DETAILS_V