Search Results transaction_line_number
Overview
GLBV_GLOBAL_INTERCO_TRAN_LINES is a read-only Oracle EBS General Ledger view that consolidates intercompany transaction lines originating from the Global Intercompany System (GIS). It presents the sender and receiver sides of intercompany transactions in a single, normalized result set, exposing the transaction identifier, transaction number, line type, transaction line number, the intercompany clearing account, and the entered debit and credit amounts. The view is defined in the GL - General Ledger product and is intended for reporting and inquiry against global intercompany activity rather than for transactional processing. As a database view (the GLBV prefix denotes a view rather than a table), it carries no independent storage and is not implemented as a base object; it is a query-time construct derived from an underlying global intercompany transaction lines view.
Underlying Base Objects
Per the documented ETRM metadata, the view text selects from GL_BIS_IEA_TRAN_LINES_V, filtered by the SENDER_RECEIVER_CODE column. The definition performs a UNION of two queries: the first returns rows where SENDER_RECEIVER_CODE = 'S' (sender side), and the second returns rows where SENDER_RECEIVER_CODE = 'R' (receiver side). Both branches project the same seven columns: TRANSACTION_ID, TRANSACTION_NUMBER, LINE_TYPE, TRANSACTION_LINE_NUMBER, INTERCO_CLEARING_ACCT_ID, ENTERED_DR, and ENTERED_CR. The view is declared WITH READ ONLY, so it cannot be used as the target of DML. The metadata lists no additional referenced base objects beyond GL_BIS_IEA_TRAN_LINES_V, which itself is a view over the global intercompany transaction line data. Because the view is described as "not implemented in this database," its presence depends on whether the Global Intercompany System components are installed in a given instance.
Key Columns
- TRANSACTION_ID — Surrogate identifier for the intercompany transaction header, used for joins to transaction headers and other line-level views.
- TRANSACTION_NUMBER — The user-facing transaction number assigned to the intercompany transaction.
- LINE_TYPE — Classifies the nature of the line within the transaction (for example, the accounting or balancing role of the line).
- TRANSACTION_LINE_NUMBER — The sequence number of the line within its transaction; this is the column most often used to order or reference individual lines. It is the object of the search term "transaction_line_number."
- INTERCO_CLEARING_ACCT_ID — Identifier of the intercompany clearing account associated with the line, used to reconcile clearing balances.
- ENTERED_DR — Entered debit amount for the line in the entered currency.
- ENTERED_CR — Entered credit amount for the line in the entered currency.
Common Use Cases and Queries
The view is commonly used to report intercompany line detail by transaction, to reconcile clearing account balances, and to verify that sender and receiver lines balance. Because it unions both sides of each transaction, a single query returns the complete send/receive picture. A typical query orders lines within each transaction using the line number:
- List all lines for a transaction, ordered by line number:
SELECT transaction_number, transaction_line_number, line_type, entered_dr, entered_credit AS entered_cr FROM glbv_global_interco_tran_lines WHERE transaction_number = :p_trans_number ORDER BY transaction_line_number; - Aggregate debits and credits per transaction to confirm balance:
SELECT transaction_number, SUM(entered_dr) AS total_dr, SUM(entered_cr) AS total_cr FROM glbv_global_interco_tran_lines GROUP BY transaction_number; - Identify clearing account activity across transactions:
SELECT interco_clearing_acct_id, SUM(entered_dr) - SUM(entered_cr) AS net FROM glbv_global_interco_tran_lines GROUP BY interco_clearing_acct_id;
These queries are read-only and suitable for reporting, reconciliation extracts, and integration feeds. Users should confirm that the Global Intercompany System is implemented in their instance, since the view is documented as not implemented in all databases.
-
View: GLBV_GLOBAL_INTERCO_TRAN_LINES
12.1.1
product: GL - General Ledger , implementation_dba_data: Not implemented in this database ,
-
View: GLBV_GLOBAL_INTERCO_TRAN_LINES
12.2.2
product: GL - General Ledger , implementation_dba_data: Not implemented in this database ,
-
View: GLFV_GLOBAL_INTERCO_TRAN_LINES
12.1.1
product: GL - General Ledger , implementation_dba_data: Not implemented in this database ,
-
View: GLFV_GLOBAL_INTERCO_TRAN_LINES
12.2.2
product: GL - General Ledger , implementation_dba_data: Not implemented in this database ,
-
VIEW: GHG.GHG_TRANSACTIONS_HISTORY_ALL#
12.2.2
-
VIEW: GHG.GHG_TRANSACTIONS_ALL#
12.2.2
-
APPS.GHG_PO_EMISSIONS_PKG SQL Statements
12.2.2
-
VIEW: APPS.ARBV_AR_CUSTOMER_TRANS_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARBV_AR_CUSTOMER_TRANS_LINES, object_name:ARBV_AR_CUSTOMER_TRANS_LINES, status:VALID,
-
VIEW: APPS.ARBV_AR_CUSTOMER_TRANS_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARBV_AR_CUSTOMER_TRANS_LINES, object_name:ARBV_AR_CUSTOMER_TRANS_LINES, status:VALID,
-
VIEW: APPS.ARFV_UNREV_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_UNREV_DISTRIBUTIONS, object_name:ARFV_UNREV_DISTRIBUTIONS, status:VALID,
-
VIEW: APPS.ARFV_NON_REVENUE_CREDITS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_NON_REVENUE_CREDITS, object_name:ARFV_NON_REVENUE_CREDITS, status:VALID,
-
VIEW: APPS.ARFV_REVENUE_CREDITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_REVENUE_CREDITS, object_name:ARFV_REVENUE_CREDITS, status:VALID,
-
VIEW: APPS.ARFV_NON_REVENUE_CREDITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_NON_REVENUE_CREDITS, object_name:ARFV_NON_REVENUE_CREDITS, status:VALID,
-
VIEW: APPS.ARFV_REVENUE_CREDITS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_REVENUE_CREDITS, object_name:ARFV_REVENUE_CREDITS, status:VALID,
-
VIEW: APPS.ARFV_UNREV_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_UNREV_DISTRIBUTIONS, object_name:ARFV_UNREV_DISTRIBUTIONS, status:VALID,
-
VIEW: APPS.ARFV_SALES_CREDITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_SALES_CREDITS, object_name:ARFV_SALES_CREDITS, status:VALID,
-
VIEW: APPS.ARFV_TRANSACTION_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_TRANSACTION_DISTRIBUTIONS, object_name:ARFV_TRANSACTION_DISTRIBUTIONS, status:VALID,
-
VIEW: APPS.ARFV_TRANSACTION_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_TRANSACTION_DISTRIBUTIONS, object_name:ARFV_TRANSACTION_DISTRIBUTIONS, status:VALID,
-
VIEW: APPS.ARFV_SALES_CREDITS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_SALES_CREDITS, object_name:ARFV_SALES_CREDITS, status:VALID,
-
VIEW: APPS.ARFV_FREIGHT_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_FREIGHT_DISTRIBUTIONS, object_name:ARFV_FREIGHT_DISTRIBUTIONS, status:VALID,
-
VIEW: APPS.ARFV_TAX_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_TAX_DISTRIBUTIONS, object_name:ARFV_TAX_DISTRIBUTIONS, status:VALID,
-
VIEW: APPS.ARFV_REVENUE_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_REVENUE_DISTRIBUTIONS, object_name:ARFV_REVENUE_DISTRIBUTIONS, status:VALID,
-
VIEW: APPS.ARFV_TAX_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_TAX_DISTRIBUTIONS, object_name:ARFV_TAX_DISTRIBUTIONS, status:VALID,
-
VIEW: APPS.ARFV_REVENUE_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_REVENUE_DISTRIBUTIONS, object_name:ARFV_REVENUE_DISTRIBUTIONS, status:VALID,
-
VIEW: APPS.ARFV_UNREC_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_UNREC_DISTRIBUTIONS, object_name:ARFV_UNREC_DISTRIBUTIONS, status:VALID,
-
VIEW: APPS.ARFV_UNREC_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_UNREC_DISTRIBUTIONS, object_name:ARFV_UNREC_DISTRIBUTIONS, status:VALID,
-
VIEW: APPS.ARFV_FREIGHT_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_FREIGHT_DISTRIBUTIONS, object_name:ARFV_FREIGHT_DISTRIBUTIONS, status:VALID,
-
VIEW: APPS.ARFV_CREDIT_MEMO_APPLICATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_CREDIT_MEMO_APPLICATIONS, object_name:ARFV_CREDIT_MEMO_APPLICATIONS, status:VALID,
-
VIEW: APPS.ARFV_CREDIT_MEMO_APPLICATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_CREDIT_MEMO_APPLICATIONS, object_name:ARFV_CREDIT_MEMO_APPLICATIONS, status:VALID,
-
APPS.GHG_TRANSACTION_BATCHES_PKG SQL Statements
12.2.2
-
VIEW: APPS.ARFV_AR_CUSTOMER_TRANS_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_AR_CUSTOMER_TRANS_LINES, object_name:ARFV_AR_CUSTOMER_TRANS_LINES, status:VALID,
-
VIEW: APPS.ARFV_REVENUES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_REVENUES, object_name:ARFV_REVENUES, status:VALID,
-
VIEW: APPS.ARFV_CASH_APPLICATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_CASH_APPLICATIONS, object_name:ARFV_CASH_APPLICATIONS, status:VALID,
-
VIEW: APPS.ARFV_AR_CUSTOMER_TRANS_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_AR_CUSTOMER_TRANS_LINES, object_name:ARFV_AR_CUSTOMER_TRANS_LINES, status:VALID,
-
VIEW: APPS.ARFV_CASH_APPLICATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_CASH_APPLICATIONS, object_name:ARFV_CASH_APPLICATIONS, status:VALID,
-
VIEW: GHG.GHG_TRANSACTIONS_HISTORY_ALL#
12.2.2
owner:GHG, object_type:VIEW, object_name:GHG_TRANSACTIONS_HISTORY_ALL#, status:VALID,
-
VIEW: APPS.ARFV_REVENUES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_REVENUES, object_name:ARFV_REVENUES, status:VALID,
-
VIEW: GHG.GHG_TRANSACTIONS_ALL#
12.2.2
owner:GHG, object_type:VIEW, object_name:GHG_TRANSACTIONS_ALL#, status:VALID,
-
View: ARBV_AR_CUSTOMER_TRANS_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARBV_AR_CUSTOMER_TRANS_LINES, object_name:ARBV_AR_CUSTOMER_TRANS_LINES, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.ARBV_AR_CUSTOMER_TRANS_LINES ,
-
View: ARBV_AR_CUSTOMER_TRANS_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARBV_AR_CUSTOMER_TRANS_LINES, object_name:ARBV_AR_CUSTOMER_TRANS_LINES, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.ARBV_AR_CUSTOMER_TRANS_LINES ,
-
View: ARFV_NON_REVENUE_CREDITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_NON_REVENUE_CREDITS, object_name:ARFV_NON_REVENUE_CREDITS, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.ARFV_NON_REVENUE_CREDITS ,
-
VIEW: APPS.GME_INV_TXNS_TEMP_ERES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_INV_TXNS_TEMP_ERES_V, object_name:GME_INV_TXNS_TEMP_ERES_V, status:VALID,
-
View: ARFV_REVENUE_CREDITS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_REVENUE_CREDITS, object_name:ARFV_REVENUE_CREDITS, status:VALID, product: AR - Receivables , description: This shows revenue credit information for a transaction. , implementation_dba_data: APPS.ARFV_REVENUE_CREDITS ,
-
View: ARFV_NON_REVENUE_CREDITS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_NON_REVENUE_CREDITS, object_name:ARFV_NON_REVENUE_CREDITS, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.ARFV_NON_REVENUE_CREDITS ,
-
View: ARFV_CREDIT_MEMO_APPLICATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_CREDIT_MEMO_APPLICATIONS, object_name:ARFV_CREDIT_MEMO_APPLICATIONS, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.ARFV_CREDIT_MEMO_APPLICATIONS ,
-
VIEW: WMS.WMS_MATERIAL_TXN_TRACE#
12.2.2
-
View: ARFV_REVENUE_CREDITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_REVENUE_CREDITS, object_name:ARFV_REVENUE_CREDITS, status:VALID, product: AR - Receivables , description: This shows revenue credit information for a transaction. , implementation_dba_data: APPS.ARFV_REVENUE_CREDITS ,
-
View: ARFV_CREDIT_MEMO_APPLICATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_CREDIT_MEMO_APPLICATIONS, object_name:ARFV_CREDIT_MEMO_APPLICATIONS, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.ARFV_CREDIT_MEMO_APPLICATIONS ,
-
View: ARFV_SALES_CREDITS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_SALES_CREDITS, object_name:ARFV_SALES_CREDITS, status:VALID, product: AR - Receivables , description: This shows sales credit information for a transaction. , implementation_dba_data: APPS.ARFV_SALES_CREDITS ,
-
VIEW: APPS.GME_INV_TXNS_TEMP_ERES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_INV_TXNS_TEMP_ERES_V, object_name:GME_INV_TXNS_TEMP_ERES_V, status:VALID,