Search Results oe_trxt_types_noorgs_vl
Overview
OE_TRXT_TYPES_NOORGS_VL is a valid, organization-independent multilingual (VL) view owned by the APPS schema in Oracle E-Business Suite. It belongs to the ONT – Order Management product family and is documented in Oracle's ETRM (E-Business Suite Technical Reference Manual) for release 12.1.1 and 12.2.2. its purpose, per the documentation, is explicit: it exists so that the Shipping integration team can retrieve the Order Type name without being constrained by, or required to supply, an operating unit (ORG_ID) context.
Internally, the ETRM describes it as an "Org independent VL view for Shipping integration team to get the Order Type name." In EBS terms, a "VL" view conventionally joins a base (_ALL or _B) table to its corresponding translation (_TL) table, resolving the translated NAME and DESCRIPTION based on the session language. The "NOORGS" prefix signals that this view deliberately does not filter by organization. This makes it suitable for cross-organizational lookups, background programs, and integration channels where the caller has no committed ORG_ID in session.
Underlying Base Objects
According to the documented ETRM metadata, the view is defined over two base objects, both referenced through synonyms:
- OE_TRANSACTION_TYPES_ALL (SYNONYM) — aliased as
Bin the view text; supplies the transactional and structural attributes of the order type. - OE_TRANSACTION_TYPES_TL (SYNONYM) — aliased as
T; supplies the translated NAME and DESCRIPTION.
The join predicate, per the view text, is B.TRANSACTION_TYPE_ID = T.TRANSACTION_TYPE_ID combined with T.LANGUAGE = USERENV('LANG'). Because it is built on a VL pattern and omits an ORG_ID filter in the join, the view returns a single row per order type for the current session language. Note, however, that the projected column list still includes ORG_ID — the column is carried through, but the view itself remains org-independent in behavior.
Key Columns
Because the view selects from a wide base table, it exposes a substantial column set. The most operationally significant columns include:
- TRANSACTION_TYPE_ID — Primary key of the order type; the join anchor between the two base objects.
- TRANSACTION_TYPE_CODE and ORDER_CATEGORY_CODE — The internal identifier and category (e.g., order, return, mixed) of the type.
- NAME and DESCRIPTION — Sourced from the TL table; the translated, user-facing Order Type name that the Shipping integration consumes.
- START_DATE_ACTIVE / END_DATE_ACTIVE — Date-range activation controls for the type.
- ORG_ID — Operating unit identifier; present in the projection but not used as a filter.
- CURRENCY_CODE, PRICE_LIST_ID, WAREHOUSE_ID, SHIPPING_METHOD_CODE, FREIGHT_TERMS_CODE, FOB_POINT_CODE, SHIP_SOURCE_TYPE_CODE — Default shipping and pricing attributes relevant to fulfillment.
- INVOICING_RULE_ID, ACCOUNTING_RULE_ID, CUST_TRX_TYPE_ID — Financial defaults tied to the order type.
- ATTRIBUTE1 through ATTRIBUTE15 plus CONTEXT — The standard EBS DFF columns for customer-defined extensions.
- ROW_ID — Row identifier derived from the base table's ROWID, useful for row-level identification.
Common Use Cases and Queries
The primary scenario is Shipping-style integration lookups, where a downstream system needs to resolve a Transaction Type Id to its human-readable name without an operating unit context. A representative query is:
SELECT TRANSACTION_TYPE_ID, TRANSACTION_TYPE_CODE, NAME, ORDER_CATEGORY_CODE FROM OE_TRXT_TYPES_NOORGS_VL ORDER BY NAME;- Targeted lookup:
SELECT NAME, DESCRIPTION FROM OE_TRXT_TYPES_NOORGS_VL WHERE TRANSACTION_TYPE_ID = :p_type_id; - Filtering active types for a code:
SELECT NAME FROM OE_TRXT_TYPES_NOORGS_VL WHERE TRANSACTION_TYPE_CODE = 'ORDER' AND NVL(END_DATE_ACTIVE, SYSDATE+1) > SYSDATE;
Because the view is org-independent, it is best used strictly for name resolution and validation rather than for org-specific policy enforcement; callers that require an operating unit scope should join to or query OE_TRANSACTION_TYPES_ALL with an explicit ORG_ID predicate. Additionally, since no ORDER BY or DISTINCT is applied, integrations should expect one row per type per language and handle language dependence through the USERENV('LANG') setting of the executing session.
-
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_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: APPS.WSH_SOURCE_TYPES_V
12.2.2
-
VIEW: APPS.WSH_SOURCE_TYPES_V
12.1.1
-
VIEW: APPS.WSH_ORDER_TYPES_REGULAR_V
12.1.1
-
VIEW: APPS.WSH_ORDER_TYPES_REGULAR_V
12.2.2
-
VIEW: APPS.WSH_ORDER_NUMBERS_V
12.2.2
-
VIEW: APPS.WSH_ORDER_NUMBERS_V
12.1.1
-
View: WSH_SOURCE_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_SOURCE_TYPES_V, object_name:WSH_SOURCE_TYPES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_SOURCE_TYPES_V ,
-
PACKAGE BODY: APPS.WSH_WSHRDBSR_XMLP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_WSHRDBSR_XMLP_PKG, status:VALID,
-
View: WSH_ORDER_TYPES_REGULAR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ORDER_TYPES_REGULAR_V, object_name:WSH_ORDER_TYPES_REGULAR_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_ORDER_TYPES_REGULAR_V ,
-
VIEW: APPS.WSH_SOURCE_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_SOURCE_TYPES_V, object_name:WSH_SOURCE_TYPES_V, status:VALID,
-
PACKAGE BODY: APPS.WSH_WSHRDBSR_XMLP_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_WSHRDBSR_XMLP_PKG, status:VALID,
-
VIEW: APPS.WSH_SOURCE_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_SOURCE_TYPES_V, object_name:WSH_SOURCE_TYPES_V, status:VALID,
-
PACKAGE BODY: APPS.WSH_WSHRDBDR_XMLP_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_WSHRDBDR_XMLP_PKG, status:VALID,
-
PACKAGE BODY: APPS.WSH_WSHRDBDR_XMLP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_WSHRDBDR_XMLP_PKG, status:VALID,
-
View: WSH_ORDER_NUMBERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ORDER_NUMBERS_V, object_name:WSH_ORDER_NUMBERS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_ORDER_NUMBERS_V ,
-
VIEW: APPS.WSH_ORDER_TYPES_REGULAR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ORDER_TYPES_REGULAR_V, object_name:WSH_ORDER_TYPES_REGULAR_V, status:VALID,
-
VIEW: APPS.WSH_ORDER_TYPES_REGULAR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ORDER_TYPES_REGULAR_V, object_name:WSH_ORDER_TYPES_REGULAR_V, status:VALID,
-
VIEW: APPS.QPR_SR_OM_QUOTE_HEADERS_V
12.1.1
-
VIEW: APPS.QPR_SR_OM_QUOTE_HEADERS_V
12.2.2
-
VIEW: APPS.WSH_ORDER_NUMBERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ORDER_NUMBERS_V, object_name:WSH_ORDER_NUMBERS_V, status:VALID,
-
VIEW: APPS.WSH_ORDER_NUMBERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ORDER_NUMBERS_V, object_name:WSH_ORDER_NUMBERS_V, status:VALID,
-
SYNONYM: APPS.OE_TRANSACTION_TYPES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OE_TRANSACTION_TYPES_ALL, status:VALID,
-
APPS.WSH_WSHRDBSR_XMLP_PKG SQL Statements
12.2.2
-
APPS.WSH_WSHRDBSR_XMLP_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.OE_TRANSACTION_TYPES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OE_TRANSACTION_TYPES_ALL, status:VALID,
-
VIEW: APPS.QPR_SR_OM_QUOTE_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:QPR_SR_OM_QUOTE_HEADERS_V, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.WSH_PICKING_RULES_V
12.1.1
-
VIEW: APPS.WSH_PICKING_RULES_V
12.2.2
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.QPR_SR_OM_QUOTE_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:QPR_SR_OM_QUOTE_HEADERS_V, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
APPS.WSH_WSHRDBDR_XMLP_PKG SQL Statements
12.1.1
-
APPS.WSH_WSHRDBDR_XMLP_PKG SQL Statements
12.2.2
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
SYNONYM: APPS.OE_TRANSACTION_TYPES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OE_TRANSACTION_TYPES_TL, status:VALID,
-
SYNONYM: APPS.OE_TRANSACTION_TYPES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OE_TRANSACTION_TYPES_TL, status:VALID,
-
View: WSH_PICKING_RULES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_PICKING_RULES_V, object_name:WSH_PICKING_RULES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_PICKING_RULES_V ,
-
VIEW: APPS.WSH_PICKING_RULES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_PICKING_RULES_V, object_name:WSH_PICKING_RULES_V, status:VALID,
-
VIEW: APPS.WSH_PICKING_RULES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_PICKING_RULES_V, object_name:WSH_PICKING_RULES_V, status:VALID,
-
View: WSH_PICKING_RULES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_PICKING_RULES_V, object_name:WSH_PICKING_RULES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_PICKING_RULES_V ,
-
APPS.WSH_WSHRDBSR_XMLP_PKG dependencies on OE_TRXT_TYPES_NOORGS_VL
12.2.2
-
APPS.WSH_WSHRDBDR_XMLP_PKG dependencies on OE_TRXT_TYPES_NOORGS_VL
12.2.2
-
APPS.WSH_WSHRDBSR_XMLP_PKG dependencies on OE_TRXT_TYPES_NOORGS_VL
12.1.1
-
APPS.WSH_WSHRDBDR_XMLP_PKG dependencies on OE_TRXT_TYPES_NOORGS_VL
12.1.1
-
PACKAGE BODY: APPS.WSH_WSHRDBSR_XMLP_PKG
12.2.2