Search Results iby_payment_methods_b
Overview
The IBY_PAYMENT_METHODS_B table is a core master data table within the Oracle Payments (IBY) module of Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2. It serves as the definitive repository for all payment methods supported by the application. A payment method is a critical payment attribute assigned to a payable document (e.g., an invoice) that defines the mechanism by which a payer will settle the obligation. This table stores the base, non-translatable attributes of each method, forming the parent record in a multilingual setup. Its integrity is enforced by a primary key, and it is extensively referenced by transactional and setup tables throughout the Payments ecosystem, making it fundamental for payment processing, validation, and reporting workflows.
Key Information Stored
The table's primary identifier is the PAYMENT_METHOD_CODE, a unique key representing the internal code for a payment method, such as 'CHECK', 'WIRE', or 'EFT'. While the full column list is not detailed in the provided excerpt, standard implementation suggests other crucial columns likely include ENABLED_FLAG (to activate/deactivate the method), CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, and LAST_UPDATED_BY for auditing. The associated IBY_PAYMENT_METHODS_TL table stores the translated name and description for each code, enabling multilingual support. The data defines methods like Check, Electronic Funds Transfer (EFT), Wire Transfer, and Bill of Exchange, which are then available for assignment to payees and payment documents.
Common Use Cases and Queries
This table is central to queries that list available payment instruments, validate payment method assignments, and analyze payment processing trends. Common scenarios include generating a list of all active payment methods for a setup screen or validating that a method code used in a transactional interface is valid. A typical query to retrieve active payment methods with their descriptions would join the base and translation tables:
- SELECT b.payment_method_code, tl.name, tl.description FROM iby_payment_methods_b b, iby_payment_methods_tl tl WHERE b.payment_method_code = tl.payment_method_code AND tl.language = USERENV('LANG') AND b.enabled_flag = 'Y' ORDER BY tl.name;
Another frequent use case is troubleshooting payment process requests by tracing the payment method code from a document payable (IBY_DOCS_PAYABLE_ALL) back to its master definition in this table.
Related Objects
As indicated by the foreign key relationships, IBY_PAYMENT_METHODS_B is a pivotal parent table. Key dependent objects include:
- IBY_DOCS_PAYABLE_ALL / IBY_DOCUMENTS_PAYABLE_H: Store payable documents, each linked to a payment method via PAYMENT_METHOD_CODE.
- IBY_PAYMENTS_ALL: Records individual payments, referencing the method used.
- IBY_EXTERNAL_PAYEES_ALL / IBY_TEMP_EXT_PAYEES: Store payee information, with a DEFAULT_PAYMENT_METHOD_CODE column.
- IBY_EXT_PARTY_PMT_MTHDS / IBY_APPLICABLE_PMT_MTHDS: Setup tables governing which payment methods are available for specific parties or payment processes.
- IBY_PAYMENT_RULES / IBY_VAL_ASSIGNMENTS: Contain business rules and validation assignments tied to specific payment methods.
- IBY_PAYMENT_METHODS_TL: The associated translation table, joined on PAYMENT_METHOD_CODE.
-
Table: IBY_PAYMENT_METHODS_B
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_PAYMENT_METHODS_B, object_name:IBY_PAYMENT_METHODS_B, status:VALID, product: IBY - Payments , description: IBY_PAYMENT_METHODS stores the payment methods that Oracle Payments supports. A payment method is a payment attribute on a document payable that indicates how the first party payer is going to make the payment. Examples of payment methods i , implementation_dba_data: IBY.IBY_PAYMENT_METHODS_B ,
-
Table: IBY_PAYMENT_METHODS_B
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_PAYMENT_METHODS_B, object_name:IBY_PAYMENT_METHODS_B, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_PAYMENT_METHODS_B ,
-
Table: IBY_PAYMENT_METHODS_TL
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_PAYMENT_METHODS_TL, object_name:IBY_PAYMENT_METHODS_TL, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_PAYMENT_METHODS_TL ,
-
Table: IBY_PAYMENT_RULES
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_PAYMENT_RULES, object_name:IBY_PAYMENT_RULES, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_PAYMENT_RULES ,
-
Table: IBY_APPLICABLE_PMT_MTHDS
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_APPLICABLE_PMT_MTHDS, object_name:IBY_APPLICABLE_PMT_MTHDS, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_APPLICABLE_PMT_MTHDS ,
-
Table: IBY_VAL_ASSIGNMENTS
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_VAL_ASSIGNMENTS, object_name:IBY_VAL_ASSIGNMENTS, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_VAL_ASSIGNMENTS ,
-
Table: IBY_TEMP_EXT_PAYEES
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_TEMP_EXT_PAYEES, object_name:IBY_TEMP_EXT_PAYEES, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_TEMP_EXT_PAYEES ,
-
Table: IBY_EXTERNAL_PAYEES_ALL
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_EXTERNAL_PAYEES_ALL, object_name:IBY_EXTERNAL_PAYEES_ALL, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_EXTERNAL_PAYEES_ALL ,
-
Table: IBY_PAYMENTS_ALL
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_PAYMENTS_ALL, object_name:IBY_PAYMENTS_ALL, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_PAYMENTS_ALL ,
-
Table: IBY_APPLICABLE_PMT_MTHDS
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_APPLICABLE_PMT_MTHDS, object_name:IBY_APPLICABLE_PMT_MTHDS, status:VALID, product: IBY - Payments , description: IBY_APPLICABLE_PMT_MTHDS stores the payment method applicability information for company policy-based factors. The factors include First Party Legal Entity, First Party Organization, Payment Processing Transaction Type, Transaction is Forei , implementation_dba_data: IBY.IBY_APPLICABLE_PMT_MTHDS ,
-
Table: IBY_DOCS_PAYABLE_ALL
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_DOCS_PAYABLE_ALL, object_name:IBY_DOCS_PAYABLE_ALL, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_DOCS_PAYABLE_ALL ,
-
Table: IBY_PAYMENT_METHODS_TL
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_PAYMENT_METHODS_TL, object_name:IBY_PAYMENT_METHODS_TL, status:VALID, product: IBY - Payments , description: IBY_PAYMENT_METHODS stores the payment methods that Oracle Payments supports. A payment method is a payment attribute on a document payable that indicates how the first party payer is going to make the payment. Examples of payment methods i , implementation_dba_data: IBY.IBY_PAYMENT_METHODS_TL ,
-
Table: IBY_PAYMENT_RULES
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_PAYMENT_RULES, object_name:IBY_PAYMENT_RULES, status:VALID, product: IBY - Payments , description: IBY_PAYMENT_RULES stores the header-level information for a payment method defaulting rule. A defaulting rule enables the user to define the default payment method with respect to multiple factors of a transaction context. A defaulting rule , implementation_dba_data: IBY.IBY_PAYMENT_RULES ,
-
Table: IBY_EXT_PARTY_PMT_MTHDS
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_EXT_PARTY_PMT_MTHDS, object_name:IBY_EXT_PARTY_PMT_MTHDS, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_EXT_PARTY_PMT_MTHDS ,
-
Table: IBY_EXT_PARTY_PMT_MTHDS
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_EXT_PARTY_PMT_MTHDS, object_name:IBY_EXT_PARTY_PMT_MTHDS, status:VALID, product: IBY - Payments , description: IBY_EXT_PARTY_PMT_MTHDS stores payment method applicability driven by the preferences of the external party. A payment method is applicable to a party and payment function combination and, optionally and additionally, to a party site and/or , implementation_dba_data: IBY.IBY_EXT_PARTY_PMT_MTHDS ,
-
Table: IBY_TEMP_EXT_PAYEES
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_TEMP_EXT_PAYEES, object_name:IBY_TEMP_EXT_PAYEES, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_TEMP_EXT_PAYEES ,
-
Table: IBY_DOCUMENTS_PAYABLE_H
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_DOCUMENTS_PAYABLE_H, object_name:IBY_DOCUMENTS_PAYABLE_H, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_DOCUMENTS_PAYABLE_H ,
-
Table: IBY_DOCUMENTS_PAYABLE_H
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_DOCUMENTS_PAYABLE_H, object_name:IBY_DOCUMENTS_PAYABLE_H, status:VALID, product: IBY - Payments , description: IBY_DOCUMENTS_PAYABLE_H stores historical snapshots of documents payable. This table contains denormalized versions of documents payable from specific points in time, such as when the payment for this document was submitted to a payment sys , implementation_dba_data: IBY.IBY_DOCUMENTS_PAYABLE_H ,
-
Table: IBY_EXTERNAL_PAYEES_ALL
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_EXTERNAL_PAYEES_ALL, object_name:IBY_EXTERNAL_PAYEES_ALL, status:VALID, product: IBY - Payments , description: "This table contains payment details of an external payee automatically created by the source product. For example when supplier or supplier site is created manually system automatically inserts row in to the IBY_EXTERNAL_PAYEES_ALL table. , implementation_dba_data: IBY.IBY_EXTERNAL_PAYEES_ALL ,
-
Table: IBY_DOCS_PAYABLE_ALL
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_DOCS_PAYABLE_ALL, object_name:IBY_DOCS_PAYABLE_ALL, status:VALID, product: IBY - Payments , description: "This table contains records of the documents payable which are updated by system while processing 'Build payments' program. IBY_DOCS_PAYABLE_ALL stores Oracle Payments' representation of source products' documents payable. A document pay , implementation_dba_data: IBY.IBY_DOCS_PAYABLE_ALL ,
-
Table: IBY_PAYMENTS_ALL
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_PAYMENTS_ALL, object_name:IBY_PAYMENTS_ALL, status:VALID, product: IBY - Payments , description: "This table contains records of the payments which are created by system while processing 'Build payments' program. A payment can be a single check or an electronic fund transfer between first party payer and third party payee. A row in , implementation_dba_data: IBY.IBY_PAYMENTS_ALL ,
-
View: IBY_PAYMENT_METHODS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_PAYMENT_METHODS_VL, object_name:IBY_PAYMENT_METHODS_VL, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_PAYMENT_METHODS_VL ,
-
View: IBY_PAYMENT_METHODS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_PAYMENT_METHODS_VL, object_name:IBY_PAYMENT_METHODS_VL, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_PAYMENT_METHODS_VL ,
-
View: IBY_XML_FD_PMT_1_0_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_XML_FD_PMT_1_0_V, object_name:IBY_XML_FD_PMT_1_0_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_XML_FD_PMT_1_0_V ,
-
View: IBY_XML_FD_PPR_PMT_1_0_V
12.1.1
product: IBY - Payments , implementation_dba_data: Not implemented in this database ,
-
View: IBY_XML_FD_PMT_1_0_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_XML_FD_PMT_1_0_V, object_name:IBY_XML_FD_PMT_1_0_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_XML_FD_PMT_1_0_V ,
-
View: IBY_XML_FD_PPR_PMT_1_0_V
12.2.2
product: IBY - Payments , implementation_dba_data: Not implemented in this database ,