Search Results fv_transmission_formats
Overview
The FV_TRANSMISSION_FORMATS table is a core reference data object within the Oracle E-Business Suite Federal Financials (FV) module. Its primary role is to catalog and define all the distinct transmission format specifications supported by the Fund Balance with Treasury (FBWT) Import Process. This process is critical for federal agencies, enabling the electronic import and reconciliation of financial data from the U.S. Treasury. The table acts as a master list, ensuring data integrity by providing a controlled set of valid formats that can be referenced by transactional data during the import lifecycle.
Key Information Stored
While the provided ETRM excerpt does not list all columns, the table's structure is centered on the unique identification and description of each transmission format. The primary and most critical column is TRANSMISSION_FORMAT_ID, which serves as the unique numeric identifier (primary key) for each format record. Other columns typically found in such reference tables would include fields to store the format's name or code (e.g., FORMAT_NAME, FORMAT_CODE), a detailed description, and potentially status or configuration flags indicating whether the format is active. The table's purpose is to store static, referenceable definitions rather than transactional data.
Common Use Cases and Queries
The primary use case is to validate and categorize incoming Treasury data files. During the FBWT import, the system references this table to confirm the specified format of the incoming file is valid. Common queries involve listing all available formats for setup or reporting purposes, or retrieving the details of a specific format. A typical reporting query would join this table to its related transactional table to provide context.
- Sample Query to List All Formats:
SELECT transmission_format_id, format_name, description FROM fv_transmission_formats WHERE enabled_flag = 'Y' ORDER BY format_name; - Sample Query for Data Validation Join:
SELECT r.record_id, t.format_name, r.file_name FROM fv_transmission_records r, fv_transmission_formats t WHERE r.transmission_format_id = t.transmission_format_id;
Related Objects
The FV_TRANSMISSION_FORMATS table has a direct parent-child relationship with the primary transactional table for the import process. As documented in the provided metadata:
- Primary Key: FV_TRANSMISSION_FORMATS_PK on the column TRANSMISSION_FORMAT_ID.
- Foreign Key Relationship: The table FV_TRANSMISSION_RECORDS contains a foreign key column, TRANSMISSION_FORMAT_ID, which references FV_TRANSMISSION_FORMATS.TRANSMISSION_FORMAT_ID. This relationship ensures that every imported record in FV_TRANSMISSION_RECORDS is associated with a valid, predefined transmission format.
-
Table: FV_TRANSMISSION_FORMATS
12.1.1
product: FV - Federal Financials , description: Table to store all the transmission formats supported by the Fund Balance with Treasury Import Process , implementation_dba_data: Not implemented in this database ,
-
Table: FV_TRANSMISSION_FORMATS
12.2.2
product: FV - Federal Financials , description: Table to store all the transmission formats supported by the Fund Balance with Treasury Import Process , implementation_dba_data: Not implemented in this database ,
-
Table: FV_TRANSMISSION_RECORDS
12.1.1
product: FV - Federal Financials , description: Table to store all the transmission records for fund balance with treasury import process , implementation_dba_data: Not implemented in this database ,
-
Table: FV_TRANSMISSION_RECORDS
12.2.2
product: FV - Federal Financials , description: Table to store all the transmission records for fund balance with treasury import process , implementation_dba_data: Not implemented in this database ,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1