Search Results trans_num
Overview
XTR_VALIDATE_TRANSACTIONS_V is a Treasury (XTR) reporting view in Oracle E-Business Suite 12.1.1 and 12.2.2 that consolidates Treasury deal and transaction records into a single validation-oriented result set. Its distinguishing feature is a discriminator column named VALIDATE_TYPE, which classifies each row as one of three categories: TRANS, DEAL, or SETTLE. This design allows Treasury validation and authorization processes to query one unified structure rather than three separate source views, simplifying the identification of records awaiting dual authorization or settlement validation.
The view is documented as not implemented at the database level in the source environment, and no base objects are formally registered against it in the ETRM metadata. Nevertheless, its view text is fully defined and references other Treasury views. The view serves as a logical reporting and integration layer, exposing deal-level attributes alongside user-friendly deal type and subtype descriptions resolved from configuration tables.
Underlying Base Objects
The view text is constructed from three branches combined with UNION ALL:
XTR_ROLLOVER_TRANSACTIONS_V(aliased A) — supplies theTRANSbranch, restricted to deal typesONCandCMF.XTR_DEALS_V(aliased A) — supplies both theDEALbranch (deal types not inONC/CMF) and theSETTLEbranch, the latter additionally filtered by a non-nullDUAL_AUTHORISATION_BYand a non-nullSETTLE_DATE.XTR_DEAL_TYPES(aliased DT) — configuration table joined onDEAL_TYPEto resolveUSER_DEAL_TYPE.XTR_DEAL_SUBTYPES(aliased ST) — configuration table joined on the composite keyDEAL_TYPEandDEAL_SUBTYPEto resolveUSER_DEAL_SUBTYPE.
All three branches share identical join predicates against the deal type and subtype configuration tables, ensuring consistent descriptive enrichment across the union.
Key Columns
VALIDATE_TYPE— the union discriminator; values areTRANS,DEAL, orSETTLE. This is the principal filter column.DEAL_NUM— deal number, sourced fromDEAL_NUMBER(transactions branch) orDEAL_NO(deals branch).TRANS_NUM— transaction number, sourced fromTRANSACTION_NUMBERorTRANSACTION_NO.CPARTY_CODE— counterparty code associated with the deal.DEAL_TYPE/USER_DEAL_TYPE— internal code and its user-facing description.DEAL_SUBTYPE/USER_DEAL_SUBTYPE— internal subtype code and its user-facing description.PRODUCT_TYPE— Treasury product classification.DEAL_DATE— date of the deal.DUAL_AUTHORISATION_BY/DUAL_AUTHORISATION_ON— for theSETTLEbranch these are drawn fromSETTLE_DUAL_AUTHORISATION_BYandSETTLE_DUAL_AUTHORISATION_ON, reflecting settlement authorization rather than deal authorization.
Common Use Cases and Queries
The view supports pending-authorization reporting, settlement reconciliation, and integration extracts where a single, categorized feed of Treasury activity is required. Because VALIDATE_TYPE partitions the data, consumers can isolate the population relevant to each stage.
Retrieving all pending settlement validations:
SELECT validate_type, deal_num, trans_num, cparty_code,
user_deal_type, user_deal_subtype,
dual_authorisation_by, dual_authorisation_on
FROM xtr_validate_transactions_v
WHERE validate_type = 'SETTLE';
Counting records by validation category for a dashboard:
SELECT validate_type, COUNT(*) rec_count FROM xtr_validate_transactions_v GROUP BY validate_type;
Locating deals of a specific user-facing type and subtype:
SELECT deal_num, trans_num, deal_date, product_type FROM xtr_validate_transactions_v WHERE user_deal_type = :p_deal_type AND user_deal_subtype = :p_subtype AND validate_type = 'DEAL';
Because the view is documented as not implemented in the source database, administrators should confirm its presence and validity in each target instance before relying on it in concurrent programs, BI Publisher reports, or outbound interfaces.
-
View: XTR_VALIDATE_TRANSACTIONS_V
12.2.2
product: XTR - Treasury , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.XTR_CANCELLED_TRANSACTIONS_V
12.2.2
-
View: XTR_LINKED_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_LINKED_TRANSACTIONS_V, object_name:XTR_LINKED_TRANSACTIONS_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_LINKED_TRANSACTIONS_V ,
-
View: XTR_VALIDATE_TRANSACTIONS_V
12.1.1
product: XTR - Treasury , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.XTR_TAX_BROKERAGE_DETAILS_V
12.2.2
-
View: XTR_CANCELLED_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_CANCELLED_TRANSACTIONS_V, object_name:XTR_CANCELLED_TRANSACTIONS_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_CANCELLED_TRANSACTIONS_V ,
-
View: XTR_TAX_BROKERAGE_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_TAX_BROKERAGE_DETAILS_V, object_name:XTR_TAX_BROKERAGE_DETAILS_V, status:VALID, product: XTR - Treasury , description: Witholding tax and brokerage fee settlement amount due information , implementation_dba_data: APPS.XTR_TAX_BROKERAGE_DETAILS_V ,
-
VIEW: APPS.XTR_CANCELLED_TRANSACTIONS_V
12.1.1
-
VIEW: JL.JL_BR_JOURNALS_ALL#
12.2.2
-
VIEW: APPS.XTR_TAX_BROKERAGE_DETAILS_V
12.1.1
-
View: XTR_CANCELLED_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_CANCELLED_TRANSACTIONS_V, object_name:XTR_CANCELLED_TRANSACTIONS_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_CANCELLED_TRANSACTIONS_V ,
-
View: XTR_TAX_BROKERAGE_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_TAX_BROKERAGE_DETAILS_V, object_name:XTR_TAX_BROKERAGE_DETAILS_V, status:VALID, product: XTR - Treasury , description: Witholding tax and brokerage fee settlement amount due information , implementation_dba_data: APPS.XTR_TAX_BROKERAGE_DETAILS_V ,
-
VIEW: APPS.IGI_CBR_ARC_RECONCILE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_CBR_ARC_RECONCILE_V, object_name:IGI_CBR_ARC_RECONCILE_V, status:VALID,
-
VIEW: APPS.XTR_LINKED_TRANSACTIONS_V
12.2.2
-
VIEW: APPS.XTR_LINKED_TRANSACTIONS_V
12.1.1
-
View: XTR_LINKED_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_LINKED_TRANSACTIONS_V, object_name:XTR_LINKED_TRANSACTIONS_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_LINKED_TRANSACTIONS_V ,
-
VIEW: APPS.IGI_CBR_ARC_RECONCILE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_CBR_ARC_RECONCILE_V, object_name:IGI_CBR_ARC_RECONCILE_V, status:VALID,
-
View: IGI_CBR_ARC_RECONCILE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_CBR_ARC_RECONCILE_V, object_name:IGI_CBR_ARC_RECONCILE_V, status:VALID, product: IGI - Public Sector Financials International , description: This is an intermediate view for the AR reconciliation process. Used by IGI_CBR_ARC_V. , implementation_dba_data: APPS.IGI_CBR_ARC_RECONCILE_V ,
-
VIEW: APPS.XTR_CANCELLED_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_CANCELLED_TRANSACTIONS_V, object_name:XTR_CANCELLED_TRANSACTIONS_V, status:VALID,
-
View: IGI_CBR_ARC_RECONCILE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_CBR_ARC_RECONCILE_V, object_name:IGI_CBR_ARC_RECONCILE_V, status:VALID, product: IGI - Public Sector Financials International , description: This is an intermediate view for the AR reconciliation process. Used by IGI_CBR_ARC_V. , implementation_dba_data: APPS.IGI_CBR_ARC_RECONCILE_V ,
-
VIEW: APPS.XTR_CANCELLED_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_CANCELLED_TRANSACTIONS_V, object_name:XTR_CANCELLED_TRANSACTIONS_V, status:VALID,
-
VIEW: JL.JL_BR_JOURNALS_ALL#
12.2.2
owner:JL, object_type:VIEW, object_name:JL_BR_JOURNALS_ALL#, status:VALID,
-
VIEW: APPS.XTR_LINKED_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_LINKED_TRANSACTIONS_V, object_name:XTR_LINKED_TRANSACTIONS_V, status:VALID,
-
VIEW: APPS.XTR_LINKED_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_LINKED_TRANSACTIONS_V, object_name:XTR_LINKED_TRANSACTIONS_V, status:VALID,
-
VIEW: APPS.IGI_CBR_ARC_RECONCILE_V
12.2.2
-
VIEW: APPS.XTR_TAX_BROKERAGE_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_TAX_BROKERAGE_DETAILS_V, object_name:XTR_TAX_BROKERAGE_DETAILS_V, status:VALID,
-
VIEW: APPS.XTR_TAX_BROKERAGE_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_TAX_BROKERAGE_DETAILS_V, object_name:XTR_TAX_BROKERAGE_DETAILS_V, status:VALID,
-
VIEW: APPS.IGI_CBR_ARC_RECONCILE_V
12.1.1
-
TABLE: JL.JL_BR_JOURNALS_ALL
12.1.1
owner:JL, object_type:TABLE, fnd_design_data:JL.JL_BR_JOURNALS_ALL, object_name:JL_BR_JOURNALS_ALL, status:VALID,
-
TABLE: JL.JL_BR_JOURNALS_ALL
12.2.2
owner:JL, object_type:TABLE, fnd_design_data:JL.JL_BR_JOURNALS_ALL, object_name:JL_BR_JOURNALS_ALL, status:VALID,
-
APPS.JL_BR_AP_BALANCE_MAINTENANCE SQL Statements
12.2.2
-
APPS.JL_BR_AP_BALANCE_MAINTENANCE SQL Statements
12.1.1
-
APPS.AP_GET_SUPPLIER_BALANCE_PKG SQL Statements
12.2.2
-
APPS.AP_GET_SUPPLIER_BALANCE_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AR_EXCHANGE_INTERFACE_PKG
12.2.2
-
PACKAGE BODY: APPS.AR_EXCHANGE_INTERFACE_PKG
12.1.1
-
PACKAGE BODY: APPS.JL_BR_AP_BALANCE_MAINTENANCE
12.2.2
-
PACKAGE BODY: APPS.JL_BR_AP_BALANCE_MAINTENANCE
12.1.1
-
APPS.JL_BR_AR_BALANCE_MAINTENANCE SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AP_GET_SUPPLIER_BALANCE_PKG
12.2.2
-
APPS.JL_BR_AR_BALANCE_MAINTENANCE SQL Statements
12.2.2
-
APPS.AR_EXCHANGE_INTERFACE_PKG SQL Statements
12.1.1
-
APPS.AR_EXCHANGE_INTERFACE_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.AP_GET_SUPPLIER_BALANCE_PKG
12.1.1
-
PACKAGE BODY: APPS.JL_BR_AR_BALANCE_MAINTENANCE
12.2.2
-
PACKAGE BODY: APPS.JL_BR_AR_BALANCE_MAINTENANCE
12.1.1
-
APPS.AR_UNACCOUNTED_TRX_SWEEP SQL Statements
12.2.2
-
APPS.AP_PERIOD_CLOSE_PKG SQL Statements
12.2.2
-
APPS.AP_PERIOD_CLOSE_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.XTR_MAINTAIN_DDA_P
12.2.2