Search Results po_creation_cycle_time
Overview
APPS.POA_EDW_PO_DISTRIBUTIONS_FCV is a Purchasing (PO) module view that exposes purchase order distribution data in a flattened, denormalized form intended for the Oracle E-Business Suite Enterprise Data Warehouse (EDW) and related analytical reporting. The "_FCV" suffix denotes a flattened/consolidated view. It presents one row per purchase order distribution line, enriched with foreign key surrogates, descriptive attributes, and pre-computed monetary, quantity, and cycle-time measures. Its primary role is to serve as an extraction layer for BI Publisher reports, Oracle Business Intelligence (OBIEE) subject areas, and custom operational data stores, sparing downstream consumers from reconstructing the complex PO distribution-to-line-to-header join hierarchy.
Underlying Base Objects
The ETRM metadata documents no referenced base objects, so the view's lineage must be inferred from column naming conventions. The view is defined in the APPS schema and reported as VALID. Its column set aligns with the Purchase Order distribution, line, header, shipment, approval, receiving, and AP invoice matching tables in the PO_ family, together with Purchasing lookup tables. The presence of columns such as PO_DIST_INST_PK, ITEM_FK, SUPPLIER_SITE_FK, DELIVER_TO_FK, SHIP_TO_ORG_FK, and numerous *_FK surrogate keys indicates the view resolves natural primary keys into warehouse foreign key references, typically joined against Purchasing base tables and the EDW star-schema dimension tables. Because the view is a read-only reporting construct, it is materially consistent with the underlying transactional tables at query time rather than maintaining its own storage.
Key Columns
The view exposes four broad categories of columns:
- Identity and foreign keys:
SEQ_ID,VIEW_ID, andPO_DIST_INST_PKidentify each row; keys such asSOB_FK,BUYER_FK,ITEM_FK,SUPPLIER_SITE_FK,SHIP_TO_ORG_FK, andDELIVER_TO_FKlink to dimension tables. - Date foreign keys:
PO_CREATE_DATE_FK,DST_CREAT_DATE_FK,PO_APP_DATE_FK,NEED_BY_DATE_FK,PROMISED_DATE_FK, andINV_RECEIVED_DATE_FKresolve to the EDW date dimension. - Measures: transaction and global currency amounts such as
IPV_T,AMT_PURCHASED_T/G,AMT_LEAKAGE_T/G,POTENTIAL_SVG_T/G, andAMT_BILLED_T/G; quantitiesQTY_ORDERED_B,QTY_DELIVERED_B,QTY_BILLED_B,QTY_CANCELLED_B; and pricesPRICE_T/G,LIST_PRC_UNIT_T/G,MARKET_PRICE_T/G. - Cycle-time and descriptive attributes:
PO_CREATION_CYCLE_TIME,ORDER_TO_PAY_CYCLE_TIME,RECEIVE_TO_PAY_CYCL_TIME,INV_TO_PAY_CYCLE_TIME, plus textual fields such asITEM_DESCRIPTION,SUPPLIER_NOTE,PO_COMMENTS, andSUPPLIER_PROD_NUM.
The SOB_FK column specifically maps each distribution to the Set of Books (operating unit / ledger) context, which is a primary filter in multi-org warehouse reporting and the term the user searched for.
Common Use Cases and Queries
Typical uses include spend analysis by supplier, buyer, item, and purchasing category; procurement cycle-time dashboards; invoice price variance (IPV) and leakage reporting; and contract-versus-noncontract spend measurement. Because the view already carries SOB_FK and all necessary surrogate keys, multi-org reporting is straightforward.
Example: aggregate purchased amount by set of books and supplier:
SELECT SOB_FK, SUPPLIER_SITE_FK, SUM(AMT_PURCHASED_T) TOTAL_PURCHASEDFROM APPS.POA_EDW_PO_DISTRIBUTIONS_FCVWHERE SOB_FK = :p_sob_fkGROUP BY SOB_FK, SUPPLIER_SITE_FKORDER BY TOTAL_PURCHASED DESC;
Example: order-to-pay cycle time by buyer:
SELECT BUYER_FK, AVG(ORDER_TO_PAY_CYCLE_TIME) AVG_OTPFROM APPS.POA_EDW_PO_DISTRIBUTIONS_FCVWHERE SOB_FK = :p_sob_fk AND ORDER_TO_PAY_CYCLE_TIME IS NOT NULLGROUP BY BUYER_FK;
These queries illustrate that SOB_FK is the principal ledger-level filter, and that the view is designed to be consumed directly without additional joins to the base Purchasing tables.
-
View: POA_EDW_PO_DISTRIBUTIONS_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POA_EDW_PO_DISTRIBUTIONS_FCV, object_name:POA_EDW_PO_DISTRIBUTIONS_FCV, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POA_EDW_PO_DISTRIBUTIONS_FCV ,
-
VIEW: APPS.POA_REP_PO_PURCHASES_V
12.1.1
owner:APPS, object_type:VIEW, object_name:POA_REP_PO_PURCHASES_V, status:VALID,
-
VIEW: APPS.POA_EDW_PO_DISTRIBUTIONS_FCV
12.1.1
-
View: POA_EDW_PO_DISTRIBUTIONS_FCV
12.2.2
product: PO - Purchasing , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.POA_EDW_PO_DISTRIBUTIONS_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POA_EDW_PO_DISTRIBUTIONS_FCV, object_name:POA_EDW_PO_DISTRIBUTIONS_FCV, status:VALID,
-
VIEW: APPS.POABV_EDW_PO_DISTRIBUTIONS_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POABV_EDW_PO_DISTRIBUTIONS_FCV, object_name:POABV_EDW_PO_DISTRIBUTIONS_FCV, status:VALID,
-
APPS.POA_EDW_PO_DIST_F_C SQL Statements
12.1.1
-
TABLE: POA.POA_EDW_PO_DIST_F
12.1.1
owner:POA, object_type:TABLE, fnd_design_data:POA.POA_EDW_PO_DIST_F, object_name:POA_EDW_PO_DIST_F, status:VALID,
-
PACKAGE BODY: APPS.POA_EDW_PO_DIST_F_C
12.1.1
-
TABLE: POA.POA_EDW_PO_DIST_FSTG
12.1.1
owner:POA, object_type:TABLE, fnd_design_data:POA.POA_EDW_PO_DIST_FSTG, object_name:POA_EDW_PO_DIST_FSTG, status:VALID,
-
View: POABV_EDW_PO_DISTRIBUTIONS_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POABV_EDW_PO_DISTRIBUTIONS_FCV, object_name:POABV_EDW_PO_DISTRIBUTIONS_FCV, status:VALID, product: PO - Purchasing , description: EDW PO Distribution Fact Collection View , implementation_dba_data: APPS.POABV_EDW_PO_DISTRIBUTIONS_FCV ,
-
View: POABV_EDW_PO_DISTRIBUTIONS_FCV
12.2.2
product: PO - Purchasing , description: EDW PO Distribution Fact Collection View , implementation_dba_data: Not implemented in this database ,
-
eTRM - POA Tables and Views
12.1.1
description: UNSPSC Item interface table ,
-
eTRM - PO Tables and Views
12.1.1
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,