Search Results fob_point_code
Overview
ASO_I_LINE_TYPES_V is a public APPS view in the Oracle E-Business Suite Order Capture (ASO) module. It is defined as a filtered projection over OE_TRANSACTION_TYPES_VL, restricted to rows where TRANSACTION_TYPE_CODE equals 'LINE'. The view therefore exposes the set of valid order line transaction types — the line-level workflow classifications that govern how order lines behave with respect to pricing, shipping, invoicing, and accounting. In practical terms, ASO_I_LINE_TYPES_V provides a single, read-only source for line type reference data that Order Capture, Order Management, and downstream integration processes rely upon.
The view is stable and valid in both Oracle EBS 12.1.1 and 12.2.2. Its columns correspond directly to the shipping, freight, FOB, invoicing, and accounting attributes attached to each line type, making it a convenient denormalized source for reporting and interface code that must resolve the processing rules associated with a given line type identifier.
Underlying Base Objects
ASO_I_LINE_TYPES_V is defined over the single documented base object OE_TRANSACTION_TYPES_VL, itself a view over the transaction type tables. The VL suffix indicates the view contains translatable (multi-language) name and description columns sourced from the underlying translation tables. The ASO view adds no aggregation or joins of its own; it simply selects a defined column list and applies the filter TRANSACTION_TYPE_CODE = 'LINE'. This contrasts with order header and return transaction types, which are excluded.
- OE_TRANSACTION_TYPES_VL — the immediate parent view supplying transaction type attributes and translated names.
- Filter condition — TRANSACTION_TYPE_CODE = 'LINE' limits output to line-level transaction types only.
- Owner — APPS; the view is granted for reporting and concurrent processing use.
Key Columns
The view exposes the full set of line type configuration attributes. The most significant include:
- LINE_TYPE_ID — primary identifier for the line type, referenced by order lines.
- TRANSACTION_TYPE_CODE — always 'LINE' in this view.
- NAME / DESCRIPTION — translatable display values from the VL source.
- ORDER_CATEGORY_CODE — category driving order behavior.
- SHIPPING_METHOD_CODE — default shipping method applied to lines of this type, the attribute most frequently requested in this context.
- SHIPMENT_PRIORITY_CODE — default shipment priority for the line type.
- FREIGHT_TERMS_CODE / FOB_POINT_CODE — default freight and FOB terms.
- PRICE_LIST_ID — default price list for pricing derivation.
- CUST_TRX_TYPE_ID — receivable transaction type used for invoicing.
- INVOICING_RULE_ID / INVOICING_CREDIT_METHOD_CODE — invoicing schedule and credit rules.
- ACCOUNTING_RULE_ID / ACCOUNTING_CREDIT_METHOD_CODE — revenue recognition and credit rules.
- START_DATE_ACTIVE / END_DATE_ACTIVE — effective dating.
- ORG_ID — operating unit context.
Common Use Cases and Queries
Typical uses include retrieving the default shipping method for a line type, validating line type configuration during order import, building reference lists in extensions, and reconciling line type attributes across operating units. Because the view is filtered to LINE types, it can be joined directly to line-level tables without additional filtering.
The following query returns line types and their shipping configuration:
SELECT line_type_id, name, shipping_method_code, shipment_priority_code, freight_terms_code, order_category_code FROM apps.aso_i_line_types_v WHERE TRUNC(SYSDATE) BETWEEN NVL(start_date_active, SYSDATE) AND NVL(end_date_active, SYSDATE);
A second common pattern resolves a single line type by identifier:
SELECT name, shipping_method_code, fob_point_code FROM apps.aso_i_line_types_v WHERE line_type_id = :p_line_type_id;
For multi-org reporting, add a predicate on ORG_ID to restrict results to the relevant operating unit.
-
View: ASO_I_LINE_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_LINE_TYPES_V, object_name:ASO_I_LINE_TYPES_V, status:VALID, product: ASO - Order Capture , description: This is a view on OE_TRANSACTION_TYPES_VL with Transaction_type_code = 'LINE' , implementation_dba_data: APPS.ASO_I_LINE_TYPES_V ,
-
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: 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: ASO_I_LINE_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_LINE_TYPES_V, object_name:ASO_I_LINE_TYPES_V, status:VALID, product: ASO - Order Capture , description: This is a view on OE_TRANSACTION_TYPES_VL with Transaction_type_code = 'LINE' , implementation_dba_data: APPS.ASO_I_LINE_TYPES_V ,
-
View: ASO_I_OE_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_OE_ORDER_HEADERS_V, object_name:ASO_I_OE_ORDER_HEADERS_V, status:VALID, product: ASO - Order Capture , description: This view includes all columns from the Oracle Order Management tables and is currently used by Oracle Sales Compensation only. , implementation_dba_data: APPS.ASO_I_OE_ORDER_HEADERS_V ,
-
View: ASO_I_OE_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_OE_ORDER_HEADERS_V, object_name:ASO_I_OE_ORDER_HEADERS_V, status:VALID, product: ASO - Order Capture , description: This view includes all columns from the Oracle Order Management tables and is currently used by Oracle Sales Compensation only. , implementation_dba_data: APPS.ASO_I_OE_ORDER_HEADERS_V ,
-
View: ASO_I_OE_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_OE_ORDER_LINES_V, object_name:ASO_I_OE_ORDER_LINES_V, status:VALID, product: ASO - Order Capture , description: This view includes all columns from the Oracle Order Management order lines tables and is currently used by Oracle Sales Compensation only. , implementation_dba_data: APPS.ASO_I_OE_ORDER_LINES_V ,
-
View: ASO_I_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_ORDER_HEADERS_V, object_name:ASO_I_ORDER_HEADERS_V, status:VALID, product: ASO - Order Capture , description: view provides order related information , implementation_dba_data: APPS.ASO_I_ORDER_HEADERS_V ,
-
View: ASO_I_OE_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_OE_ORDER_LINES_V, object_name:ASO_I_OE_ORDER_LINES_V, status:VALID, product: ASO - Order Capture , description: This view includes all columns from the Oracle Order Management order lines tables and is currently used by Oracle Sales Compensation only. , implementation_dba_data: APPS.ASO_I_OE_ORDER_LINES_V ,
-
View: ASO_I_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_ORDER_HEADERS_V, object_name:ASO_I_ORDER_HEADERS_V, status:VALID, product: ASO - Order Capture , description: view provides order related information , implementation_dba_data: APPS.ASO_I_ORDER_HEADERS_V ,