Search Results invoicing_credit_method_code
Overview
APPS.ASO_I_LINE_TYPES_V is a public Oracle E-Business Suite view owned by the APPS schema that exposes line type definitions used by the Order Management and Order Capture (ASO) modules. In the EBS 12.1.1 and 12.2.2 data models, this view is a thin projection over the underlying OE_LINE_TYPES_V view, presenting a stable, integration-friendly interface that surfaces the attributes required to classify order lines, drive fulfillment defaults, and determine downstream invoicing and accounting behavior. Because it is a view rather than a base table, it inherits the row-level security and org context applied by the Order Management layer while offering a logical column set curated for ASO consumers. Within the ETRM 12.2.2 metadata, the view is documented as being defined directly over one referenced base object, OE_LINE_TYPES_V.
Underlying Base Objects
The documented metadata lists a single referenced base object: OE_LINE_TYPES_V (VIEW). APPS.ASO_I_LINE_TYPES_V therefore does not select from base tables directly; instead it delegates all column derivation and join logic to OE_LINE_TYPES_V, which in turn resolves the transactional line type records in the Order Management schema. This single-layer indirection is significant for support and performance analysis: any change to OE_LINE_TYPES_V—such as an added column, a modified join, or a change in the org-filtering predicate—propagates immediately to ASO_I_LINE_TYPES_V. The view carries no independent WHERE clause, filter, or aggregation in the documented definition; column list and ordering are preserved exactly as exposed by the base view, including the ORG_ID column that anchors multi-org visibility.
Key Columns
- LINE_TYPE_ID — Primary key identifying the line type record.
- TRANSACTION_TYPE_CODE — The order transaction category (for example, order, return, or mixed) to which the line type applies.
- ORDER_CATEGORY_CODE — Classifies ordering behavior for the line type.
- NAME / DESCRIPTION — User-facing label and descriptive text.
- START_DATE_ACTIVE / END_DATE_ACTIVE — Effective dating for the line type definition.
- CUST_TRX_TYPE_ID — Default Receivables transaction type used when invoicing lines of this type.
- PRICE_LIST_ID — Default price list associated with the line type.
- SHIPMENT_PRIORITY_CODE, SHIPPING_METHOD_CODE, FREIGHT_TERMS_CODE, FOB_POINT_CODE — Shipping and fulfillment defaults.
- INVOICING_RULE_ID — Invoicing rule governing revenue recognition timing.
- INVOICING_CREDIT_METHOD_CODE — The credit method applied to invoicing for the line type, one of the columns matched by the user's search and central to credit and adjustment processing.
- ACCOUNTING_RULE_ID — Accounting rule defining revenue recognition for accounting purposes.
- ACCOUNTING_CREDIT_METHOD_CODE — Credit method used in the accounting flow, paired with ACCOUNTING_RULE_ID.
- ORG_ID — Operating unit identifier enforcing multi-org access.
Common Use Cases and Queries
The view is typically queried during order import validation, pricing and invoicing default derivation, and integration extracts where the called interface requires line type attributes. A representative lookup by name is:
SELECT line_type_id, name, transaction_type_code,
invoicing_rule_id, invoicing_credit_method_code,
accounting_rule_id, accounting_credit_method_code, org_id
FROM apps.aso_i_line_types_v
WHERE org_id = :p_org_id
AND start_date_active <= SYSDATE
AND (end_date_active IS NULL OR end_date_active >= SYSDATE);
A second common pattern joins the view to order or invoice interfaces to resolve defaults by line type:
SELECT o.line_type_id, v.name,
v.cust_trx_type_id, v.invoicing_credit_method_code
FROM apps.aso_i_line_types_v v, oe_order_lines_all o
WHERE o.line_type_id = v.line_type_id
AND o.org_id = v.org_id;
Because the view is read-only and effective-dated, reports should always filter on START_DATE_ACTIVE and END_DATE_ACTIVE and qualify by ORG_ID to respect the operating unit boundary. For performance and support purposes, it should be treated as a synonym for OE_LINE_TYPES_V, and any tuning or issue diagnosis should be performed against that underlying Order Management view.
-
VIEW: APPS.ASO_I_LINE_TYPES_V
12.2.2
-
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: ONT.OE_TRANSACTION_TYPES_ALL#
12.2.2
-
VIEW: OE.SO_ORDER_TYPES_115_ALL#
12.2.2
-
VIEW: APPS.ASO_I_LINE_TYPES_V
12.1.1
-
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: APPS.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,
-
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: 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: APPS.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,
-
VIEW: APPS.SO_ORDER_TYPES_115
12.1.1
-
VIEW: APPS.SO_ORDER_TYPES_115
12.2.2
-
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: 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.SO_ORDER_TYPES_115_ALL#
12.2.2
owner:OE, object_type:VIEW, object_name:SO_ORDER_TYPES_115_ALL#, status:VALID,
-
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: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
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 ,
-
VIEW: APPS.OE_ORDER_TYPES_115
12.1.1
-
VIEW: APPS.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,
-
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: APPS.WSH_TRANSACTION_TYPES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_TRANSACTION_TYPES_VL, object_name:WSH_TRANSACTION_TYPES_VL, status:VALID,
-
VIEW: APPS.WSH_TRANSACTION_TYPES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_TRANSACTION_TYPES_VL, object_name:WSH_TRANSACTION_TYPES_VL, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
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: ONT.OE_TRANSACTION_TYPES_ALL#
12.2.2
owner:ONT, object_type:VIEW, object_name:OE_TRANSACTION_TYPES_ALL#, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
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,
-
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: APPS.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,
-
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,
-
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: WSH_TRANSACTION_TYPES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_TRANSACTION_TYPES_VL, object_name:WSH_TRANSACTION_TYPES_VL, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_TRANSACTION_TYPES_VL ,
-
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_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_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_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 ,