Search Results net_tax
Overview
PMI_EDW_MARGIN_F_IV is an Oracle E-Business Suite database view belonging to the Process Manufacturing Intelligence (PMI) module. It functions as an interface view (denoted by the _IV suffix) exposing margin fact data in a denormalized, analytics-ready format suitable for consumption by the Enterprise Data Warehouse (EDW) and downstream business intelligence reporting. The view presents order-level and line-level margin, pricing, cost, and commission information, making it a central artifact for profitability analysis in process manufacturing environments running EBS 12.1.1 or 12.2.2.
The ETRM metadata records the object as "Not implemented in this database," which is significant: the view is defined in the product schema for extraction and integration purposes but is not necessarily instantiated in every environment. For the user searching on commission_code, this view is directly relevant because it explicitly projects a COMMISSION_CODE column, along with related commission and pricing measures such as NET_COMMISSION, BASE_PRICE, NET_PRICE, COST, and MARGIN_PK.
Underlying Base Objects
The ETRM metadata documents no referenced base objects, but the view text itself provides the authoritative definition: all columns are sourced from a single underlying fact table, PMI_EDW_MARGIN_F. The view is therefore a straightforward projection with no joins or aggregation.
- Base table: PMI_EDW_MARGIN_F
- Derived column:
ROWID ROW_ID— the physical row identifier of the base table row, carried through for change-detection and ETL delta processing. - Derived column:
USER_ATTRIBUTE15 OPERATION_CODE— a rename aliasing the fifteenth descriptive flexfield attribute segment as an operation or change-type indicator, a common EDW convention for marking insert, update, or delete operations.
Because PMI_EDW_MARGIN_F is a fact table, the view inherits its grain, which is a single margin line tied to order and shipment context.
Key Columns
The view exposes roughly sixty columns spanning pricing, costing, commission, logistics, and descriptive flexfields.
- COMMISSION_CODE — the commission classification associated with the margin line; the primary column of interest for the current search.
- NET_COMMISSION — the monetary commission amount net of adjustments.
- BASE_PRICE, EXTENDED_PRICE, NET_PRICE, LIST_PRICE, NET_TAX, CHARGES — the pricing and charge breakdown used to derive realized revenue.
- COST, COST_METHOD — unit or line cost and the costing method applied, essential for margin computation.
- MARGIN_PK, MARGIN_PK_KEY — the business key and surrogate key for the margin fact record.
- ORDER_NUMBER, LINE_NUMBER, ORDER_QTY, LINE_STATUS, ORDER_STATUS — order identification and lifecycle status.
- CURRENCY_FK_KEY, SALES_ORG_FK_KEY, BILLING_CUST_FK_KEY, SHIP_CUST_FK_KEY, SHIP_WAREHOUSE_FK_KEY, ITEM_PK_KEY — foreign keys to EDW dimension tables for currency, organization, customer, warehouse, and item.
- Date keys — ACTUAL_DLV_DATE_FK_KEY, ACTUAL_SHIP_DATE_FK_KEY, ORDER_DATE_FK_KEY, PROMISED_SHIP_DATE_FK_KEY, REQUESTED_SHIP_DATE_FK_KEY, REQUIRED_DLV_DATE_FK_KEY, SCHED_SHIP_DATE_FK_KEY.
- USER_ATTRIBUTE1 through USER_ATTRIBUTE14, USER_MEASURE1 through USER_MEASURE5, USER_FK1_KEY through USER_FK5_KEY — configurable extension slots.
- OPERATION_CODE — aliased from USER_ATTRIBUTE15 for ETL change tracking.
Common Use Cases and Queries
Typical scenarios include extracting margin, commission, and pricing facts into the warehouse, analyzing commission performance by code, and reconciling margin lines to their originating orders. The following query isolates commission-related margin lines:
SELECT order_number, line_number, commission_code, net_commission, base_price, net_price, cost, currency_fk_key, operation_code FROM pmi_edw_margin_f_iv WHERE commission_code IS NOT NULL AND net_commission > 0 ORDER BY order_number, line_number;
To summarize realized margin by commission code:
SELECT commission_code, SUM(net_price - cost) total_margin, SUM(net_commission) total_commission, COUNT(*) line_count FROM pmi_edw_margin_f_iv GROUP BY commission_code ORDER BY total_margin DESC;
For incremental EDW loads, ROW_ID and OPERATION_CODE support delta extraction. Analysts should note that availability depends on whether the view is implemented in the target database, as the ETRM metadata records it as not implemented in the documented instance.
-
View: PMI_EDW_MARGIN_F_IV
12.1.1
product: PMI - Process Manufacturing Intelligence , implementation_dba_data: Not implemented in this database ,
-
VIEW: GML.OP_ORDR_DTL#
12.2.2
-
View: PMI_EDW_MARGIN_F_IV
12.2.2
product: PMI - Process Manufacturing Intelligence (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: GML.GML_GASNO_DETAILS#
12.2.2
-
View: GML_GPOAO_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GML.GML_GPOAO_DETAILS_V, object_name:GML_GPOAO_DETAILS_V, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales Order Detail view , implementation_dba_data: APPS.GML_GPOAO_DETAILS_V ,
-
VIEW: GML.GML_GPOAO_DETAILS#
12.2.2
-
View: GML_GPOAO_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GML.GML_GPOAO_DETAILS_V, object_name:GML_GPOAO_DETAILS_V, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales Order Detail view , implementation_dba_data: APPS.GML_GPOAO_DETAILS_V ,
-
View: GML_GASNO_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GML.GML_GASNO_DETAILS_V, object_name:GML_GASNO_DETAILS_V, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales Order Details view , implementation_dba_data: APPS.GML_GASNO_DETAILS_V ,
-
VIEW: APPS.GML_GASNO_DETAILS_V
12.1.1
-
View: GML_GASNO_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GML.GML_GASNO_DETAILS_V, object_name:GML_GASNO_DETAILS_V, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales Order Details view , implementation_dba_data: APPS.GML_GASNO_DETAILS_V ,
-
VIEW: APPS.GML_GASNO_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GML.GML_GASNO_DETAILS_V, object_name:GML_GASNO_DETAILS_V, status:VALID,
-
VIEW: APPS.GML_GPOAO_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GML.GML_GPOAO_DETAILS_V, object_name:GML_GPOAO_DETAILS_V, status:VALID,
-
VIEW: APPS.GML_GASNO_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GML.GML_GASNO_DETAILS_V, object_name:GML_GASNO_DETAILS_V, status:VALID,
-
VIEW: APPS.GML_GASNO_DETAILS_V
12.2.2
-
VIEW: APPS.GML_GPOAO_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GML.GML_GPOAO_DETAILS_V, object_name:GML_GPOAO_DETAILS_V, status:VALID,
-
VIEW: APPS.PMIFV_SALES_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_SALES_DETAILS_V, object_name:PMIFV_SALES_DETAILS_V, status:VALID,
-
VIEW: APPS.PMIFV_SALES_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_SALES_DETAILS_V, object_name:PMIFV_SALES_DETAILS_V, status:VALID,
-
VIEW: APPS.GML_GPOAO_DETAILS_V
12.2.2
-
VIEW: GML.OP_ORDR_DTL#
12.2.2
owner:GML, object_type:VIEW, object_name:OP_ORDR_DTL#, status:VALID,
-
View: PMIFV_SALES_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_SALES_DETAILS_V, object_name:PMIFV_SALES_DETAILS_V, status:VALID, product: PMI - Process Manufacturing Intelligence , description: Details of all shipped sales orders which are associated to corresponding GL periods. , implementation_dba_data: APPS.PMIFV_SALES_DETAILS_V ,
-
VIEW: APPS.GML_GPOAO_DETAILS_V
12.1.1
-
View: PMIFV_SALES_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_SALES_DETAILS_V, object_name:PMIFV_SALES_DETAILS_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: Details of all shipped sales orders which are associated to corresponding GL periods. , implementation_dba_data: APPS.PMIFV_SALES_DETAILS_V ,
-
View: PMI_EDW_MARGIN_F_FCV
12.1.1
product: PMI - Process Manufacturing Intelligence , implementation_dba_data: Not implemented in this database ,
-
View: PMI_EDW_MARGIN_F_FCV
12.2.2
product: PMI - Process Manufacturing Intelligence (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: GML.GML_GASNO_DETAILS#
12.2.2
owner:GML, object_type:VIEW, object_name:GML_GASNO_DETAILS#, status:VALID,
-
VIEW: GML.GML_GPOAO_DETAILS#
12.2.2
owner:GML, object_type:VIEW, object_name:GML_GPOAO_DETAILS#, status:VALID,
-
VIEW: APPS.PMIFV_SALES_DETAILS_V
12.1.1
-
VIEW: APPS.PMIFV_SALES_DETAILS_V
12.2.2
-
PACKAGE: APPS.PAY_IE_P35_MAGTAPE
12.1.1
-
PACKAGE: APPS.PAY_IE_P35_MAGTAPE
12.2.2
-
TABLE: GML.GML_GPOAO_DETAILS
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.GML_GPOAO_DETAILS, object_name:GML_GPOAO_DETAILS, status:VALID,
-
TABLE: GML.GML_GPOAO_DETAILS
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.GML_GPOAO_DETAILS, object_name:GML_GPOAO_DETAILS, status:VALID,
-
TABLE: GML.GML_GASNO_DETAILS
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.GML_GASNO_DETAILS, object_name:GML_GASNO_DETAILS, status:VALID,
-
TABLE: GML.GML_GASNO_DETAILS
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.GML_GASNO_DETAILS, object_name:GML_GASNO_DETAILS, status:VALID,
-
TABLE: GML.OP_ORDR_DTL
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_ORDR_DTL, object_name:OP_ORDR_DTL, status:VALID,
-
TABLE: GML.OP_ORDR_DTL
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_ORDR_DTL, object_name:OP_ORDR_DTL, status:VALID,
-
eTRM - GML Tables and Views
12.2.2
description: Tax reporting classes. ,
-
eTRM - GML Tables and Views
12.1.1
description: Tax reporting classes. ,
-
eTRM - PMI Tables and Views
12.2.2
-
eTRM - PMI Tables and Views
12.1.1