Search Results ce_ba_signatories
Overview
CE_BA_SIGNATORIES is a Cash Management (CE) table in Oracle E-Business Suite that stores bank account signatory information for bank accounts defined in the system. In release 12.1.1 and 12.2.2, the table resides in the CE schema and is documented as VALID under ETRM. Each row represents a single authorized signatory record attached to a specific bank account, capturing the identity of the signer, the monetary limits under which the signer may operate, the effective date range of the authorization, and the approval and status attributes governing the record. The table holds 34 documented columns in the 12.2.2 physical schema.
From a Data Vault modeling perspective, the mined foreign key structure suggests classifying this object as satellite-leaning. Its grain is the individual signatory assignment, and it hangs off the bank account parent through a foreign key, making it a descriptive, potentially historized child rather than an independent business hub or an associative link between two hubs.
Key Information Stored
The surrogate primary key is SIGNATORY_ID, enforced by the CE_BA_SIGNATORIES_PK constraint and also carried by the unique index CE_BA_SIGNATORIES_U1, which makes SIGNATORY_ID the documented business-key candidate as well as the technical identifier. The most significant columns include:
- BANK_ACCOUNT_ID — foreign key to AP_BANK_ACCOUNTS_ALL; identifies the bank account to which the signatory is attached.
- SIGNATORY_ID — surrogate primary key and unique-indexed identifier for the signatory record.
- PERSON_ID — references the person (typically a party or HR person) acting as signatory.
- SINGLE_LIMIT_AMOUNT — maximum amount the signatory may approve individually.
- JOINT_LIMIT_AMOUNT — higher threshold permitted when the signatory acts jointly with others.
- SIGNER_GROUP — grouping classification for signatories sharing authority.
- OTHER_LIMITS — free-form descriptor for additional authority constraints.
- START_DATE and END_DATE — validity window of the signatory authorization.
- STATUS — current state of the signatory record.
- APPROVAL_TYPE_FLAG — indicates the approval mode (for example, single or joint signing authority).
- DELETED_FLAG — soft-delete indicator.
- REQUESTER_ID — the user who requested or created the signatory assignment.
- Standard audit columns: CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, plus the fifteen ATTRIBUTE flex columns and ATTRIBUTE_CATEGORY.
Common Use Cases and Queries
Typical reporting scenarios include listing active signatories for a given bank account, verifying approval limits against payment amounts, and auditing signatory history by date range. A representative query joins signatories to their parent bank account:
SELECT s.signatory_id, s.person_id, s.single_limit_amount, s.joint_limit_amount, s.start_date, s.end_date, s.status FROM ce.ce_ba_signatories s WHERE s.bank_account_id = :p_account_id AND NVL(s.deleted_flag,'N') = 'N' AND TRUNC(SYSDATE) BETWEEN s.start_date AND NVL(s.end_date, TRUNC(SYSDATE)+1);- A limit-enforcement query filters records where
SINGLE_LIMIT_AMOUNT >= :payment_amountfor single-signer approvals. - An audit query orders by
LAST_UPDATE_DATE DESCto surface recently reauthorized signatories.
These queries support treasury controls, internal audit sampling, and payment authorization configuration reviews.
Related Objects
The principal parent relationship is the foreign key from CE_BA_SIGNATORIES.BANK_ACCOUNT_ID to AP_BANK_ACCOUNTS_ALL, which anchors each signatory to its bank account. Other significant related objects include:
- AP_BANK_ACCOUNTS_ALL — joined on BANK_ACCOUNT_ID; provides bank, branch, and account metadata.
- AP_BANK_BRANCHES — reached through the bank account parent for branch-level reporting.
- CE_BA_SIGNATORIES_PK / CE_BA_SIGNATORIES_U1 — the primary key constraint and unique index governing SIGNATORY_ID.
- PER_ALL_PEOPLE_F — commonly joined on PERSON_ID to resolve signatory names.
- CE Cash Management bank account setup and approval UI components that read and maintain signatory records.
Together these relationships make CE_BA_SIGNATORIES the operational store for bank account signing authority within the Cash Management module.
-
Table: CE_BA_SIGNATORIES
12.1.1
owner:CE, object_type:TABLE, fnd_design_data:CE.CE_BA_SIGNATORIES, object_name:CE_BA_SIGNATORIES, status:VALID, product: CE - Cash Management , description: This table stores the Bank Account Signatory information for a bank account , implementation_dba_data: CE.CE_BA_SIGNATORIES ,
-
Table: CE_BA_SIGNATORIES
12.2.2
owner:CE, object_type:TABLE, fnd_design_data:CE.CE_BA_SIGNATORIES, object_name:CE_BA_SIGNATORIES, status:VALID, product: CE - Cash Management , description: This table stores the Bank Account Signatory information for a bank account , implementation_dba_data: CE.CE_BA_SIGNATORIES ,
-
APPS.CE_BA_SIGNATORIES_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.CE_BA_SIGNATORIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CE_BA_SIGNATORIES, status:VALID,
-
APPS.CE_BA_SIGNATORIES_PKG SQL Statements
12.2.2
-
PACKAGE: APPS.CE_BA_SIGNATORIES_PKG
12.2.2
-
PACKAGE: APPS.CE_BA_SIGNATORIES_PKG
12.1.1
-
SYNONYM: APPS.CE_BA_SIGNATORIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CE_BA_SIGNATORIES, status:VALID,
-
PACKAGE BODY: APPS.CE_BA_SIGNATORIES_PKG
12.1.1
-
VIEW: CE.CE_BA_SIGNATORIES#
12.2.2
owner:CE, object_type:VIEW, object_name:CE_BA_SIGNATORIES#, status:VALID,
-
PACKAGE BODY: APPS.CE_BA_SIGNATORIES_PKG
12.2.2
-
VIEW: CE.CE_BA_SIGNATORIES#
12.2.2
-
VIEW: APPS.CE_BA_SIGNATORIES_V
12.1.1
-
VIEW: APPS.CE_BA_SIGNATORIES_V
12.2.2
-
Table: CE_CE_BA_SIGNATORIES
12.1.1
owner:CE, object_type:TABLE, fnd_design_data:CE.CE_CE_BA_SIGNATORIES, object_name:CE_CE_BA_SIGNATORIES, status:VALID, product: CE - Cash Management , description: This table is a backup of the ce_ba_signatories table before the bank account foreign key upgrade. , implementation_dba_data: CE.CE_CE_BA_SIGNATORIES ,
-
VIEW: APPS.CE_P_BA_SIGNATORY_HIST_V
12.2.2
-
VIEW: APPS.CE_P_BA_SIGNATORY_HIST_V
12.1.1
-
Table: CE_CE_BA_SIGNATORIES
12.2.2
owner:CE, object_type:TABLE, fnd_design_data:CE.CE_CE_BA_SIGNATORIES, object_name:CE_CE_BA_SIGNATORIES, status:VALID, product: CE - Cash Management , description: This table is a backup of the ce_ba_signatories table before the bank account foreign key upgrade. , implementation_dba_data: CE.CE_CE_BA_SIGNATORIES ,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.CE_BA_SIGNATORIES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CE_BA_SIGNATORIES_PKG, status:VALID,
-
PACKAGE BODY: APPS.CE_BA_SIGNATORIES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CE_BA_SIGNATORIES_PKG, status:VALID,
-
APPS.CE_BASIG_WF SQL Statements
12.2.2
-
TABLE: CE.CE_CE_CP_PD_BALANCES
12.1.1
owner:CE, object_type:TABLE, fnd_design_data:CE.CE_CE_CP_PD_BALANCES, object_name:CE_CE_CP_PD_BALANCES, status:VALID,
-
PACKAGE BODY: APPS.CE_BASIG_WF
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CE_BASIG_WF, status:VALID,
-
PACKAGE BODY: APPS.CE_BASIG_WF
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CE_BASIG_WF, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
TABLE: CE.CE_BA_SIGNATORIES
12.2.2
owner:CE, object_type:TABLE, fnd_design_data:CE.CE_BA_SIGNATORIES, object_name:CE_BA_SIGNATORIES, status:VALID,
-
APPS.CE_BASIG_WF SQL Statements
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
TABLE: CE.CE_BA_SIGNATORIES
12.1.1
owner:CE, object_type:TABLE, fnd_design_data:CE.CE_BA_SIGNATORIES, object_name:CE_BA_SIGNATORIES, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
View: CE_BA_SIGNATORIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_BA_SIGNATORIES_V, object_name:CE_BA_SIGNATORIES_V, status:VALID, product: CE - Cash Management , description: A supplementary view used to simplify forms coding. Used by Bank Account Signatory form , implementation_dba_data: APPS.CE_BA_SIGNATORIES_V ,
-
View: CE_BA_SIGNATORIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_BA_SIGNATORIES_V, object_name:CE_BA_SIGNATORIES_V, status:VALID, product: CE - Cash Management , description: A supplementary view used to simplify forms coding. Used by Bank Account Signatory form , implementation_dba_data: APPS.CE_BA_SIGNATORIES_V ,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
TABLE: CE.CE_CE_BA_SIGNATORIES
12.2.2
owner:CE, object_type:TABLE, fnd_design_data:CE.CE_CE_BA_SIGNATORIES, object_name:CE_CE_BA_SIGNATORIES, status:VALID,
-
TABLE: CE.CE_CE_BA_SIGNATORIES
12.1.1
owner:CE, object_type:TABLE, fnd_design_data:CE.CE_CE_BA_SIGNATORIES, object_name:CE_CE_BA_SIGNATORIES, status:VALID,
-
TABLE: CE.CE_CE_CP_PD_BALANCES
12.2.2
owner:CE, object_type:TABLE, fnd_design_data:CE.CE_CE_CP_PD_BALANCES, object_name:CE_CE_CP_PD_BALANCES, status:VALID,
-
VIEW: APPS.CE_P_BA_SIGNATORY_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_P_BA_SIGNATORY_HIST_V, object_name:CE_P_BA_SIGNATORY_HIST_V, status:VALID,
-
VIEW: APPS.CE_P_BA_SIGNATORY_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_P_BA_SIGNATORY_HIST_V, object_name:CE_P_BA_SIGNATORY_HIST_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
View: CE_P_BA_SIGNATORY_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_P_BA_SIGNATORY_HIST_V, object_name:CE_P_BA_SIGNATORY_HIST_V, status:VALID, product: CE - Cash Management , description: Public view to show consolidated information of the bank account signatory's history for audit purposes , implementation_dba_data: APPS.CE_P_BA_SIGNATORY_HIST_V ,
-
View: CE_P_BA_SIGNATORY_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_P_BA_SIGNATORY_HIST_V, object_name:CE_P_BA_SIGNATORY_HIST_V, status:VALID, product: CE - Cash Management , description: Public view to show consolidated information of the bank account signatory's history for audit purposes , implementation_dba_data: APPS.CE_P_BA_SIGNATORY_HIST_V ,
-
12.1.1 DBA Data
12.1.1
-
Table: AP_BANK_ACCOUNTS_ALL
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_BANK_ACCOUNTS_ALL, object_name:AP_BANK_ACCOUNTS_ALL, status:VALID, product: AP - Payables , implementation_dba_data: AP.AP_BANK_ACCOUNTS_ALL ,
-
Table: AP_BANK_ACCOUNTS_ALL
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_BANK_ACCOUNTS_ALL, object_name:AP_BANK_ACCOUNTS_ALL, status:VALID, product: AP - Payables , implementation_dba_data: AP.AP_BANK_ACCOUNTS_ALL ,
-
VIEW: APPS.CE_BA_SIGNATORIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_BA_SIGNATORIES_V, object_name:CE_BA_SIGNATORIES_V, status:VALID,
-
VIEW: APPS.CE_BA_SIGNATORIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_BA_SIGNATORIES_V, object_name:CE_BA_SIGNATORIES_V, status:VALID,