Search Results iby_transmit_protocols_tl
Overview
The IBY_TRANSMIT_PROTOCOLS_TL table is a core data object within the Oracle E-Business Suite Payments (IBY) module, specifically for versions 12.1.1 and 12.2.2. It functions as a translation table, storing user-facing, language-specific descriptions for payment transmission protocols. These protocols define the technical methods and standards used to transmit payment files from Oracle EBS to external banking systems or payment networks. The table's primary role is to support the multi-language capabilities of the application, ensuring that protocol names and descriptions are displayed correctly in the user's preferred language within the payment setup and execution interfaces.
Key Information Stored
As a translation table following the standard Oracle EBS table naming convention where '_TL' denotes 'Translation', its key columns typically include a foreign key to its base table, a language column, and descriptive fields. While the specific column list is not detailed in the provided metadata, the structure is inferred from the foreign key relationship and standard practice. The critical stored information includes the unique TRANSMIT_PROTOCOL_CODE, which links to the IBY_TRANSMIT_PROTOCOLS_B base table, and the LANGUAGE column (often named LANGUAGE or NLS_LANGUAGE). The table will also contain at least one translated description column, such as TRANSMIT_PROTOCOL_NAME or DESCRIPTION, which holds the human-readable name of the transmission protocol (e.g., "SWIFT", "FTP", "SFTP") in the corresponding language.
Common Use Cases and Queries
This table is primarily queried by the application's user interface to display localized lists of available transmission protocols during payment process configuration. A common reporting use case involves extracting a list of all protocols with their descriptions in a specific language for setup documentation or audit purposes. A typical SQL query would join the translation table to its base table to retrieve meaningful data.
- Sample Query for Active Protocols in a Session Language:
SELECT b.TRANSMIT_PROTOCOL_CODE, tl.NAME
FROM IBY_TRANSMIT_PROTOCOLS_B b,
IBY_TRANSMIT_PROTOCOLS_TL tl
WHERE b.TRANSMIT_PROTOCOL_CODE = tl.TRANSMIT_PROTOCOL_CODE
AND tl.LANGUAGE = USERENV('LANG')
AND b.ENABLED_FLAG = 'Y';
Related Objects
The table has a direct and essential relationship with its base table, as documented in the provided metadata. This relationship is fundamental to the Translation Table architecture in Oracle EBS.
- IBY_TRANSMIT_PROTOCOLS_B: This is the base table for transmission protocols. The IBY_TRANSMIT_PROTOCOLS_TL table is joined to it via the foreign key column TRANSMIT_PROTOCOL_CODE. The base table holds the non-translatable, code-driven data, while the TL table holds the language-specific descriptions.
-
Table: IBY_TRANSMIT_PROTOCOLS_TL
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_TRANSMIT_PROTOCOLS_TL, object_name:IBY_TRANSMIT_PROTOCOLS_TL, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_TRANSMIT_PROTOCOLS_TL ,
-
Table: IBY_TRANSMIT_PROTOCOLS_TL
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_TRANSMIT_PROTOCOLS_TL, object_name:IBY_TRANSMIT_PROTOCOLS_TL, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_TRANSMIT_PROTOCOLS_TL ,
-
Table: IBY_TRANSMIT_PROTOCOLS_B
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_TRANSMIT_PROTOCOLS_B, object_name:IBY_TRANSMIT_PROTOCOLS_B, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_TRANSMIT_PROTOCOLS_B ,
-
View: IBY_TRANSMIT_PROTOCOLS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_TRANSMIT_PROTOCOLS_VL, object_name:IBY_TRANSMIT_PROTOCOLS_VL, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_TRANSMIT_PROTOCOLS_VL ,
-
View: IBY_TRANSMIT_PROTOCOLS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_TRANSMIT_PROTOCOLS_VL, object_name:IBY_TRANSMIT_PROTOCOLS_VL, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_TRANSMIT_PROTOCOLS_VL ,
-
Table: IBY_TRANSMIT_PROTOCOLS_B
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_TRANSMIT_PROTOCOLS_B, object_name:IBY_TRANSMIT_PROTOCOLS_B, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_TRANSMIT_PROTOCOLS_B ,