Search Results order_category_code
Overview
The OE_ORDER_TYPES_115 view is a compatibility object owned by the APPS schema within the Oracle Order Management (ONT) module. Its documented status is VALID, and it is explicitly described in the Oracle E-Business Suite data dictionary as "No longer used." The view exists primarily to preserve backward compatibility with customizations, reports, and integration interfaces that were originally authored against an earlier release of the Order Management data model, specifically the 11.5.x lineage from which the "_115" suffix derives.
Functionally, the view presents a vertically restricted projection of order transaction type definitions. Rather than exposing the full attribute set maintained by the Order Management transaction type setup, it deliberately returns NULL for the majority of columns and populates only a curated subset, including NAME, PRICE_LIST_ID, ACCOUNTING_RULE_ID, COST_OF_GOODS_SOLD_ACCOUNT, and ENTRY_CREDIT_CHECK_RULE_ID. This design reflects the evolutionary divergence of the OE_ORDER_TYPES and OE_TRANSACTION_TYPES data models; the view acts as a stabilizing shim so that legacy SQL referencing the old column list continues to compile and return a result set without modification. Reporting and integration logic that depends on this view should be regarded as technically obsolete and a candidate for migration to OE_TRANSACTION_TYPES_VL or its associated _B and _TL tables.
Underlying Base Objects
The ETRM metadata documents a single referenced base object: OE_TRANSACTION_TYPES_VL, itself a view in the APPS schema. This identifies OE_ORDER_TYPES_115 as a level-two derivation — a view defined over another view rather than directly over physical base tables.
OE_TRANSACTION_TYPES_VL is the translated (VL) layer of the transaction types entity and, in the standard multi-language architecture, resolves joins between OE_TRANSACTION_TYPES_B (the base, language-independent table) and OE_TRANSACTION_TYPES_TL (the translation table storing language-specific NAME and DESCRIPTION values). Selecting through OE_ORDER_TYPES_115 therefore traverses three layers: the 115 compatibility view, the VL translation view, and the underlying _B and _TL physical tables.
The projection applies a DECODE on ORDER_CATEGORY_CODE, translating source values of 'ORDER' to 'R', 'RETURN' to 'RMA', and 'MIXED' to NULL, while passing ORG_ID through unmodified. Because the view suppresses creation and audit columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, PROGRAM_ID, REQUEST_ID, and others) by hardcoding TO_DATE(NULL) or NULL, it cannot support audit-trail analysis, concurrent program lineage, or change-history reporting. It is strictly a read projection for value lookup.
Key Columns
- TRANSACTION_TYPE_ID — Surfaced with an inline comment aliasing it as ORDER_TYPE_ID, preserving the legacy column name expected by pre-existing code. This is the primary identifier and the natural join key to OE_TRANSACTION_TYPES_VL.
- NAME — The user-defined transaction type name, sourced from the translation layer and therefore subject to the session language.
- ENTRY_CREDIT_CHECK_RULE_ID — The credit check rule applied at order entry, the column of principal interest given the originating search. It references the credit checking rule configuration used to evaluate customer exposure when an order is booked.
- ACCOUNTING_RULE_ID — Identifies the accounting rule governing revenue recognition for the transaction type.
- PRICE_LIST_ID — The default price list associated with the transaction type.
- COST_OF_GOODS_SOLD_ACCOUNT — The general ledger account used for cost of goods sold postings.
- START_DATE_ACTIVE and END_DATE_ACTIVE — The effective date range for the transaction type.
- ORDER_CATEGORY_CODE — Transformed via DECODE to the legacy domain of 'R', 'RMA', or NULL.
- ORG_ID — The operating unit identifier, supporting multi-org filtered queries.
Notably, SHIPPING_CREDIT_CHECK_RULE_ID is present in the view text but returns NULL, so credit rule analysis restricted to this view covers entry-level checking only.
Common Use Cases and Queries
The dominant use case is resolving the credit check rule bound to a transaction type, typically to audit or reproduce order-entry credit behavior. A representative query is:
- SELECT transaction_type_id, name, entry_credit_check_rule_id FROM oe_order_types_115 WHERE org_id = :org_id;
- SELECT t.name, t.entry_credit_check_rule_id, t.accounting_rule_id FROM oe_order_types_115 t WHERE t.transaction_type_id = :type_id;
- SELECT transaction_type_id, name, order_category_code FROM oe_order_types_115 WHERE order_category_code = 'RMA' AND SYSDATE BETWEEN start_date_active AND NVL(end_date_active, SYSDATE);
These patterns appear in custom concurrent programs, Oracle Reports, and interface staging queries inherited from 11.5.x implementations. Because the view is documented as no longer used, new development should query OE_TRANSACTION_TYPES_VL directly, joining to OE_CREDIT_CHECK_RULES on ENTRY_CREDIT_CHECK_RULE_ID, to obtain current data with full column and audit coverage.
-
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: 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: 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_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: 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, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ORDER_CATEGORY_V ,
-
View: 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, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ORDER_CATEGORY_V ,
-
View: OE_CRM_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CRM_ORDER_HEADERS_V, object_name:OE_CRM_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , description: Compatible view provoded for CRM usage only. The view is based on oe_order_headers_all table. , implementation_dba_data: APPS.OE_CRM_ORDER_HEADERS_V ,
-
View: OE_CRM_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CRM_ORDER_HEADERS_V, object_name:OE_CRM_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , description: Compatible view provoded for CRM usage only. The view is based on oe_order_headers_all table. , implementation_dba_data: APPS.OE_CRM_ORDER_HEADERS_V ,
-
View: 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, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_LINE_TYPES_V ,
-
View: 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, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_LINE_TYPES_V ,
-
View: OE_AK_ORDER_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ORDER_TYPES_V, object_name:OE_AK_ORDER_TYPES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ORDER_TYPES_V ,
-
View: OE_AK_ORDER_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ORDER_TYPES_V, object_name:OE_AK_ORDER_TYPES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ORDER_TYPES_V ,
-
Lookup Type: OE_ORDERS_SEARCH_POPLIST
12.1.1
product: ONT - Order Management , meaning: Sales Orders Search By Poplist , description: Poplist for the Search By Attribute for Sales Orders ,
-
Lookup Type: OE_ORDERS_SEARCH_POPLIST
12.2.2
product: ONT - Order Management , meaning: Sales Orders Search By Poplist , description: Poplist for the Search By Attribute for Sales Orders ,
-
Lookup Type: OE_ORDERS_SEARCH_POPLIST_INT
12.2.2
product: ONT - Order Management , meaning: Sales Orders Search By Poplist for Internal User , description: Poplist for the Search By Attribute for Sales Orders ,
-
Lookup Type: OE_ORDERS_SEARCH_POPLIST_INT
12.1.1
product: ONT - Order Management , meaning: Sales Orders Search By Poplist for Internal User , description: Poplist for the Search By Attribute for Sales Orders ,
-
View: OE_LINE_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_LINE_TYPES_V, object_name:OE_LINE_TYPES_V, status:VALID, product: ONT - Order Management , description: This is a view to show line transaction types types for a specific organization and language. , implementation_dba_data: APPS.OE_LINE_TYPES_V ,
-
View: OE_LINE_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_LINE_TYPES_V, object_name:OE_LINE_TYPES_V, status:VALID, product: ONT - Order Management , description: This is a view to show line transaction types types for a specific organization and language. , implementation_dba_data: APPS.OE_LINE_TYPES_V ,
-
View: OE_TRXT_TYPES_NOORGS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_TRXT_TYPES_NOORGS_VL, object_name:OE_TRXT_TYPES_NOORGS_VL, status:VALID, product: ONT - Order Management , description: Org independent VL view for Shipping integration team to get the Order Type name. , implementation_dba_data: APPS.OE_TRXT_TYPES_NOORGS_VL ,
-
View: OE_TRANSACTION_TYPES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_TRANSACTION_TYPES_VL, object_name:OE_TRANSACTION_TYPES_VL, status:VALID, product: ONT - Order Management , description: MLS transaction types view for an organization. , implementation_dba_data: APPS.OE_TRANSACTION_TYPES_VL ,
-
View: OE_ORDER_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_TYPES_V, object_name:OE_ORDER_TYPES_V, status:VALID, product: ONT - Order Management , description: This is a view to show order transaction types for a specific organization and language. , implementation_dba_data: APPS.OE_ORDER_TYPES_V ,
-
View: OE_ORDER_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_TYPES_V, object_name:OE_ORDER_TYPES_V, status:VALID, product: ONT - Order Management , description: This is a view to show order transaction types for a specific organization and language. , implementation_dba_data: APPS.OE_ORDER_TYPES_V ,
-
View: OE_TRANSACTION_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_TRANSACTION_TYPES_V, object_name:OE_TRANSACTION_TYPES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_TRANSACTION_TYPES_V ,
-
View: OE_TRXT_TYPES_NOORGS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_TRXT_TYPES_NOORGS_VL, object_name:OE_TRXT_TYPES_NOORGS_VL, status:VALID, product: ONT - Order Management , description: Org independent VL view for Shipping integration team to get the Order Type name. , implementation_dba_data: APPS.OE_TRXT_TYPES_NOORGS_VL ,
-
View: OE_TRANSACTION_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_TRANSACTION_TYPES_V, object_name:OE_TRANSACTION_TYPES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_TRANSACTION_TYPES_V ,
-
View: OE_TRANSACTION_TYPES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_TRANSACTION_TYPES_VL, object_name:OE_TRANSACTION_TYPES_VL, status:VALID, product: ONT - Order Management , description: MLS transaction types view for an organization. , implementation_dba_data: APPS.OE_TRANSACTION_TYPES_VL ,
-
View: OE_AK_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ORDER_HEADERS_V, object_name:OE_AK_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ORDER_HEADERS_V ,
-
View: OE_AK_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ORDER_HEADERS_V, object_name:OE_AK_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ORDER_HEADERS_V ,
-
View: OE_BLANKET_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_HEADERS_V, object_name:OE_BLANKET_HEADERS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_BLANKET_HEADERS_V ,
-
View: OE_BLANKET_HDRS_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_HDRS_HIST_V, object_name:OE_BLANKET_HDRS_HIST_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_BLANKET_HDRS_HIST_V ,
-
View: OE_BLANKET_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_HEADERS_V, object_name:OE_BLANKET_HEADERS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_BLANKET_HEADERS_V ,
-
View: OE_BLANKET_HDRS_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_HDRS_HIST_V, object_name:OE_BLANKET_HDRS_HIST_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_BLANKET_HDRS_HIST_V ,
-
View: OE_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_HEADERS_V, object_name:OE_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , description: View for Order header used in sales order form. , implementation_dba_data: APPS.OE_ORDER_HEADERS_V ,
-
View: OE_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_HEADERS_V, object_name:OE_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , description: View for Order header used in sales order form. , implementation_dba_data: APPS.OE_ORDER_HEADERS_V ,
-
View: OE_HEADER_ACKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_HEADER_ACKS_V, object_name:OE_HEADER_ACKS_V, status:VALID, product: ONT - Order Management , description: Information about the acknowledgements for Order Headers. , implementation_dba_data: APPS.OE_HEADER_ACKS_V ,
-
View: OE_HEADER_ACKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_HEADER_ACKS_V, object_name:OE_HEADER_ACKS_V, status:VALID, product: ONT - Order Management , description: Information about the acknowledgements for Order Headers. , implementation_dba_data: APPS.OE_HEADER_ACKS_V ,
-
View: OE_ORDER_HEADERS_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_HEADERS_HIST_V, object_name:OE_ORDER_HEADERS_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to retrieve the Order History. This is used by the history form. , implementation_dba_data: APPS.OE_ORDER_HEADERS_HIST_V ,
-
View: OE_ORDER_HEADERS_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_HEADERS_HIST_V, object_name:OE_ORDER_HEADERS_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to retrieve the Order History. This is used by the history form. , implementation_dba_data: APPS.OE_ORDER_HEADERS_HIST_V ,
-
View: OE_BLKT_HEADERS_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLKT_HEADERS_HIST_V, object_name:OE_BLKT_HEADERS_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to get BSA history headers information, and which is used in BSA organizer. , implementation_dba_data: APPS.OE_BLKT_HEADERS_HIST_V ,
-
View: OE_BLKT_HEADERS_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLKT_HEADERS_HIST_V, object_name:OE_BLKT_HEADERS_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to get BSA history headers information, and which is used in BSA organizer. , implementation_dba_data: APPS.OE_BLKT_HEADERS_HIST_V ,