Search Results iby_formats_b




Overview

The IBY_FORMATS_B table is a core reference table within the Oracle E-Business Suite Payments (IBY) module, specifically for releases 12.1.1 and 12.2.2. Its primary function is to serve as a centralized repository for storing and defining payment processing format types. These format types are critical templates that govern the structure and content of electronic payment files, settlement reports, payer notifications, and other financial communication documents exchanged with banks and payment systems. The table acts as a master list of available formats, enabling the configuration and execution of diverse payment methods, including Electronic Funds Transfer (EFT), credit cards, and direct debits. Its role is foundational to the generation of compliant, bank-specific payment instructions.

Key Information Stored

The table's structure is designed to catalog unique format definitions. The primary key, FORMAT_CODE, is the unique identifier for each format type stored in the system. While the provided ETRM excerpt does not list all columns, the foreign key relationships reveal the nature of the data. The table associates these format codes with specific functional areas of payment processing. Key logical data points inferred from these relationships include format classification (e.g., settlement, query, funds transfer), associated payment system (credit card, EFT, direct debit), and linkage to specific extract definitions (via EXTRACT_ID). The table essentially maintains the metadata that tells the payment engine how to format output for various banking protocols and reporting requirements.

Common Use Cases and Queries

This table is primarily referenced during the setup and execution of payment processes. A common administrative use case is querying all available formats for a given payment system during configuration. For instance, when setting up an EFT payment system profile, a user selects from format codes defined in IBY_FORMATS_B for the funds transfer, verification, and accompanying letter. Troubleshooting or auditing payment file generation may also involve this table. Sample SQL to list all format codes and their associated extracts would be foundational:

  • SELECT format_code, extract_id FROM iby.iby_formats_b ORDER BY format_code;

Another critical use case is identifying which system profiles utilize a specific format, which can be achieved by joining to the various profile tables (e.g., IBY_FNDCPT_SYS_EFT_PF_B) referenced in the foreign keys.

Related Objects

The IBY_FORMATS_B table has extensive relationships within the Payments schema, as evidenced by the numerous foreign keys. Key dependent objects include:

These relationships underscore that IBY_FORMATS_B is a central hub, with its format codes being consumed across the entire payment processing configuration to ensure consistent and correct file formatting.