Search Results periodic_sequence_name_1
Overview
IBY_SYS_PMT_PROFILES_B is the foundational setup table in the Oracle Payments (IBY) module that stores Payment Process Profile definitions for Funds Disbursement transactions. A Payment Process Profile governs how Oracle EBS builds, formats, transmits, and confirms payments across a payment instruction lifecycle. This table stores both user-defined profiles created during implementation and the seeded payment process profiles delivered by Oracle, which explains the prominent SEEDED_FLAG column.
The table is owned by the IBY schema and resides in the 12.1.1 and 12.2.2 releases with a documented physical schema of 69 columns. Its primary key is IBY_SYS_PMT_PROFILES_B_PK, defined on SYSTEM_PROFILE_CODE, and a secondary unique index (IBY_SYS_PMT_PROFILES_B_U1) exists on SYSTEM_PROFILE_CODE and ZD_EDITION_NAME, which indicates the table participates in the Edition-Based Redefinition (EBR) model introduced in 12.2. The primary key is the surrogate identifier: SYSTEM_PROFILE_CODE is a system-generated, immutable key rather than a user-visible business name.
Based on the foreign key topology—many other configuration tables reference this table by SYSTEM_PROFILE_CODE—the metadata suggests a satellite-leaning Data Vault classification for this central configuration hub.
Key Information Stored
The following columns are the most significant for understanding and querying a Payment Process Profile:
- SYSTEM_PROFILE_CODE — Surrogate primary key; uniquely identifies each system payment profile and is the join key to the account-level and rules tables.
- BEPID — Foreign key to IBY_BEPINFO, identifying the Payment System (bank entry point) used to transmit payment files.
- TRANSMIT_PROTOCOL_CODE — References IBY_TRANSMIT_PROTOCOLS_B; defines the method used to deliver the outbound payment file.
- PAYMENT_FORMAT_CODE, POSITIVE_PAY_FORMAT_CODE, PAY_FILE_LETTER_FORMAT_CODE — Foreign keys to IBY_FORMATS_B controlling the physical format of payment files, positive pay files, and the pay file letter (remittance) output.
- PROCESSING_TYPE — Determines whether the profile is used for manual, electronic, or print-based processing.
- PRINT_INSTRUCTION_IMMED_FLAG, TRANSMIT_INSTR_IMMED_FLAG, MANUAL_MARK_COMPLETE_FLAG, MARK_COMPLETE_EVENT — Control flags that govern immediate printing/transmission behavior and the completion event used to mark the instruction done.
- POSITIVE_PAY_DELIVERY_FLAG — Indicates whether positive pay file delivery is enabled for the profile.
- SEEDED_FLAG — Distinguishes Oracle-seeded profiles from customer-created profiles, which is critical when writing queries that must filter out seeded rows.
- BANK_INSTRUCTION1_CODE, BANK_INSTRUCTION2_CODE, BANK_INSTRUCTION_DETAILS — Reference IBY_BANK_INSTRUCTIONS_B and carry free-text instruction payloads passed to the bank.
- DECLARATION_OPTION and related declaration columns — Govern regulatory declaration reporting, including currency, format, and threshold amount.
- OUTBOUND_PMT_FILE_PREFIX/DIRECTORY/EXTENSION and POSITIVE_PAY_FILE_* equivalents — Define file naming and output locations for transmitted files.
- AUDIT columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, and OBJECT_VERSION_NUMBER provide standard EBS audit and optimistic-locking support.
- ATTRIBUTE1 through ATTRIBUTE15, ATTRIBUTE_CATEGORY — The standard extensibility (DDF) flexfield columns available for customer-defined attributes.
The multilanguage text name and description for the profile reside in IBY_SYS_PMT_PROFILES_TL, joined by SYSTEM_PROFILE_CODE.
Common Use Cases and Queries
Consultants and DBAs commonly query this table to inventory the Payment Process Profiles configured in an environment, to determine which profile drives a specific payment format, or to troubleshoot payment file generation. A representative query to list active profiles with their format and bank entry point follows:
- SELECT p.SYSTEM_PROFILE_CODE, t.USER_PROFILE_NAME, p.PROCESSING_TYPE, p.SEEDED_FLAG, p.INACTIVE_DATE FROM IBY_SYS_PMT_PROFILES_B p JOIN IBY_SYS_PMT_PROFILES_TL t ON t.SYSTEM_PROFILE_CODE = p.SYSTEM_PROFILE_CODE WHERE t.LANGUAGE = USERENV('LANG');
Additional patterns include identifying all profiles that use a particular payment format (WHERE PAYMENT_FORMAT_CODE = :format), isolating seeded versus custom profiles (WHERE SEEDED_FLAG = 'N'), and joining to IBY_ACCT_PMT_PROFILES_B via SYSTEM_PROFILE_CODE to map system profiles to account-level profiles used in a funds disbursement instruction. Reporting on profile-to-format and profile-to-protocol combinations is also common during upgrade impact analysis between 12.1.1 and 12.2.2.
Related Objects
- IBY_ACCT_PMT_PROFILES_B — References this table via SYSTEM_PROFILE_CODE; holds the account-level payment profiles.
- IBY_APPLICABLE_PMT_PROFS — References SYSTEM_PROFILE_CODE; defines which profiles apply to given payment scenarios.
- IBY_REMIT_ADVICE_SETUP — References SYSTEM_PROFILE_CODE; controls remittance advice generation.
- IBY_PMT_CREATION_RULES and IBY_INSTR_CREATION_RULES — Reference SYSTEM_PROFILE_CODE to define how payments and instructions are grouped and created.
- IBY_PMT_LOGICAL_GRP_RULES — References SYSTEM_PROFILE_CODE; governs logical grouping of payments.
- IBY_SYS_PMT_PROFILES_TL — Multilanguage translation table joined on SYSTEM_PROFILE_CODE.
- IBY_BEPINFO — Parent of BEPID; defines the payment system/entry point.
- IBY_FORMATS_B — Referenced by the three format columns for payment, positive pay, and letter formats.
- IBY_TRANSMIT_PROTOCOLS_B, IBY_BANK_INSTRUCTIONS_B — Referenced by TRANSMIT_PROTOCOL_CODE and BANK_INSTRUCTIONn_CODE respectively.
-
Table: IBY_SYS_PMT_PROFILES_B
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_SYS_PMT_PROFILES_B, object_name:IBY_SYS_PMT_PROFILES_B, status:VALID, product: IBY - Payments , description: "This table stores Payment Process Profile setup for Funds Disbursement transactions. This table also stores information of the seeded Payment process profiles. IBY_SYS_PMT_PROFILES_B stores information that specifies the bulk of payment , implementation_dba_data: IBY.IBY_SYS_PMT_PROFILES_B ,
-
Table: IBY_SYS_PMT_PROFILES_B
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_SYS_PMT_PROFILES_B, object_name:IBY_SYS_PMT_PROFILES_B, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_SYS_PMT_PROFILES_B ,
-
Table: IBY_UPG_PPP_B
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_UPG_PPP_B, object_name:IBY_UPG_PPP_B, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_UPG_PPP_B ,
-
VIEW: APPS.IBY_PERIODIC_SEQ_SRS_V
12.1.1
-
VIEW: APPS.IBY_PERIODIC_SEQ_SRS_V
12.2.2
-
VIEW: IBY.IBY_SYS_PMT_PROFILES_B#
12.2.2
-
VIEW: IBY.IBY_UPG_PPP_B#
12.2.2
-
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: IBY.IBY_SYS_PMT_PROFILES_B#
12.2.2
owner:IBY, object_type:VIEW, object_name:IBY_SYS_PMT_PROFILES_B#, 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: APPS.IBY_SYS_PMT_PROFILES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_SYS_PMT_PROFILES_VL, object_name:IBY_SYS_PMT_PROFILES_VL, status:VALID,
-
VIEW: APPS.IBY_SYS_PMT_PROFILES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_SYS_PMT_PROFILES_VL, object_name:IBY_SYS_PMT_PROFILES_VL, status:VALID,
-
TABLE: IBY.IBY_UPG_PPP_B
12.1.1
owner:IBY, object_type:TABLE, object_name:IBY_UPG_PPP_B, status:VALID,
-
VIEW: APPS.IBY_UPG_PPP_VL
12.2.2
owner:APPS, object_type:VIEW, object_name:IBY_UPG_PPP_VL, status:VALID,
-
VIEW: IBY.IBY_UPG_PPP_B#
12.2.2
owner:IBY, object_type:VIEW, object_name:IBY_UPG_PPP_B#, status:VALID,
-
View: IBY_SYS_PMT_PROFILES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_SYS_PMT_PROFILES_VL, object_name:IBY_SYS_PMT_PROFILES_VL, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_SYS_PMT_PROFILES_VL ,
-
View: IBY_SYS_PMT_PROFILES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_SYS_PMT_PROFILES_VL, object_name:IBY_SYS_PMT_PROFILES_VL, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_SYS_PMT_PROFILES_VL ,
-
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: 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 ,
-
VIEW: APPS.IBY_UPG_PPP_VL
12.1.1
owner:APPS, object_type:VIEW, object_name:IBY_UPG_PPP_VL, status:VALID,
-
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: 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.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_PAYMENT_PROFILES, object_name:IBY_PAYMENT_PROFILES, status:VALID,
-
TABLE: IBY.IBY_UPG_PPP_B
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_UPG_PPP_B, object_name:IBY_UPG_PPP_B, status:VALID,
-
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,
-
APPS.IBY_SYS_PMT_PROFILES_PKG SQL Statements
12.1.1
-
APPS.IBY_SYS_PMT_PROFILES_PKG SQL Statements
12.2.2
-
APPS.IBY_UPG_PPP_PKG SQL Statements
12.2.2
-
APPS.IBY_UPG_PPP_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IBY_SYS_PMT_PROFILES_PKG
12.1.1
-
TABLE: IBY.IBY_SYS_PMT_PROFILES_B
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_SYS_PMT_PROFILES_B, object_name:IBY_SYS_PMT_PROFILES_B, status:VALID,
-
PACKAGE BODY: APPS.IBY_SYS_PMT_PROFILES_PKG
12.2.2
-
TABLE: IBY.IBY_SYS_PMT_PROFILES_B
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_SYS_PMT_PROFILES_B, object_name:IBY_SYS_PMT_PROFILES_B, status:VALID,
-
PACKAGE BODY: APPS.IBY_UPG_PPP_PKG
12.2.2
-
PACKAGE BODY: APPS.IBY_UPG_PPP_PKG
12.1.1
-
eTRM - IBY Tables and Views
12.2.2
description: Stores the user privilege settings for viewing sensitive data in iPayment operations UI ,
-
eTRM - IBY Tables and Views
12.1.1
description: Stores the user privilege settings for viewing sensitive data in iPayment operations UI ,