Search Results misc_credit
Overview
APPS.XTR_BIS_CASHFLOWS_V is a Treasury (ETRM) reporting view in Oracle E-Business Suite 12.1.1 and 12.2.2. It presents a consolidated, presentation-ready feed of Treasury cash flows by unioning three distinct data sources: cash-flow rows sourced from XTR_CASHFLOWS_V, deal date/amount rows derived from XTR_DEAL_DATE_AMOUNTS (restricted to DEAL_TYPE = 'CA'), and intra-statement lines from CE_INTRA_STMT_LINES joined to CE_INTRA_STMT_HEADERS. A defining characteristic is that it returns only rows with a transaction date on or after the current system date (ca.TRX_DATE >= trunc(SYSDATE)), making it a forward-looking cash-flow view rather than a historical ledger.
The view carries a "BIS" prefix, indicating it is part of the Business Intelligence / reporting layer of ETRM, intended for exposure to BI Publisher reports, dashboards, and downstream integration. It exposes deal number, deal type and subtype, transaction rate, status, currency, transaction date, amount, bank, company, counterparty, and client attributes in a uniform column structure across all three contributing legs.
Underlying Base Objects
The view is defined over a documented set of Treasury and Cash Management synonyms and views, including XTR_CASHFLOWS_V, XTR_DEAL_DATE_AMOUNTS, XTR_DEAL_TYPES, XTR_DEAL_SUBTYPES, XTR_AMOUNT_TYPES, XTR_BANK_ACCOUNTS, XTR_PARTIES_V, XTR_PARTY_INFO, CE_BANK_ACCOUNTS, CE_INTRA_STMT_HEADERS, CE_INTRA_STMT_LINES, CE_LOOKUPS, GL_LEDGER_LE_V, HR_OPERATING_UNITS, FND_LOOKUPS, FND_GLOBAL and XTR_USER_ACCESS. The first leg joins XTR_CASHFLOWS_V to XTR_PARTIES_V on COMPANY_CODE = PARTY_CODE. The second leg joins XTR_DEAL_DATE_AMOUNTS to XTR_DEAL_TYPES, XTR_DEAL_SUBTYPES, XTR_AMOUNT_TYPES, XTR_PARTIES_V and XTR_BANK_ACCOUNTS to resolve user-facing deal/amount type descriptions and bank/account details. The third leg resolves intra-day bank statement lines into Treasury receipt/payment semantics using the statement header and a DECODE mapping over intra.TRX_TYPE. This design allows the view to combine Treasury deal transactions with bank statement activity in a single result set.
Key Columns
- DEAL_NUMBER / STATEMENT_NUMBER — Identifier of the Treasury deal or bank statement; the first SELECT returns TO_CHAR(CA.DEAL_NUMBER) while the third returns the statement number.
- DEAL_TYPE / DEAL_SUBTYPE / TYPE_OF_AMOUNT / AMOUNT_TYPE — Classifiers describing the nature of the cash flow; values such as 'INTRA', 'RECEIPT', 'PAYMENT' appear for statement-derived rows.
- TRANSACTION_RATE / STATUS_CODE / CURRENCY_CODE — Rate, status and currency of the flow; intra rows expose CURRENCY_CODE as 'CURRENT' plus the account currency.
- TRX_DATE / AMOUNT — Effective date and signed amount. Amounts are decoded so that INVEST subtypes remain positive while others are negated (-1 * amount).
- BANK_CODE / COMPANY_CODE / COMPANY_ACCOUNT / SHORT_NAME — Bank, company and account context; SHORT_NAME is drawn from XTR_PARTIES_V.
- CPARTY_CODE / CLIENT_CODE / PORTFOLIO_CODE / PRODUCT_TYPE — Counterparty, client and portfolio attributes.
- DEALER / SETTLE / MULTIPLE_SETTLEMENTS — Settlement and dealer attribution fields.
Common Use Cases and Queries
The view is commonly used to drive Treasury cash-flow forecasting, liquidity reporting and BI Publisher extracts where only future-dated flows are of interest. Because it normalises Treasury and intra-day bank statement data into one column structure, it is well suited to consolidated position reports and reconciliation dashboards.
Typical query for MIS_CREDIT-related receipts:
SELECT DEAL_NUMBER, DEAL_SUBTYPE, CURRENCY_CODE, TRX_DATE, AMOUNT FROM APPS.XTR_BIS_CASHFLOWS_V WHERE DEAL_SUBTYPE = 'RECEIPT' ORDER BY TRX_DATE;SELECT COMPANY_CODE, CURRENCY_CODE, SUM(AMOUNT) FROM APPS.XTR_BIS_CASHFLOWS_V WHERE TRX_DATE BETWEEN :from_date AND :to_date GROUP BY COMPANY_CODE, CURRENCY_CODE;
The 'MISC_CREDIT' token appears in the third union leg, where intra-statement transaction types are decoded—'MISC_CREDIT' maps to 'RECEIPT'—so searches for misc_credit resolve to receipt-type rows within intra-day statement cash flows. Note that the documented excerpt shows the third leg's decode only partially, so the full mapping of all TRX_TYPE values should be confirmed against the actual view text in the instance.
-
VIEW: APPS.XTR_BIS_CASHFLOWS_V
12.2.2
-
VIEW: APPS.XTR_BIS_CASHFLOWS_V
12.1.1
-
View: XTR_BIS_CASHFLOWS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_BIS_CASHFLOWS_V, object_name:XTR_BIS_CASHFLOWS_V, status:VALID, product: XTR - Treasury , description: This view shows the cashflows generated by deals with CURRENT status. You can use this view to see the net cashflow and cash book summaries. , implementation_dba_data: APPS.XTR_BIS_CASHFLOWS_V ,
-
View: XTR_BIS_CASHFLOWS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_BIS_CASHFLOWS_V, object_name:XTR_BIS_CASHFLOWS_V, status:VALID, product: XTR - Treasury , description: This view shows the cashflows generated by deals with CURRENT status. You can use this view to see the net cashflow and cash book summaries. , implementation_dba_data: APPS.XTR_BIS_CASHFLOWS_V ,
-
VIEW: APPS.CE_STATEMENT_LINES_V
12.1.1
-
VIEW: APPS.CE_STATEMENT_LINES_V
12.2.2
-
VIEW: APPS.CE_INTRA_STMT_HDRS_LINES_V
12.1.1
-
Lookup Type: BANK_TRX_TYPE
12.1.1
product: CE - Cash Management , meaning: Bank Trx Type , description: Bank Trx Type ,
-
Lookup Type: BANK_TRX_TYPE
12.2.2
product: CE - Cash Management , meaning: Bank Trx Type , description: Bank Trx Type ,
-
VIEW: APPS.CE_INTRA_STMT_HDRS_LINES_V
12.2.2
-
View: CE_STATEMENT_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_STATEMENT_LINES_V, object_name:CE_STATEMENT_LINES_V, status:VALID, product: CE - Cash Management , description: - Retrofitted , implementation_dba_data: APPS.CE_STATEMENT_LINES_V ,
-
View: CE_STATEMENT_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_STATEMENT_LINES_V, object_name:CE_STATEMENT_LINES_V, status:VALID, product: CE - Cash Management , description: - Retrofitted , implementation_dba_data: APPS.CE_STATEMENT_LINES_V ,
-
APPS.CE_CEXSTMRR_XMLP_PKG SQL Statements
12.1.1
-
APPS.CE_CEXSTMRR_XMLP_PKG SQL Statements
12.2.2
-
VIEW: APPS.CE_260_RECONCILED_V
12.1.1
-
VIEW: APPS.CE_260_RECONCILED_V
12.2.2
-
VIEW: APPS.CE_260_TRANSACTIONS_V
12.2.2
-
VIEW: APPS.CE_260_TRANSACTIONS_V
12.1.1
-
View: CE_INTRA_STMT_HDRS_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_INTRA_STMT_HDRS_LINES_V, object_name:CE_INTRA_STMT_HDRS_LINES_V, status:VALID, product: CE - Cash Management , description: The CE_INTRA_STMT_HDRS_LINES_V view contains intra-day bank statement headers and lines information. This view is used in cash positioning. , implementation_dba_data: APPS.CE_INTRA_STMT_HDRS_LINES_V ,
-
View: CE_INTRA_STMT_HDRS_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_INTRA_STMT_HDRS_LINES_V, object_name:CE_INTRA_STMT_HDRS_LINES_V, status:VALID, product: CE - Cash Management , description: The CE_INTRA_STMT_HDRS_LINES_V view contains intra-day bank statement headers and lines information. This view is used in cash positioning. , implementation_dba_data: APPS.CE_INTRA_STMT_HDRS_LINES_V ,
-
APPS.CE_AUTO_BANK_IMPORT SQL Statements
12.2.2
-
APPS.CE_AUTO_BANK_IMPORT SQL Statements
12.1.1
-
View: CE_260_RECONCILED_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_260_RECONCILED_V, object_name:CE_260_RECONCILED_V, status:VALID, product: CE - Cash Management , description: Reconciled statement lines for unreconciling , implementation_dba_data: APPS.CE_260_RECONCILED_V ,
-
PACKAGE BODY: APPS.CE_CEXSTMRR_XMLP_PKG
12.1.1
-
PACKAGE BODY: APPS.CE_CEXSTMRR_XMLP_PKG
12.2.2
-
View: CE_260_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_260_TRANSACTIONS_V, object_name:CE_260_TRANSACTIONS_V, status:VALID, product: CE - Cash Management , description: Available statement lines for reconciliation , implementation_dba_data: APPS.CE_260_TRANSACTIONS_V ,
-
View: CE_260_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_260_TRANSACTIONS_V, object_name:CE_260_TRANSACTIONS_V, status:VALID, product: CE - Cash Management , description: Available statement lines for reconciliation , implementation_dba_data: APPS.CE_260_TRANSACTIONS_V ,
-
View: CE_260_RECONCILED_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_260_RECONCILED_V, object_name:CE_260_RECONCILED_V, status:VALID, product: CE - Cash Management , description: Reconciled statement lines for unreconciling , implementation_dba_data: APPS.CE_260_RECONCILED_V ,
-
APPS.CE_AUTO_BANK_MATCH SQL Statements
12.2.2
-
APPS.CE_AUTO_BANK_MATCH SQL Statements
12.1.1
-
PACKAGE BODY: APPS.JG_ZZ_AERL_DT_PKG
12.1.1
-
APPS.CE_COPY_TRX_CODES_XML SQL Statements
12.2.2
-
PACKAGE BODY: APPS.JG_ZZ_AERL_DT_PKG
12.2.2
-
PACKAGE: APPS.CE_TRANSACTION_CODES_PKG
12.1.1
-
PACKAGE: APPS.CE_TRANSACTION_CODES_PKG
12.2.2
-
PACKAGE BODY: APPS.CE_AUTO_BANK_MATCH
12.1.1
-
PACKAGE BODY: APPS.CE_AUTO_BANK_MATCH
12.2.2
-
PACKAGE BODY: APPS.CE_COPY_TRX_CODES_XML
12.2.2
-
PACKAGE BODY: APPS.CE_AUTO_BANK_IMPORT
12.1.1
-
PACKAGE BODY: APPS.CE_AUTO_BANK_CLEAR1
12.1.1
-
PACKAGE BODY: APPS.CE_AUTO_BANK_IMPORT
12.2.2
-
PACKAGE BODY: APPS.CE_AUTO_BANK_CLEAR1
12.2.2
-
PACKAGE BODY: APPS.CE_AUTO_BANK_CLEAR
12.1.1
-
PACKAGE BODY: APPS.CE_AUTO_BANK_CLEAR
12.2.2
-
PACKAGE BODY: APPS.CE_TRANSACTION_CODES_PKG
12.1.1
-
PACKAGE BODY: APPS.CE_TRANSACTION_CODES_PKG
12.2.2
-
PACKAGE BODY: APPS.CE_STAT_LINES_DML_PKG
12.2.2
-
PACKAGE BODY: APPS.CE_STAT_LINES_DML_PKG
12.1.1
-
PACKAGE BODY: APPS.CE_JE_CREATION
12.1.1
-
APPS.JG_ZZ_AERL_DT_PKG dependencies on AR_CASH_RECEIPTS_ALL
12.2.2