Search Results ce_statement_recon_gt_v
Overview
CE_STATEMENT_RECON_GT_V is a security-filtered view owned by the APPS schema in Oracle Cash Management (CE). It exposes reconciliation records from the bank statement reconciliation process, presenting the data that links bank statement lines to the underlying transactions they have been reconciled against. The view derives its name from the "_GT" suffix convention, indicating that it is designed to operate in conjunction with a global temporary table used by the Cash Management security profile mechanism. Rather than returning all reconciliation rows in the database, the view restricts the result set to those records that fall within the organization and legal entity access privileges defined by the current user's Cash Management security profile.
This view plays a supporting role in Cash Management reporting, reconciliation inquiries, and integration flows where the application must present only the reconciliation activity that the logged-in user is authorized to see. It is particularly relevant to multi-organization deployments in Oracle EBS 12.1.1 and 12.2.2, where data segregation by operating unit, business group, and legal entity is enforced at query time.
Underlying Base Objects
The view is defined over a single primary base object, CE_STATEMENT_RECONCILS_ALL, which stores the reconciliation relationships between bank statement lines and the transactions, journal lines, or other reference records they reconcile. The documented referenced objects are:
- CE_STATEMENT_RECONCILS_ALL (SYNONYM) — the primary source of reconciliation rows.
- CE_SECURITY_PROFILES_GT (SYNONYM) — the global temporary table populated with the current user's authorized organization and legal entity identifiers.
The view applies an OR-based predicate against these two objects. Rows are returned when the reconciliation record's ORG_ID matches an organization in the security profile whose ORGANIZATION_TYPE is 'BUSINESS_GROUP' or 'OPERATING_UNIT', when its LEGAL_ENTITY_ID matches a profile entry of type 'LEGAL_ENTITY', or when the REFERENCE_TYPE is one of 'JE_LINE', 'ROI_LINE', or 'STATEMENT'. This third branch ensures that certain reconciliation record types are always accessible regardless of organization or legal entity filtering, reflecting their cross-organizational nature.
Key Columns
- STATEMENT_LINE_ID — Identifier of the bank statement line involved in the reconciliation.
- REFERENCE_TYPE / REFERENCE_ID — The type and identifier of the record reconciled to the statement line (for example, JE_LINE, ROI_LINE, or STATEMENT).
- JE_HEADER_ID — Journal entry header associated with the reconciliation, where applicable.
- ORG_ID / LEGAL_ENTITY_ID — The operating unit and legal entity used for security filtering.
- REFERENCE_STATUS, STATUS_FLAG, ACTION_FLAG — State indicators describing the reconciliation's progress and the action taken.
- CURRENT_RECORD_FLAG — Indicates whether the row is the current effective reconciliation record.
- AUTO_RECONCILED_FLAG — Distinguishes records created by automatic reconciliation from those created manually.
- AMOUNT — The reconciled amount.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — Concurrent program audit columns identifying the process that created or last updated the row.
- Standard WHO columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE) and ROWID.
Common Use Cases and Queries
The view is typically used in reconciliation inquiries, custom security-aware reports, and integration extracts where only authorized reconciliation data should be surfaced.
Retrieve reconciliations for a specific statement line:
SELECT statement_line_id, reference_type, reference_id, amount,
status_flag, auto_reconciled_flag
FROM apps.ce_statement_recon_gt_v
WHERE statement_line_id = :p_statement_line_id;
List auto-reconciled records visible to the current user:
SELECT reference_type, reference_id, org_id, legal_entity_id, amount FROM apps.ce_statement_recon_gt_v WHERE auto_reconciled_flag = 'Y' AND current_record_flag = 'Y';
Because the underlying security profile global temporary table is populated by the Cash Management security initialization, queries should be executed within an initialized session so the ORG_ID and LEGAL_ENTITY_ID predicates resolve correctly.
-
View: CE_STATEMENT_RECON_GT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_STATEMENT_RECON_GT_V, object_name:CE_STATEMENT_RECON_GT_V, status:VALID, product: CE - Cash Management , implementation_dba_data: APPS.CE_STATEMENT_RECON_GT_V ,
-
View: CE_STATEMENT_RECON_GT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_STATEMENT_RECON_GT_V, object_name:CE_STATEMENT_RECON_GT_V, status:VALID, product: CE - Cash Management , implementation_dba_data: APPS.CE_STATEMENT_RECON_GT_V ,
-
APPS.CE_STATEMENT_RECONS_PKG SQL Statements
12.1.1
-
APPS.CE_STATEMENT_RECONS_PKG SQL Statements
12.2.2
-
APPS.CE_AUTO_BANK_CLEAR SQL Statements
12.2.2
-
APPS.CE_AUTO_BANK_CLEAR SQL Statements
12.1.1
-
PACKAGE BODY: APPS.CE_STATEMENT_RECONS_PKG
12.1.1
-
PACKAGE BODY: APPS.CE_STATEMENT_RECONS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CE_STATEMENT_RECONS_PKG, status:VALID,
-
PACKAGE BODY: APPS.CE_CEPURGE_XMLP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CE_CEPURGE_XMLP_PKG, status:VALID,
-
PACKAGE BODY: APPS.CE_STATEMENT_RECONS_PKG
12.2.2
-
PACKAGE BODY: APPS.CE_PURGE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CE_PURGE, status:VALID,
-
PACKAGE BODY: APPS.CE_STATEMENT_RECONS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CE_STATEMENT_RECONS_PKG, status:VALID,
-
SYNONYM: APPS.CE_STATEMENT_RECONCILS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CE_STATEMENT_RECONCILS_ALL, status:VALID,
-
PACKAGE BODY: APPS.CE_CEPURGE_XMLP_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CE_CEPURGE_XMLP_PKG, status:VALID,
-
PACKAGE BODY: APPS.CE_AUTO_BANK_CLEAR
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CE_AUTO_BANK_CLEAR, status:VALID,
-
SYNONYM: APPS.CE_STATEMENT_RECONCILS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CE_STATEMENT_RECONCILS_ALL, status:VALID,
-
PACKAGE BODY: APPS.CE_AUTO_BANK_CLEAR
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CE_AUTO_BANK_CLEAR, status:VALID,
-
SYNONYM: APPS.CE_SECURITY_PROFILES_GT
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CE_SECURITY_PROFILES_GT, status:VALID,
-
SYNONYM: APPS.CE_SECURITY_PROFILES_GT
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CE_SECURITY_PROFILES_GT, status:VALID,
-
PACKAGE BODY: APPS.ARP_PROCESS_RCTS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ARP_PROCESS_RCTS, status:VALID,
-
PACKAGE BODY: APPS.CE_AUTO_BANK_CLEAR1
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CE_AUTO_BANK_CLEAR1, status:VALID,
-
PACKAGE BODY: APPS.CE_AUTO_BANK_CLEAR1
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CE_AUTO_BANK_CLEAR1, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.CE_STATEMENT_RECON_GT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_STATEMENT_RECON_GT_V, object_name:CE_STATEMENT_RECON_GT_V, status:VALID,
-
VIEW: APPS.CE_STATEMENT_RECON_GT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_STATEMENT_RECON_GT_V, object_name:CE_STATEMENT_RECON_GT_V, status:VALID,
-
APPS.CE_STATEMENT_RECONS_PKG dependencies on CE_STATEMENT_RECON_GT_V
12.2.2
-
APPS.ARP_PROCESS_RCTS dependencies on CE_STATEMENT_RECON_GT_V
12.1.1
-
APPS.CE_AUTO_BANK_CLEAR1 dependencies on CE_STATEMENT_RECON_GT_V
12.1.1
-
APPS.CE_AUTO_BANK_CLEAR dependencies on CE_STATEMENT_RECON_GT_V
12.2.2
-
APPS.CE_PURGE dependencies on CE_STATEMENT_RECON_GT_V
12.2.2
-
APPS.CE_CEPURGE_XMLP_PKG dependencies on CE_STATEMENT_RECON_GT_V
12.1.1
-
APPS.CE_STATEMENT_RECONS_PKG dependencies on CE_STATEMENT_RECON_GT_V
12.1.1
-
APPS.CE_CEPURGE_XMLP_PKG dependencies on CE_STATEMENT_RECON_GT_V
12.2.2
-
APPS.CE_AUTO_BANK_CLEAR dependencies on CE_STATEMENT_RECON_GT_V
12.1.1
-
APPS.CE_AUTO_BANK_CLEAR1 dependencies on CE_STATEMENT_RECON_GT_V
12.2.2
-
APPS.ARP_PROCESS_RCTS SQL Statements
12.1.1
-
PACKAGE BODY: APPS.ARP_PROCESS_RCTS
12.1.1
-
PACKAGE BODY: APPS.CE_AUTO_BANK_CLEAR
12.2.2
-
APPS.CE_AUTO_BANK_CLEAR1 SQL Statements
12.2.2
-
APPS.CE_AUTO_BANK_CLEAR1 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.CE_AUTO_BANK_CLEAR
12.1.1
-
APPS.ARP_PROCESS_RCTS dependencies on CEP_STANDARD
12.1.1
-
APPS.CE_CEPURGE_XMLP_PKG SQL Statements
12.2.2
-
APPS.CE_CEPURGE_XMLP_PKG SQL Statements
12.1.1
-
APPS.CE_STATEMENT_RECONS_PKG dependencies on STANDARD
12.1.1
-
APPS.CE_STATEMENT_RECONS_PKG dependencies on CEP_STANDARD
12.2.2
-
APPS.ARP_PROCESS_RCTS dependencies on CE_STATEMENT_HEADERS
12.1.1