Search Results order_category_code
Overview
APPS.OE_HEADERS_IOP_115_V is a restricted projection view defined over the Oracle Order Management order header entity. It exposes a narrow subset of the columns available in OE_ORDER_HEADERS and applies a hard-coded DECODE transformation to the ORDER_CATEGORY_CODE attribute, converting the stored base values into abbreviated reporting codes. In Oracle EBS 12.1.1 and 12.2.2, the "IOP" naming convention identifies the view as part of the Inbound/Outbound Processing (open interface) family of artifacts used by Order Management and its integration points, where a stable, denormalized header projection is required rather than the full transactional table.
Because the view is owned by APPS and is not defined with an INSTEAD OF trigger or join structure, it is read-only. Its principal role is to present order headers in a form suitable for external consumption, concurrent-program extraction, and interface staging, while shielding callers from the full column set and from internal coding conventions of ORDER_CATEGORY_CODE.
Underlying Base Objects
The view is defined over a single referenced base object, OE_ORDER_HEADERS, resolved through the APPS synonym. No joins, aggregations, or subqueries are present in the documented view text. The relationship is therefore one-to-one row-for-row: every row in OE_HEADERS_IOP_115_V corresponds to exactly one row in OE_ORDER_HEADERS, and the view inherits the base table's partitioning, indexing, and security characteristics as applied through the APPS schema.
Consequently, query performance against the view is governed entirely by the access path chosen on OE_ORDER_HEADERS (typically HEADER_ID, ORDER_NUMBER, or ORG_ID leading indexes). No materialization or query-rewrite benefit is introduced by the view layer itself.
Key Columns
- HEADER_ID — Primary key of the order header; the join key to OE_ORDER_LINES_ALL and related entities.
- ORG_ID — Operating unit identifier; drives Multi-Org access control (MOAC) and reporting segmentation.
- ORDER_TYPE_ID — Foreign key to OE_ORDER_TYPES; determines transaction type and workflow.
- ORDER_NUMBER — User-visible order number.
- ORDER_CATEGORY_CODE — Transformed value. The DECODE maps 'Order' to 'R', 'Return' to 'RMA', 'Mixed' to NULL, and NULL to NULL. Note the case sensitivity in the documented variants and the deliberate nullification of mixed orders.
- SOLD_TO_ORG_ID — Customer party/account identifier for the sold-to address.
- CREATION_DATE, CREATED_BY, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — Standard WHO audit columns.
- PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — Concurrent program context that last modified the row.
Common Use Cases and Queries
The view is typically used where only header-level identity and category are required, particularly in interface and extraction logic that must distinguish standard orders from returns. A representative query retrieves recent headers by operating unit:
SELECT header_id, order_number, order_category_code, sold_to_org_id FROM apps.oe_headers_iop_115_v WHERE org_id = :p_org_id AND creation_date >= :p_from_date;- Filtering by category:
... WHERE order_category_code = 'R'returns standard orders only, since returns are mapped to 'RMA'. - Joining to lines:
SELECT h.order_number, l.line_number FROM apps.oe_headers_iop_115_v h, apps.oe_order_lines_all l WHERE h.header_id = l.header_id;
Because 'Mixed' orders are returned as NULL by the DECODE, queries intended to capture all order categories must account for null values explicitly, for example with NVL(order_category_code,'UNCLASSIFIED'). Consumers should also note that the abbreviated codes ('R', 'RMA') do not correspond to the base table values and must not be used to update OE_ORDER_HEADERS.
-
VIEW: APPS.OE_HEADERS_IOP_115_V
12.1.1
-
VIEW: APPS.OE_HEADERS_IOP_115_V
12.2.2
-
VIEW: APPS.WSH_SOURCE_TYPES_V
12.2.2
-
VIEW: APPS.WSH_SOURCE_TYPES_V
12.1.1
-
VIEW: APPS.SO_ORDER_TYPES_REGULAR_V
12.1.1
-
VIEW: OE.SO_ORDER_TYPES_115_ALL#
12.2.2
-
VIEW: APPS.ASO_I_LINE_TYPES_V
12.2.2
-
VIEW: APPS.SO_ORDER_TYPES_REGULAR_V
12.2.2
-
VIEW: APPS.ASO_I_LINE_TYPES_V
12.1.1
-
VIEW: APPS.WSH_ORDER_TYPES_REGULAR_V
12.2.2
-
VIEW: APPS.WSH_ORDER_TYPES_REGULAR_V
12.1.1
-
View: ASO_I_ORDER_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_ORDER_TYPES_V, object_name:ASO_I_ORDER_TYPES_V, status:VALID, product: ASO - Order Capture , description: view gives information regarding valid order types recognized by Order Management , implementation_dba_data: APPS.ASO_I_ORDER_TYPES_V ,
-
VIEW: APPS.OE_ORDER_TYPES_115
12.1.1
-
VIEW: APPS.ASO_I_ORDER_TYPES_V
12.1.1
-
VIEW: APPS.ASO_I_ORDER_TYPES_V
12.2.2
-
VIEW: APPS.OE_ORDER_TYPES_115_ALL
12.2.2
-
VIEW: APPS.OE_ORDER_TYPES_115
12.2.2
-
VIEW: APPS.OE_ORDER_TYPES_115_ALL
12.1.1
-
View: OE_ORDER_TYPES_115
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_TYPES_115, object_name:OE_ORDER_TYPES_115, status:VALID, product: ONT - Order Management , description: No longer used , implementation_dba_data: APPS.OE_ORDER_TYPES_115 ,
-
View: OE_ORDER_TYPES_115_ALL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_TYPES_115_ALL, object_name:OE_ORDER_TYPES_115_ALL, status:VALID, product: ONT - Order Management , description: No longer used , implementation_dba_data: APPS.OE_ORDER_TYPES_115_ALL ,
-
View: ASO_I_ORDER_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_ORDER_TYPES_V, object_name:ASO_I_ORDER_TYPES_V, status:VALID, product: ASO - Order Capture , description: view gives information regarding valid order types recognized by Order Management , implementation_dba_data: APPS.ASO_I_ORDER_TYPES_V ,
-
View: OE_HEADERS_IOP_115_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_HEADERS_IOP_115_V, object_name:OE_HEADERS_IOP_115_V, status:VALID, product: ONT - Order Management , description: No longer used , implementation_dba_data: APPS.OE_HEADERS_IOP_115_V ,
-
View: OE_HEADERS_IOP_115_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_HEADERS_IOP_115_V, object_name:OE_HEADERS_IOP_115_V, status:VALID, product: ONT - Order Management , description: No longer used , implementation_dba_data: APPS.OE_HEADERS_IOP_115_V ,
-
VIEW: ONT.OE_TRANSACTION_TYPES_ALL#
12.2.2
-
View: OE_ORDER_TYPES_115_ALL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_TYPES_115_ALL, object_name:OE_ORDER_TYPES_115_ALL, status:VALID, product: ONT - Order Management , description: No longer used , implementation_dba_data: APPS.OE_ORDER_TYPES_115_ALL ,
-
View: OE_ORDER_TYPES_115
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_TYPES_115, object_name:OE_ORDER_TYPES_115, status:VALID, product: ONT - Order Management , description: No longer used , implementation_dba_data: APPS.OE_ORDER_TYPES_115 ,
-
View: QA_SALES_ORDERS_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_SALES_ORDERS_LOV_V, object_name:QA_SALES_ORDERS_LOV_V, status:VALID, product: QA - Quality , description: Sales Order LOV record group , implementation_dba_data: APPS.QA_SALES_ORDERS_LOV_V ,
-
VIEW: APPS.OE_AK_ORDER_CATEGORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ORDER_CATEGORY_V, object_name:OE_AK_ORDER_CATEGORY_V, status:VALID,
-
View: QA_SALES_ORDERS_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_SALES_ORDERS_LOV_V, object_name:QA_SALES_ORDERS_LOV_V, status:VALID, product: QA - Quality , description: Sales Order LOV record group , implementation_dba_data: APPS.QA_SALES_ORDERS_LOV_V ,
-
VIEW: APPS.OE_AK_ORDER_CATEGORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ORDER_CATEGORY_V, object_name:OE_AK_ORDER_CATEGORY_V, status:VALID,
-
VIEW: APPS.QA_SALES_ORDERS_LOV_V
12.2.2
-
VIEW: APPS.IBE_ORDER_HEADER_ADV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_ORDER_HEADER_ADV_V, object_name:IBE_ORDER_HEADER_ADV_V, status:VALID,
-
VIEW: APPS.QA_SALES_ORDERS_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_SALES_ORDERS_LOV_V, object_name:QA_SALES_ORDERS_LOV_V, status:VALID,
-
VIEW: APPS.QA_SALES_ORDERS_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_SALES_ORDERS_LOV_V, object_name:QA_SALES_ORDERS_LOV_V, status:VALID,
-
View: OKX_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_ORDER_HEADERS_V, object_name:OKX_ORDER_HEADERS_V, status:VALID, product: OKX - Contracts Integration , description: Order header information , implementation_dba_data: APPS.OKX_ORDER_HEADERS_V ,
-
View: SO_ORDER_TYPES_115
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_ORDER_TYPES_115, object_name:SO_ORDER_TYPES_115, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_ORDER_TYPES_115 ,
-
View: SO_ORDER_TYPES_115
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_ORDER_TYPES_115, object_name:SO_ORDER_TYPES_115, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_ORDER_TYPES_115 ,
-
View: OKX_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_ORDER_HEADERS_V, object_name:OKX_ORDER_HEADERS_V, status:VALID, product: OKX - Contracts Integration , description: Order header information , implementation_dba_data: APPS.OKX_ORDER_HEADERS_V ,
-
VIEW: APPS.IBE_ORDER_HEADER_ADV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_ORDER_HEADER_ADV_V, object_name:IBE_ORDER_HEADER_ADV_V, status:VALID,
-
VIEW: APPS.IBE_ORDER_SUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_ORDER_SUM_V, object_name:IBE_ORDER_SUM_V, status:VALID,
-
VIEW: APPS.QA_SALES_ORDERS_LOV_V
12.1.1
-
VIEW: APPS.OE_AK_LINE_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_LINE_TYPES_V, object_name:OE_AK_LINE_TYPES_V, status:VALID,
-
VIEW: APPS.OE_AK_LINE_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_LINE_TYPES_V, object_name:OE_AK_LINE_TYPES_V, status:VALID,
-
VIEW: APPS.IBE_RETURN_SUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_RETURN_SUM_V, object_name:IBE_RETURN_SUM_V, status:VALID,
-
VIEW: APPS.WSH_OPSM_ASN_ORDERS_SPECIFIC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_OPSM_ASN_ORDERS_SPECIFIC_V, object_name:WSH_OPSM_ASN_ORDERS_SPECIFIC_V, status:VALID,
-
VIEW: APPS.IBE_ORDER_SUM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_ORDER_SUM_V, object_name:IBE_ORDER_SUM_V, status:VALID,
-
PACKAGE BODY: APPS.ONT_ORDER_CAT_DEF_UTIL
12.1.1
-
VIEW: APPS.JTM_OE_ORDER_HEADERS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, object_name:JTM_OE_ORDER_HEADERS_ALL_V, status:VALID,
-
VIEW: APPS.IBE_RETURN_SUM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_RETURN_SUM_V, object_name:IBE_RETURN_SUM_V, status:VALID,
-
VIEW: APPS.JTM_OE_ORDER_HEADERS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, object_name:JTM_OE_ORDER_HEADERS_ALL_V, status:VALID,