Search Results last_used_number_1
Overview
IBY_ACCT_PMT_PROFILES_B is a core configuration table in the Oracle Payments (IBY) module of Oracle E-Business Suite, present in both release 12.1.1 and 12.2.2. It stores account-level payment profile information that completes the specification of how payment instructions are handled for a given payment profile. Entries in this table are derived from, and layered on top of, entries in the system-level IBY_SYS_PMT_PROFILES table; the combination of the system profile and the account profile determines the effective processing behavior used during payment instruction creation and formatting.
The table is owned by the IBY schema and is classified as VALID. Because payment profiles are an optional, additive refinement keyed to a single owning entity, the heuristic Data Vault classification of this table is satellite-leaning. In a Data Vault model this would suggest treating the profile as a satellite attached to its business key rather than an independent hub or a link between equal-weight entities.
Key Information Stored
The table contains 24 documented columns, of which the primary-key and business-critical attributes are the most significant:
- PAYMENT_PROFILE_ID — Surrogate primary key, enforced by IBY_ACCT_PMT_PROFILES_B_PK. It is also the leading column of the unique index IBY_ACCT_PMT_PROFILES_B_U1 (PAYMENT_PROFILE_ID, ZD_EDITION_NAME), making it the business-key candidate for edition-aware lookups.
- SYSTEM_PROFILE_CODE — Foreign key to IBY_SYS_PMT_PROFILES_B, tying the account-level profile to its underlying system-level template.
- BEP_ACCOUNT_ID — Foreign key to IBY_BEPKEYS, identifying the payment system (bank exchange profile) account used by the profile.
- TRANSMIT_CONFIGURATION_ID — Foreign key to IBY_TRANSMIT_CONFIGS_B, specifying the transmission configuration applied to outbound instructions.
- SECURITY_CONFIGURATION_ID and ACK_SEC_CONFIG_ID — Security configuration references used for outbound payload protection and acknowledgment processing.
- ACK_TRANSMIT_CONFIG_ID — Transmission configuration for acknowledgments.
- RESET_VALUE_1/2/3, LAST_USED_NUMBER_1/2/3, RESET_REQUEST_1/2/3 — Three coordinated sequences used to generate and manage payment reference numbers, track the last number issued, and flag a reset request.
- INACTIVE_DATE — Date the profile was disabled, supporting effective-dating and end-of-life reporting.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, OBJECT_VERSION_NUMBER — Standard WHO audit columns and optimistic-locking control.
- ZD_EDITION_NAME — Editioning column supporting EBS 12.2 online patching.
Common Use Cases and Queries
Typical scenarios include validating which payment profiles are still active, reconciling profile usage against payments and instructions, and reporting on numbering sequences. Because the translation table IBY_ACCT_PMT_PROFILES_TL references this table on PAYMENT_PROFILE_ID, name lookups should join the two.
Joining the profile to its system template:
- SELECT p.PAYMENT_PROFILE_ID, p.SYSTEM_PROFILE_CODE, p.TRANSMIT_CONFIGURATION_ID
FROM IBY.IBY_ACCT_PMT_PROFILES_B p
JOIN IBY.IBY_SYS_PMT_PROFILES_B s ON p.SYSTEM_PROFILE_CODE = s.SYSTEM_PROFILE_CODE;
Finding orphaned or inactive profiles:
- SELECT PAYMENT_PROFILE_ID, INACTIVE_DATE
FROM IBY.IBY_ACCT_PMT_PROFILES_B
WHERE INACTIVE_DATE IS NOT NULL;
Reporting profile usage in payment processing requires joining IBY_PAYMENTS_ALL and IBY_PAY_INSTRUCTIONS_ALL on PAYMENT_PROFILE_ID. Edition-aware queries should include ZD_EDITION_NAME to avoid duplicate edition rows.
Related Objects
- IBY_SYS_PMT_PROFILES_B — parent system-level profile, joined on SYSTEM_PROFILE_CODE.
- IBY_BEPKEYS — payment system account, joined on BEP_ACCOUNT_ID.
- IBY_TRANSMIT_CONFIGS_B — transmission settings, joined on TRANSMIT_CONFIGURATION_ID.
- IBY_ACCT_PMT_PROFILES_TL — translation table, joined on PAYMENT_PROFILE_ID for profile names.
- IBY_PAYMENTS_ALL, IBY_PAY_INSTRUCTIONS_ALL, IBY_DOCS_PAYABLE_ALL — transactional consumers referencing PAYMENT_PROFILE_ID.
- AP_CHECKS_ALL and AP_PAYMENT_TEMPLATES — Payables-side references on PAYMENT_PROFILE_ID.
-
Table: IBY_ACCT_PMT_PROFILES_B
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_ACCT_PMT_PROFILES_B, object_name:IBY_ACCT_PMT_PROFILES_B, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_ACCT_PMT_PROFILES_B ,
-
Table: IBY_ACCT_PMT_PROFILES_B
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_ACCT_PMT_PROFILES_B, object_name:IBY_ACCT_PMT_PROFILES_B, status:VALID, product: IBY - Payments , description: IBY_ACCT_PMT_PROFILES stores account-related information that completes the specification of the handling of payment instructions. Entries in this table are based on entries in the IBY_SYS_PMT_PROFILES table. A combination of the two tables , implementation_dba_data: IBY.IBY_ACCT_PMT_PROFILES_B ,
-
VIEW: IBY.IBY_ACCT_PMT_PROFILES_B#
12.2.2
-
VIEW: IBY.IBY_ACCT_PMT_PROFILES_B#
12.2.2
owner:IBY, object_type:VIEW, object_name:IBY_ACCT_PMT_PROFILES_B#, status:VALID,
-
VIEW: APPS.IBY_ACCT_PMT_PROFILES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_ACCT_PMT_PROFILES_VL, object_name:IBY_ACCT_PMT_PROFILES_VL, status:VALID,
-
VIEW: APPS.IBY_ACCT_PMT_PROFILES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_ACCT_PMT_PROFILES_VL, object_name:IBY_ACCT_PMT_PROFILES_VL, status:VALID,
-
APPS.IBY_ACCT_PMT_PROFILES_PKG SQL Statements
12.1.1
-
APPS.IBY_ACCT_PMT_PROFILES_PKG SQL Statements
12.2.2
-
View: IBY_ACCT_PMT_PROFILES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_ACCT_PMT_PROFILES_VL, object_name:IBY_ACCT_PMT_PROFILES_VL, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_ACCT_PMT_PROFILES_VL ,
-
View: IBY_ACCT_PMT_PROFILES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_ACCT_PMT_PROFILES_VL, object_name:IBY_ACCT_PMT_PROFILES_VL, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_ACCT_PMT_PROFILES_VL ,
-
TABLE: IBY.IBY_ACCT_PMT_PROFILES_B
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_ACCT_PMT_PROFILES_B, object_name:IBY_ACCT_PMT_PROFILES_B, status:VALID,
-
TABLE: IBY.IBY_ACCT_PMT_PROFILES_B
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_ACCT_PMT_PROFILES_B, object_name:IBY_ACCT_PMT_PROFILES_B, status:VALID,
-
APPS.IBY_FD_POST_PICP_PROGS_PVT SQL Statements
12.2.2
-
View: IBY_EXT_FD_INS_1_0_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_EXT_FD_INS_1_0_V, object_name:IBY_EXT_FD_INS_1_0_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_EXT_FD_INS_1_0_V ,
-
VIEW: APPS.IBY_EXT_FD_INS_1_0_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_EXT_FD_INS_1_0_V, object_name:IBY_EXT_FD_INS_1_0_V, status:VALID,
-
VIEW: APPS.IBY_EXT_FD_INS_1_0_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_EXT_FD_INS_1_0_V, object_name:IBY_EXT_FD_INS_1_0_V, status:VALID,
-
View: IBY_EXT_FD_INS_1_0_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_EXT_FD_INS_1_0_V, object_name:IBY_EXT_FD_INS_1_0_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_EXT_FD_INS_1_0_V ,
-
APPS.IBY_FD_POST_PICP_PROGS_PVT SQL Statements
12.1.1
-
View: IBY_PAYMENT_PROFILES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_PAYMENT_PROFILES, object_name:IBY_PAYMENT_PROFILES, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_PAYMENT_PROFILES ,
-
VIEW: APPS.IBY_PAYMENT_PROFILES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_PAYMENT_PROFILES, object_name:IBY_PAYMENT_PROFILES, status:VALID,
-
View: IBY_PAYMENT_PROFILES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_PAYMENT_PROFILES, object_name:IBY_PAYMENT_PROFILES, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_PAYMENT_PROFILES ,
-
VIEW: APPS.IBY_PAYMENT_PROFILES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_PAYMENT_PROFILES, object_name:IBY_PAYMENT_PROFILES, status:VALID,
-
PACKAGE BODY: APPS.IBY_ACCT_PMT_PROFILES_PKG
12.1.1
-
PACKAGE BODY: APPS.IBY_ACCT_PMT_PROFILES_PKG
12.2.2
-
PACKAGE BODY: APPS.IBY_FD_POST_PICP_PROGS_PVT
12.1.1
-
APPS.IBY_UPG_PPP_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.IBY_FD_POST_PICP_PROGS_PVT
12.2.2
-
APPS.IBY_FD_POST_PICP_PROGS_PVT dependencies on IBY_ACCT_PMT_PROFILES_B
12.2.2
-
APPS.IBY_FD_POST_PICP_PROGS_PVT dependencies on IBY_ACCT_PMT_PROFILES_B
12.1.1
-
PACKAGE BODY: APPS.IBY_UPG_PPP_PKG
12.2.2
-
APPS.IBY_FD_POST_PICP_PROGS_PVT dependencies on FND_GLOBAL
12.1.1
-
APPS.IBY_FD_POST_PICP_PROGS_PVT dependencies on FND_GLOBAL
12.2.2
-
eTRM - IBY Tables and Views
12.1.1
description: Stores the user privilege settings for viewing sensitive data in iPayment operations UI ,
-
eTRM - IBY Tables and Views
12.2.2
description: Stores the user privilege settings for viewing sensitive data in iPayment operations UI ,