Search Results oe_transaction_types_syn
Overview
APPS.OEBV_SALES_ORDER_TYPES is a read-only reporting view shipped with Oracle E-Business Suite Release 12.1.1 and 12.2.2 as part of the Order Management (ONT) module. It exposes the master definition of sales order transaction types — the configurable categories such as "Mixed Order," "Standard Order," or "Return with Credit" — that govern how order lines behave throughout the order-to-cash lifecycle. Each row represents one order type for a specific operating unit (ORG_ID), combining the translatable descriptive attributes with the control flags, pricing defaults, and accounting options defined for that type.
The view is primarily consumed by reporting, integration, and localization layers. The Oracle ETRM metadata shows that many columns are not raw values but seeded lookup resolution expressions (the "_LA:" prefixed entries), where coded values are translated into their display meanings from OE_LOOKUPS, AR_LOOKUPS, or QP_LOOKUPS. This makes the view particularly useful for external extracts, OBIEE / BI Publisher reports, and interfaces that require human-readable order type attributes rather than internal codes.
Underlying Base Objects
Per the documented metadata, the view is defined over two referenced base objects, both exposed through synonyms in the APPS schema:
- OE_TRANSACTION_TYPES_SYN — the synonym resolving to OE_TRANSACTION_TYPES_B, the base table holding non-translatable, operating-unit-specific order type attributes (ORG_ID, CURRENCY_CODE, PRICE_LIST_ID, WAREHOUSE_ID, accounting rules, activity dates, audit columns, and the various control flags).
- OE_TRANSACTION_TYPES_TL — the synonym resolving to OE_TRANSACTION_TYPES_TL, the translation table holding NAME and DESCRIPTION for each order type by language.
The join is on TRANSACTION_TYPE_ID, with a language filter of T.LANGUAGE = userenv('LANG'), so only the translation matching the caller's session language is returned. This correlation to the user's search term "oe_transaction_types_syn" is direct: the view's FROM clause explicitly references OE_TRANSACTION_TYPES_SYN, making it the primary base-table synonym behind OEBV_SALES_ORDER_TYPES.
Key Columns
The exposed columns fall into three functional groups:
- Identity and description: NAME and DESCRIPTION (from OE_TRANSACTION_TYPES_TL).
- Behavioral control flags (resolved via lookups): ENFORCE_LINE_PRICES_FLAG, AGREEMENT_REQUIRED_FLAG, SHIPMENT_PRIORITY_CODE, SHIPPING_METHOD_CODE, FREIGHT_TERMS_CODE, AGREEMENT_TYPE_CODE, INVOICING_CREDIT_METHOD_CODE, ACCOUNTING_CREDIT_METHOD_CODE, and ORDER_CATEGORY_CODE. Each is projected as a lookup meaning rather than a raw code.
- Operational and accounting attributes (raw): CONVERSION_TYPE_CODE, START_DATE_ACTIVE, END_DATE_ACTIVE, CURRENCY_CODE, COST_OF_GOODS_SOLD_ACCOUNT, PRICE_LIST_ID, WAREHOUSE_ID, INVOICING_RULE_ID, ACCOUNTING_RULE_ID, ORG_ID, and the standard audit columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY).
The '_DF:ONT:OE_ORDER_TYPES:B' entry is a descriptive flexfield marker, indicating that DFF segments defined on OE_ORDER_TYPES_B are surfaced through this view.
Common Use Cases and Queries
The view is typically used to:
• Drive LOVs or cross-reference extracts of valid sales order types per operating unit.
• Feed BI Publisher / OBIEE reports needing lookup-translated order type attributes.
• Support integration mappings between EBS and external order capture systems.
A basic query scoped to an operating unit:
SELECT name, description, order_category_code, currency_code, price_list_idFROM apps.oebv_sales_order_typesWHERE org_id = :p_org_idAND SYSDATE BETWEEN start_date_active AND NVL(end_date_active, SYSDATE + 1);
Because ORG_ID is included and the view applies organization-based security ('_SEC:B.ORG_ID'), results are automatically restricted to the operating units the querying responsibility may access. The view is defined WITH READ ONLY and should never be used for DML — inserts and updates must target OE_TRANSACTION_TYPES_B and _TL directly.
-
VIEW: APPS.OEBV_SALES_ORDER_TYPES
12.1.1
-
VIEW: APPS.OEBV_SALES_ORDER_TYPES
12.2.2
-
VIEW: APPS.OE_TRANSACTION_TYPES_VL
12.1.1
-
SYNONYM: APPS.OE_TRANSACTION_TYPES_SYN
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OE_TRANSACTION_TYPES_SYN, status:VALID,
-
VIEW: APPS.OE_TRANSACTION_TYPES_VL
12.2.2
-
View: OEBV_SALES_ORDER_TYPES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.OEBV_SALES_ORDER_TYPES ONT.OEBV_SALES_ORDER_TYPES, object_name:OEBV_SALES_ORDER_TYPES, status:VALID, product: ONT - Order Management , description: Base BIS Business View for Sales Order Types. , implementation_dba_data: APPS.OEBV_SALES_ORDER_TYPES ,
-
SYNONYM: APPS.OE_TRANSACTION_TYPES_SYN
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OE_TRANSACTION_TYPES_SYN, status:VALID,
-
View: OEBV_SALES_ORDER_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.OEBV_SALES_ORDER_TYPES ONT.OEBV_SALES_ORDER_TYPES, object_name:OEBV_SALES_ORDER_TYPES, status:VALID, product: ONT - Order Management , description: Base BIS Business View for Sales Order Types. , implementation_dba_data: APPS.OEBV_SALES_ORDER_TYPES ,
-
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: OEFV_SALES_ORDER_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.OEFV_SALES_ORDER_TYPES ONT.OEFV_SALES_ORDER_TYPES, object_name:OEFV_SALES_ORDER_TYPES, status:VALID, product: ONT - Order Management , description: Full BIS Business View for Sales Order Types. , implementation_dba_data: APPS.OEFV_SALES_ORDER_TYPES ,
-
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: APPS.OEBV_SALES_ORDER_TYPES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.OEBV_SALES_ORDER_TYPES ONT.OEBV_SALES_ORDER_TYPES, object_name:OEBV_SALES_ORDER_TYPES, status:VALID,
-
VIEW: APPS.OEBV_SALES_ORDER_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.OEBV_SALES_ORDER_TYPES ONT.OEBV_SALES_ORDER_TYPES, object_name:OEBV_SALES_ORDER_TYPES, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.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,
-
VIEW: ONT.OE_TRANSACTION_TYPES_ALL#
12.2.2
owner:ONT, object_type:VIEW, object_name:OE_TRANSACTION_TYPES_ALL#, status:VALID,
-
VIEW: APPS.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,
-
TABLE: ONT.OE_TRANSACTION_TYPES_ALL
12.1.1
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_TRANSACTION_TYPES_ALL, object_name:OE_TRANSACTION_TYPES_ALL, status:VALID,
-
eTRM - ONT Tables and Views
12.1.1
description: OM WorkFlow Activity Skip Log. ,
-
eTRM - ONT Tables and Views
12.2.2
description: OM WorkFlow Activity Skip Log. ,
-
eTRM - OE Tables and Views
12.2.2
description: Temporary table ,
-
eTRM - OE Tables and Views
12.1.1
description: Temporary table ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - ONT Tables and Views
12.1.1
description: OM WorkFlow Activity Skip Log. ,
-
eTRM - OE Tables and Views
12.1.1
description: Temporary table ,
-
eTRM - OE Tables and Views
12.2.2
description: Temporary table ,
-
eTRM - ONT Tables and Views
12.2.2
description: OM WorkFlow Activity Skip Log. ,