Search Results pot_contract_amount
Overview
APPS.POA_BIS_SAVINGS_RPT_V is a reporting view in the Oracle E-Business Suite Procurement family, built on the Oracle Procurement Analytics (POA) data model. It exposes the contents of the savings reporting table POA_BIS_SAVINGS_RPT, presenting pre-aggregated procurement performance metrics used by spend and savings analysis dashboards. The object is registered under the APPS schema and follows standard EBS naming conventions: the POA prefix identifies it as a Procurement Analytics object, BIS denotes Business Intelligence System lineage, and the _V suffix confirms it is a view rather than a table.
Its role is to serve as a convenient, security-neutral read interface for the underlying savings report structure. Rather than querying the physical table directly, BI Publisher reports, custom concurrent programs, and third-party integrations reference this view to obtain purchase amount, contract classification, and saving figures. Because the view is defined as a simple projection, column names and positions are identical to the base table, insulating consumers from changes in the physical table’s storage or partitioning without altering the published interface.
Underlying Base Objects
The view is defined by a straightforward SELECT statement, without joins, filters, or aggregation:
- POA_BIS_SAVINGS_RPT — the sole documented base object. Every column in the view maps one-to-one to a column of this table, and the view applies no WHERE clause, so it returns all rows present in the table.
Although the view itself performs no joins, the base table is populated by the Procurement Analytics data collection process, which in turn draws from purchasing documents, distributions, suppliers, and items. ETRM does not document any other referenced base objects for this view, so dependencies on the broader PO/POA schema must be traced through the population program rather than the view definition.
Key Columns
- PURCHASE_AMOUNT — total value of the purchase line or distribution being analyzed.
- CONTRACT_AMOUNT / NON_CONTRACT_AMOUNT — the portion of the purchase amount attributable to contract and non-contract sources respectively.
- POT_CONTRACT_AMOUNT — the potential contract amount, representing the value that could have been obtained through contract coverage. This is the column most frequently referenced in searches for “pot_contract_amount.”
- POTENTIAL_SAVING — the computed saving opportunity, typically derived from the gap between actual and potential contract spend.
- TOTAL_PURCHASE_QTY — aggregate purchased quantity for the grouped record.
- GROUPNO — the grouping identifier used to consolidate report rows.
- DISTRIBUTION_TRANSACTION_ID — link to the purchasing distribution transaction that sourced the record.
- DOCUMENT_TYPE_CODE — indicates the originating document type, such as a purchase order or release.
- ITEM_ID, CATEGORY_ID, SUPPLIER_ID, SUPPLIER_SITE_ID — item, category, and supplier dimensions used for slicing the report.
- OPERATING_UNIT_ID, BUYER_ID, REQUESTOR_ID, SHIP_TO_ORGANIZATION_ID — organizational and responsibility dimensions.
- PROJECT_ID, TASK_ID, COST_CENTER_ID, ACCOUNT_ID — project and accounting classifications.
- CURRENCY_CODE, RATE_TYPE, RATE_DATE — currency conversion context for the monetary columns.
- Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, REQUEST_ID, PROGRAM_ID, and related program columns.
Common Use Cases and Queries
Typical consumers include procurement savings dashboards, contract compliance analysis, and ad hoc spend reviews. A common query isolates contract-leverage opportunities by comparing potential contract amount against actual non-contract spend:
SELECT supplier_id, SUM(purchase_amount), SUM(non_contract_amount), SUM(pot_contract_amount), SUM(potential_saving) FROM apps.poa_bis_savings_rpt_v GROUP BY supplier_id ORDER BY SUM(potential_saving) DESC;SELECT document_type_code, item_id, potential_saving FROM apps.poa_bis_savings_rpt_v WHERE pot_contract_amount > 0 AND purchase_creation_date >= :p_start_date;
Because the view exposes no row-level security, reports requiring data restriction must apply operating unit or buyer predicates explicitly. The PROGRAM_ID, REQUEST_ID, and LAST_UPDATE_DATE columns allow consumers to identify the concurrent request that last populated each row, which is useful when validating data freshness before publishing analytics.
-
VIEW: APPS.POA_BIS_SAVINGS_RPT_V
12.1.1
-
View: POA_BIS_SAVINGS_RPT_V
12.2.2
product: PO - Purchasing , implementation_dba_data: Not implemented in this database ,
-
TABLE: PO.POA_BIS_SAVINGS_EFC
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.POA_BIS_SAVINGS_EFC, object_name:POA_BIS_SAVINGS_EFC, status:VALID,
-
View: POA_BIS_SAVINGS_RPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POA_BIS_SAVINGS_RPT_V, object_name:POA_BIS_SAVINGS_RPT_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POA_BIS_SAVINGS_RPT_V ,
-
TABLE: PO.POA_BIS_SAVINGS_RPT_EFC
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.POA_BIS_SAVINGS_RPT_EFC, object_name:POA_BIS_SAVINGS_RPT_EFC, status:VALID,
-
VIEW: APPS.POA_BIS_SAVINGS_RPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POA_BIS_SAVINGS_RPT_V, object_name:POA_BIS_SAVINGS_RPT_V, status:VALID,
-
TABLE: PO.POA_BIS_SAVINGS_RPT
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.POA_BIS_SAVINGS_RPT, object_name:POA_BIS_SAVINGS_RPT, status:VALID,
-
VIEW: APPS.POA_BIS_SAVINGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POA_BIS_SAVINGS_V, object_name:POA_BIS_SAVINGS_V, status:VALID,
-
APPS.POA_SAVINGS_CON SQL Statements
12.1.1
-
View: POA_BIS_SAVINGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POA_BIS_SAVINGS_V, object_name:POA_BIS_SAVINGS_V, status:VALID, product: PO - Purchasing , description: This view resolves the foreign key references in POA_BIS_SAVINGS table. Please refer to the base table for further information. , implementation_dba_data: APPS.POA_BIS_SAVINGS_V ,
-
View: POA_BIS_SAVINGS_V
12.2.2
product: PO - Purchasing , description: This view resolves the foreign key references in POA_BIS_SAVINGS table. Please refer to the base table for further information. , implementation_dba_data: Not implemented in this database ,
-
TABLE: PO.POA_BIS_SAVINGS
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.POA_BIS_SAVINGS, object_name:POA_BIS_SAVINGS, status:VALID,
-
APPS.POA_SAVINGS_NP SQL Statements
12.1.1
-
PACKAGE BODY: APPS.POA_SAVINGS_CON
12.1.1
-
PACKAGE BODY: APPS.POA_SAVINGS_NP
12.1.1
-
APPS.POA_DBI_PO_DIST_F_C SQL Statements
12.1.1
-
APPS.POA_SAVINGS_CON dependencies on POA_BIS_SAVINGS
12.1.1
-
APPS.POA_SAVINGS_NP dependencies on POA_BIS_SAVINGS
12.1.1
-
PACKAGE BODY: APPS.POA_DBI_PO_DIST_F_C
12.1.1
-
APPS.POA_DBI_PO_DIST_F_C dependencies on STANDARD
12.1.1
-
eTRM - PO Tables and Views
12.1.1
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,