Search Results check_format_id
Overview
The JG_ZZ_PAY_FORMAT_INFO table is a core data repository within the Oracle E-Business Suite (EBS) Regional Localizations (JG) module. It is designed to store country-specific formatting rules and metadata required for generating localized payment documents, such as checks and payment advices. This table is owned by the AP (Accounts Payable) schema, indicating its primary integration with the Payables processes. Its role is to centralize format definitions that ensure compliance with regional legal and banking standards, enabling a single global instance to support diverse international payment formats. The table's existence is critical for the accurate and compliant execution of payment runs in a multinational deployment of Oracle EBS 12.1.1 and 12.2.2.
Key Information Stored
The primary data element stored in this table is the unique identifier for a payment format. Based on the provided ETRM metadata, the central column is CHECK_FORMAT_ID, which serves as the table's primary key. This ID uniquely defines a specific formatting template or rule set for a country or region. While the full column list is not detailed in the excerpt, a table of this nature typically stores descriptive information such as the format name, an associated country code, and configuration flags or parameters that control the layout, content, and sequencing of data on the physical or electronic payment document. The table's description, "Holds Country Specific Format Data," confirms its purpose as the master source for these localization rules.
Common Use Cases and Queries
The most frequent use case involves the payment process engine querying this table to determine the correct template to apply when formatting a payment for a specific supplier bank account. For instance, when running a check printing concurrent request, the system uses the supplier's country and bank details to look up the appropriate CHECK_FORMAT_ID. A common reporting need is to audit all available payment formats in the system. A fundamental query to retrieve this master list would be:
- SELECT CHECK_FORMAT_ID, [OTHER_DESCRIPTIVE_COLUMNS] FROM AP.JG_ZZ_PAY_FORMAT_INFO ORDER BY [COUNTRY_CODE];
Technical consultants and DBAs may also query this table to troubleshoot payment formatting issues, often joining it to transaction data using the CHECK_FORMAT_ID to verify the correct format was applied to a specific payment batch.
Related Objects
The primary documented relationship for this table is its primary key constraint, JG_ZZ_PAY_FORMAT_INFO_PK, on the CHECK_FORMAT_ID column. This key is almost certainly referenced by foreign key constraints in other transactional or setup tables within the AP or JG schemas. Likely related objects include tables storing supplier bank account information (e.g., AP_BANK_ACCOUNTS_ALL) or payment instruction data, which would hold a CHECK_FORMAT_ID to link to the master format definition in JG_ZZ_PAY_FORMAT_INFO. The exact foreign key relationships are not listed in the provided metadata, but the structure indicates that CHECK_FORMAT_ID is the critical join column for any dependent object.
-
Table: JG_ZZ_PAY_FORMAT_INFO
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:JG.JG_ZZ_PAY_FORMAT_INFO, object_name:JG_ZZ_PAY_FORMAT_INFO, status:VALID, product: JG - Regional Localizations , description: Holds Country Specific Format Data , implementation_dba_data: AP.JG_ZZ_PAY_FORMAT_INFO ,
-
Table: JG_ZZ_PAY_FORMAT_INFO
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:JG.JG_ZZ_PAY_FORMAT_INFO, object_name:JG_ZZ_PAY_FORMAT_INFO, status:VALID, product: JG - Regional Localizations , description: Holds Country Specific Format Data , implementation_dba_data: AP.JG_ZZ_PAY_FORMAT_INFO ,