Search Results ont_source_code
Overview
APPS.OE_RA_CUST_TRX_HDR_PERF_V is a performance-oriented reporting view in Oracle EBS Release 12.1.1 and 12.2.2 that joins Receivables transaction header and line data to Order Management context information. Its purpose is to expose autoinvoice-generated receivables transactions that originated from Order Management (via Order-to-Cash flows), correlating each transaction to its source order number and order type. The view exists specifically to satisfy Oracle Order Management's performance requirements when retrieving invoice balances and amounts tied to a given order. By filtering and decoding on the profile option ONT_SOURCE_CODE, the view isolates transactions whose Autoinvoice interface context matches the Order Management source, distinguishing them from intercompany transactions.
Underlying Base Objects
The view is defined over four receivables synonyms plus two PL/SQL packages documented in the ETRM metadata:
- RA_CUSTOMER_TRX_ALL (synonym) — the receivables transaction header table (alias RCT), supplying transaction ID, number, date, and audit columns.
- RA_CUSTOMER_TRX_LINES (synonym) — transaction lines (alias RCTL), providing extended amounts and interface line attributes.
- RA_BATCH_SOURCES_ALL (synonym) — batch source definitions (alias RBS), joined via an outer join on BATCH_SOURCE_ID.
- RA_CUST_TRX_TYPES_ALL (synonym) — transaction type definitions (alias RCTT), joined on CUST_TRX_TYPE_ID.
- FND_PROFILE (package) — used to resolve the
ONT_SOURCE_CODEprofile value at runtime. - OE_INVOICE_PUB (package) — provides INVOICE_BALANCE and the get_order_number / get_order_type functions used to filter rows.
The join is constrained by ORG_ID across all four tables to preserve multi-org security, and lines of LINE_TYPE 'TAX' are excluded.
Key Columns
- CUSTOMER_TRX_ID, TRX_NUMBER, TRX_DATE — transaction identity and date.
- BATCH_SOURCE — the batch source name (RBS.NAME).
- TYPE — the receivables transaction type name.
- BALANCE — invokes OE_INVOICE_PUB.INVOICE_BALANCE for the transaction.
- INVOICE_AMOUNT — SUM of RCTL.EXTENDED_AMOUNT, aggregated per transaction.
- ORDER_NUMBER — mapped from RCTL.INTERFACE_LINE_ATTRIBUTE1.
- ORDER_TYPE — decoded from INTERFACE_LINE_ATTRIBUTE2 when INTERFACE_LINE_CONTEXT equals the ONT_SOURCE_CODE profile, otherwise the literal 'INTERCOMPANY'.
- interface_line_attribute9 — decoded to '0' for OM-sourced lines, otherwise RCTL.INTERFACE_LINE_ATTRIBUTE9.
- ORG_ID and audit columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, etc.).
Common Use Cases and Queries
The view is used primarily by Order Management invoice inquiry logic to retrieve invoice details for a specified order. Because get_order_number and get_order_type are invoked in the WHERE clause, the view normally returns rows scoped to the current order context. Typical usage:
SELECT customer_trx_id, trx_number, batch_source, type, trx_date,
balance, invoice_amount, order_number, order_type
FROM apps.oe_ra_cust_trx_hdr_perf_v;
A more targeted query filters by order number:
SELECT trx_number, trx_date, invoice_amount, balance
FROM apps.oe_ra_cust_trx_hdr_perf_v
WHERE order_number = :p_order_number;
Because the view depends on the session value of the ONT_SOURCE_CODE profile option and on OE_INVOICE_PUB's order context, results are sensitive to the runtime environment; direct ad hoc use outside the OM calling context should account for this behavior.
-
VIEW: APPS.OE_RA_CUST_TRX_HDR_PERF_V
12.2.2
-
View: OE_RA_CUST_TRX_HDR_PERF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_RA_CUST_TRX_HDR_PERF_V, object_name:OE_RA_CUST_TRX_HDR_PERF_V, status:VALID, product: ONT - Order Management , description: This will be used by the Invoices / Credit Memos tab in Addition Order Information screen. , implementation_dba_data: APPS.OE_RA_CUST_TRX_HDR_PERF_V ,
-
VIEW: APPS.QA_SALES_ORDERS_LOV_V
12.1.1
-
VIEW: APPS.QA_SALES_ORDERS_LOV_V
12.2.2
-
View: QA_SALES_ORDERS_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_SALES_ORDERS_LOV_V, object_name:QA_SALES_ORDERS_LOV_V, status:VALID, product: QA - Quality , description: Sales Order LOV record group , implementation_dba_data: APPS.QA_SALES_ORDERS_LOV_V ,
-
View: QA_SALES_ORDERS_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_SALES_ORDERS_LOV_V, object_name:QA_SALES_ORDERS_LOV_V, status:VALID, product: QA - Quality , description: Sales Order LOV record group , implementation_dba_data: APPS.QA_SALES_ORDERS_LOV_V ,
-
VIEW: APPS.OE_WIP_OPEN_DEMANDS_V
12.1.1
-
VIEW: APPS.OE_RA_CUSTOMER_TRX_PERF_V
12.2.2
-
VIEW: APPS.OE_WIP_OPEN_DEMANDS_V
12.2.2
-
APPS.INV_DIAG_SO_MSO_MCH SQL Statements
12.1.1
-
APPS.INV_DIAG_SO_MSO_MCH SQL Statements
12.2.2
-
View: OE_WIP_OPEN_DEMANDS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_WIP_OPEN_DEMANDS_V, object_name:OE_WIP_OPEN_DEMANDS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_WIP_OPEN_DEMANDS_V ,
-
View: OE_WIP_OPEN_DEMANDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_WIP_OPEN_DEMANDS_V, object_name:OE_WIP_OPEN_DEMANDS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_WIP_OPEN_DEMANDS_V ,
-
View: OE_RA_CUSTOMER_TRX_PERF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_RA_CUSTOMER_TRX_PERF_V, object_name:OE_RA_CUSTOMER_TRX_PERF_V, status:VALID, product: ONT - Order Management , description: Invoice/Credit memo information , implementation_dba_data: APPS.OE_RA_CUSTOMER_TRX_PERF_V ,
-
VIEW: APPS.MTL_SHORT_SUMMARY_V
12.2.2
-
VIEW: APPS.MTL_SHORT_SUMMARY_V
12.1.1
-
VIEW: APPS.ECE_INO_LINE_V
12.2.2
-
VIEW: APPS.ECE_INO_LINE_V
12.1.1
-
VIEW: APPS.ECE_CDMO_LINE_V
12.2.2
-
VIEW: APPS.ECE_CDMO_LINE_V
12.1.1
-
APPS.QA_RESULTS_INTERFACE_PKG SQL Statements
12.2.2
-
APPS.QA_RESULTS_INTERFACE_PKG SQL Statements
12.1.1
-
View: MTL_SHORT_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SHORT_SUMMARY_V, object_name:MTL_SHORT_SUMMARY_V, status:VALID, product: INV - Inventory , description: Summary view of the material shortages temp table , implementation_dba_data: APPS.MTL_SHORT_SUMMARY_V ,
-
View: MTL_SHORT_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SHORT_SUMMARY_V, object_name:MTL_SHORT_SUMMARY_V, status:VALID, product: INV - Inventory , description: Summary view of the material shortages temp table , implementation_dba_data: APPS.MTL_SHORT_SUMMARY_V ,
-
APPS.OM_TAX_UTIL SQL Statements
12.2.2
-
View: ECE_CDMO_LINE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_CDMO_LINE_V, object_name:ECE_CDMO_LINE_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts line informationfor the outbound Credit/Debit Memo (812/CREADV/DEBADV) transaction.@rep:scope private@rep:product AR@rep:lifecycle active@rep:displayname Credit/Debit Memo Line View@rep:category BUSINESS_ENTITY AR_CREDIT_ , implementation_dba_data: APPS.ECE_CDMO_LINE_V ,
-
View: ECE_CDMO_LINE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_CDMO_LINE_V, object_name:ECE_CDMO_LINE_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts line informationfor the outbound Credit/Debit Memo (812/CREADV/DEBADV) transaction.@rep:scope private@rep:product AR@rep:lifecycle active@rep:displayname Credit/Debit Memo Line View@rep:category BUSINESS_ENTITY AR_CREDIT_ , implementation_dba_data: APPS.ECE_CDMO_LINE_V ,
-
PACKAGE BODY: APPS.INV_DIAG_SO_MSO_MCH
12.1.1
-
PACKAGE BODY: APPS.INV_DIAG_SO_MSO_MCH
12.2.2
-
PACKAGE BODY: APPS.OE_INV_IFACE_PVT
12.1.1
-
APPS.GMI_RESERVATION_UTIL SQL Statements
12.1.1
-
APPS.GMI_RESERVATION_UTIL SQL Statements
12.2.2
-
APPS.OE_INV_IFACE_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.OE_INV_IFACE_PVT
12.2.2
-
APPS.OE_INV_IFACE_PVT SQL Statements
12.2.2
-
APPS.OE_ORDER_SCH_UTIL SQL Statements
12.2.2
-
APPS.OE_ORDER_SCH_UTIL SQL Statements
12.1.1
-
PACKAGE BODY: APPS.OE_COMMITMENT_PVT
12.1.1
-
PACKAGE BODY: APPS.OE_COMMITMENT_PVT
12.2.2
-
PACKAGE BODY: APPS.OE_DS_PVT
12.1.1
-
PACKAGE BODY: APPS.OE_DS_PVT
12.2.2
-
PACKAGE: APPS.WSH_SHIP_CONFIRM_ACTIONS
12.1.1
-
PACKAGE BODY: APPS.AR_DEFERRAL_REASONS_GRP
12.1.1
-
PACKAGE BODY: APPS.AR_DEFERRAL_REASONS_GRP
12.2.2
-
APPS.JAI_AR_IMPORT_POPU_PKG SQL Statements
12.2.2
-
APPS.OM_SETUP_VALID_PKG SQL Statements
12.1.1
-
APPS.OM_SETUP_VALID_PKG SQL Statements
12.2.2
-
APPS.OE_SCHEDULE_UTIL SQL Statements
12.1.1
-
PACKAGE BODY: APPS.INV_SALESORDER
12.1.1
-
APPS.OE_INV_IFACE_PVT dependencies on FND_PROFILE
12.2.2