Search Results qualifier_code
Overview
MTL_PROCURING_TXN_FLOW_HDRS_V is a seeded Oracle E-Business Suite view owned by the APPS schema and defined in the INV (Inventory) product. It presents the header-level records that describe a "procuring" transaction flow — that is, the material movement of goods from a source organization to a destination organization through a procurement-oriented flow. The view is a filtered projection of the transaction flow header repository, restricted to those headers whose FLOW_TYPE equals 2, which identifies the procuring flow class. In Oracle EBS 12.1.1 and 12.2.2 the object holds a VALID status and is exposed primarily for reporting and integration rather than for direct transactional maintenance. Its role is to give inventory, costing, and supply chain users a stable, read-only interface to the header metadata of procuring flows, allowing queries, custom reports, and interfaces to reference a single logical object without re-implementing the FLOW_TYPE filter. Because it is a view rather than a table, it carries no independent storage and reflects the current state of its base data at query time.
Underlying Base Objects
The view is defined over MTL_TRANSACTION_FLOW_HEADERS, referenced in the ETRM metadata as a SYNONYM. The defining view text is a straightforward SELECT of the complete header column list from that base object, terminated by the predicate WHERE FLOW_TYPE = 2. Consequently, every row returned by MTL_PROCURING_TXN_FLOW_HDRS_V corresponds to exactly one row in MTL_TRANSACTION_FLOW_HEADERS whose flow type designates a procuring flow. No joins are performed and no columns are computed or renamed, so the view is a pure row-filtered projection. This has practical implications: the attributes exposed are identical in name, datatype, and meaning to their base-table counterparts, and any change made to a procuring header row in the base table is immediately visible through the view. The header records are complemented elsewhere in the product by transaction flow line and detail objects, and the HEADER_ID column provides the join key linking this header view to those related transaction flow entities.
Key Columns
- HEADER_ID — Primary identifier of the transaction flow header; the join key to line and detail flow records.
- FLOW_TYPE — Always 2 in this view, the constant that distinguishes procuring flows from other flow classes.
- START_ORG_ID / END_ORG_ID — Source and destination inventory organizations between which the flow moves material.
- ORGANIZATION_ID — The organization context in which the header is defined.
- QUALIFIER_CODE / QUALIFIER_VALUE_ID — The qualifier and its value that scope the flow to a particular business entity.
- ASSET_ITEM_PRICING_OPTION / EXPENSE_ITEM_PRICING_OPTION — Options controlling how asset and expense items are priced within the flow.
- START_DATE / END_DATE — Effective date range during which the flow header is active.
- NEW_ACCOUNTING_FLAG — Indicates whether the newer accounting treatment applies to the flow.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 — The standard EBS descriptive flexfield columns for extensible, customer-defined data.
- Audit columns — CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, and LAST_UPDATE_LOGIN provide standard who-column auditing.
Common Use Cases and Queries
Typical uses include reporting on active procuring flows by organization or date range, joining flow headers to flow lines for end-to-end analysis, and driving integrations that consume procurement flow configuration. A representative query follows.
- List active procuring flow headers for an organization: SELECT header_id, start_org_id, end_org_id, start_date, end_date FROM mtl_procuring_txn_flow_hdrs_v WHERE organization_id = :org_id AND SYSDATE BETWEEN start_date AND NVL(end_date, SYSDATE);
- Enumerate headers by qualifier: SELECT header_id, qualifier_code, qualifier_value_id FROM mtl_procuring_txn_flow_hdrs_v WHERE qualifier_code = :qualifier;
- Audit recently changed flows: SELECT header_id, last_update_date, last_updated_by FROM mtl_procuring_txn_flow_hdrs_v WHERE last_update_date >= :since ORDER BY last_update_date DESC;
- Join headers to lines: SELECT h.header_id, l.line_id FROM mtl_procuring_txn_flow_hdrs_v h, mtl_transaction_flow_lines l WHERE l.header_id = h.header_id;
Because the view already enforces FLOW_TYPE = 2, callers should not re-add that predicate; doing so is redundant though harmless. Standard EBS security and organization access rules governing the base table continue to apply.
-
View: MTL_PROCURING_TXN_FLOW_HDRS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_PROCURING_TXN_FLOW_HDRS_V, object_name:MTL_PROCURING_TXN_FLOW_HDRS_V, status:VALID, product: INV - Inventory , description: MTL_PROCURING_TXN_FLOW_HDRS_V is a view of transaction flow headres for procuring flow. , implementation_dba_data: APPS.MTL_PROCURING_TXN_FLOW_HDRS_V ,
-
View: MTL_PROCURING_TXN_FLOW_HDRS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_PROCURING_TXN_FLOW_HDRS_V, object_name:MTL_PROCURING_TXN_FLOW_HDRS_V, status:VALID, product: INV - Inventory , description: MTL_PROCURING_TXN_FLOW_HDRS_V is a view of transaction flow headres for procuring flow. , implementation_dba_data: APPS.MTL_PROCURING_TXN_FLOW_HDRS_V ,
-
View: MTL_TRANSACTION_FLOWS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TRANSACTION_FLOWS_V, object_name:MTL_TRANSACTION_FLOWS_V, status:VALID, product: INV - Inventory , description: MTL_TRANSACTION_FLOWS_V is a view for Intercompany transaction flows of type shipping and procuring flows. , implementation_dba_data: APPS.MTL_TRANSACTION_FLOWS_V ,
-
View: MTL_TRANSACTION_FLOWS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TRANSACTION_FLOWS_V, object_name:MTL_TRANSACTION_FLOWS_V, status:VALID, product: INV - Inventory , description: MTL_TRANSACTION_FLOWS_V is a view for Intercompany transaction flows of type shipping and procuring flows. , implementation_dba_data: APPS.MTL_TRANSACTION_FLOWS_V ,
-
View: MTL_TRANSACTION_FLOW_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TRANSACTION_FLOW_HEADERS_V, object_name:MTL_TRANSACTION_FLOW_HEADERS_V, status:VALID, product: INV - Inventory , description: MTL_TRANSACTION_FLOW_HEADERS_V is a view for Intercompany transaction flow headers of type shipping and procuring flows. , implementation_dba_data: APPS.MTL_TRANSACTION_FLOW_HEADERS_V ,
-
View: MTL_TRANSACTION_FLOW_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TRANSACTION_FLOW_HEADERS_V, object_name:MTL_TRANSACTION_FLOW_HEADERS_V, status:VALID, product: INV - Inventory , description: MTL_TRANSACTION_FLOW_HEADERS_V is a view for Intercompany transaction flow headers of type shipping and procuring flows. , implementation_dba_data: APPS.MTL_TRANSACTION_FLOW_HEADERS_V ,