Search Results lockbox_name
Overview
The IGS_FI_LB_FCIS table is a core configuration table within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the Financials product family. Its primary role is to manage the mapping between external bank transaction codes and internal fee calendar instances for automated payment processing via lockboxes. When a bank transmits a file of customer payments (a lockbox file), it includes transaction codes. This table provides the critical lookup that the system uses to correctly interpret these incoming bank codes (BANK_CD) and associate them with the appropriate internal fee calendar instance (FEE_CAL_TYPE and FEE_CI_SEQUENCE_NUMBER) for a specific lockbox setup (LOCKBOX_NAME). This mapping is essential for the accurate and automated posting of fee-related revenues within the institution's general ledger.
Key Information Stored
The table stores a unique combination of lockbox configuration and fee calendar mapping. The most critical columns are the components of its composite primary key and the fee calendar identifiers. The LOCKBOX_NAME identifies the specific lockbox configuration. The BANK_CD holds the exact code supplied by the bank in its transaction files. The FEE_CAL_TYPE and FEE_CI_SEQUENCE_NUMBER together uniquely identify the internal fee calendar period to which the bank code corresponds. The table also includes standard Oracle EBS "Who" columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) for auditing. As per the metadata, the primary key constraint IGS_FI_LB_FCIS_PK enforces uniqueness on the combination of LOCKBOX_NAME and BANK_CD, meaning a single bank code can be mapped only once per lockbox.
Common Use Cases and Queries
The primary use case is the setup and maintenance of lockbox fee processing rules. Administrators populate this table to define how each distinct bank transaction code should be treated for revenue recognition. Common reporting and validation queries include listing all mappings for a specific lockbox or identifying unmapped bank codes. A typical query to audit existing mappings would be:
SELECT LOCKBOX_NAME, BANK_CD, FEE_CAL_TYPE, FEE_CI_SEQUENCE_NUMBER
FROM IGS.IGS_FI_LB_FCIS
WHERE LOCKBOX_NAME = '&LOCKBOX_NAME'
ORDER BY BANK_CD;
Another critical use case is troubleshooting lockbox processing errors. If a bank file fails to post fees correctly, a query joining this table to the lockbox transaction staging tables can verify if the incoming BANK_CD has a valid, active fee calendar mapping configured in IGS_FI_LB_FCIS.
Related Objects
Based on the provided relationship data, IGS_FI_LB_FCIS has defined foreign key relationships with two key tables, ensuring referential integrity for its configuration data.
- IGS_FI_LOCKBOXES: The LOCKBOX_NAME column in IGS_FI_LB_FCIS references a valid lockbox definition in this table. This ensures mappings are only created for configured lockboxes.
- IGS_CA_INST_ALL: The FEE_CAL_TYPE column in IGS_FI_LB_FCIS references a valid calendar type in this calendar instances table, linking the bank code to an existing fee calendar period.
The table itself is referenced by the APPS synonym IGS_FI_LB_FCIS, which is the standard access point for all application code and queries within the EBS environment. This structure centralizes the bank code mapping, making it a single point of configuration for downstream lockbox processing logic.
-
APPS.IGS_FI_PRC_LOCKBOX dependencies on FND_MESSAGE
12.1.1
-
APPS.IGS_FI_PRC_LOCKBOX dependencies on IGS_FI_LB_CR_TYPES
12.1.1
-
APPS.IGS_FI_PRC_LOCKBOX dependencies on FND_FILE
12.1.1
-
TABLE: IGS.IGS_FI_LB_FCIS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_LB_FCIS, object_name:IGS_FI_LB_FCIS, status:VALID,
-
Table: IGS_FI_LB_REC_TYPES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_LB_REC_TYPES, object_name:IGS_FI_LB_REC_TYPES, status:VALID, product: IGS - Student System , description: Table for mapping bank supplied record type identifiers for each data row in the bank transmission files. , implementation_dba_data: IGS.IGS_FI_LB_REC_TYPES ,
-
APPS.IGS_FI_PRC_LOCKBOX dependencies on IGS_FI_LB_FCIS
12.1.1
-
TABLE: IGS.IGS_FI_LB_REC_TYPES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_LB_REC_TYPES, object_name:IGS_FI_LB_REC_TYPES, status:VALID,
-
TABLE: IGS.IGS_FI_LB_CR_TYPES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_LB_CR_TYPES, object_name:IGS_FI_LB_CR_TYPES, status:VALID,
-
APPS.IGS_FI_PRC_LOCKBOX dependencies on IGS_FI_LOCKBOXES
12.1.1
-
Table: IGS_FI_LB_REC_TYPES
12.2.2
product: IGS - Student System (Obsolete) , description: Table for mapping bank supplied record type identifiers for each data row in the bank transmission files. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_LB_CR_TYPES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_LB_CR_TYPES, object_name:IGS_FI_LB_CR_TYPES, status:VALID, product: IGS - Student System , description: Table to store the mapping of bank-supplied codes to pre-defined Credit Types in the context of a Lockbox. , implementation_dba_data: IGS.IGS_FI_LB_CR_TYPES ,
-
Table: IGS_FI_LB_CR_TYPES
12.2.2
product: IGS - Student System (Obsolete) , description: Table to store the mapping of bank-supplied codes to pre-defined Credit Types in the context of a Lockbox. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_LB_FCIS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_LB_FCIS, object_name:IGS_FI_LB_FCIS, status:VALID, product: IGS - Student System , description: Table for mapping bank codes with the fee calendar instance as defined in the system for a lockbox in context. , implementation_dba_data: IGS.IGS_FI_LB_FCIS ,
-
APPS.IGS_FI_PRC_LOCKBOX dependencies on IGS_FI_LB_REC_TYPES
12.1.1
-
Table: IGS_FI_LB_FCIS
12.2.2
product: IGS - Student System (Obsolete) , description: Table for mapping bank codes with the fee calendar instance as defined in the system for a lockbox in context. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_FI_PRC_LOCKBOX SQL Statements
12.1.1
-
APPS.IGS_FI_LB_FCIS_PKG dependencies on IGS_FI_LB_FCIS
12.1.1
-
APPS.IGS_FI_LB_REC_TYPES_PKG dependencies on IGS_FI_LB_REC_TYPES
12.1.1
-
APPS.IGS_FI_LB_CR_TYPES_PKG dependencies on IGS_FI_LB_CR_TYPES
12.1.1
-
APPS.IGS_FI_LOCKBOXES_PKG dependencies on IGS_FI_LOCKBOXES
12.1.1
-
VIEW: APPS.IGS_FI_LB_FCIS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_LB_FCIS_V, object_name:IGS_FI_LB_FCIS_V, status:VALID,
-
APPS.IGS_FI_PRC_LOCKBOX dependencies on IGS_FI_LOCKBOX_INTS
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_PRC_LOCKBOX
12.1.1
-
TABLE: IGS.IGS_FI_LOCKBOXES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_LOCKBOXES, object_name:IGS_FI_LOCKBOXES, status:VALID,
-
VIEW: APPS.IGS_FI_LB_REC_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_LB_REC_TYPES_V, object_name:IGS_FI_LB_REC_TYPES_V, status:VALID,
-
VIEW: APPS.IGS_FI_LB_CR_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_LB_CR_TYPES_V, object_name:IGS_FI_LB_CR_TYPES_V, status:VALID,
-
APPS.IGS_FI_LB_FCIS_PKG SQL Statements
12.1.1
-
View: IGS_FI_LB_REC_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_LB_REC_TYPES_V, object_name:IGS_FI_LB_REC_TYPES_V, status:VALID, product: IGS - Student System , description: Form View used for showing the mapping of bank supplied record type identifiers in the context of a lockbox. , implementation_dba_data: APPS.IGS_FI_LB_REC_TYPES_V ,
-
APPS.IGS_FI_PRC_LOCKBOX dependencies on IGS_FI_CRDAPI_UTIL
12.1.1
-
APPS.IGS_FI_LB_REC_TYPES_PKG SQL Statements
12.1.1
-
View: IGS_FI_LB_CR_TYPES_V
12.2.2
product: IGS - Student System (Obsolete) , description: Form view used to show the mapping of bank-supplied codes with pre-defined Credit Types in the context of a Lockbox. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_FI_PRC_LOCKBOX dependencies on IGS_FI_LOCKBOX_INTS
12.1.1
-
Table: IGS_FI_LOCKBOXES
12.2.2
product: IGS - Student System (Obsolete) , description: Table for storing the attributes of a user defined Lockbox Name. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_LOCKBOXES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_LOCKBOXES, object_name:IGS_FI_LOCKBOXES, status:VALID, product: IGS - Student System , description: Table for storing the attributes of a user defined Lockbox Name. , implementation_dba_data: IGS.IGS_FI_LOCKBOXES ,
-
APPS.IGS_FI_LB_CR_TYPES_PKG SQL Statements
12.1.1
-
APPS.IGS_FI_PRC_LOCKBOX dependencies on IGS_FI_LB_RECT_ERRS
12.1.1
-
View: IGS_FI_LB_CR_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_LB_CR_TYPES_V, object_name:IGS_FI_LB_CR_TYPES_V, status:VALID, product: IGS - Student System , description: Form view used to show the mapping of bank-supplied codes with pre-defined Credit Types in the context of a Lockbox. , implementation_dba_data: APPS.IGS_FI_LB_CR_TYPES_V ,
-
View: IGS_FI_LB_FCIS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_LB_FCIS_V, object_name:IGS_FI_LB_FCIS_V, status:VALID, product: IGS - Student System , description: Form View used to show the mapping of bank codes with the fee calendar instances in the context of a Lockbox. , implementation_dba_data: APPS.IGS_FI_LB_FCIS_V ,
-
View: IGS_FI_LB_REC_TYPES_V
12.2.2
product: IGS - Student System (Obsolete) , description: Form View used for showing the mapping of bank supplied record type identifiers in the context of a lockbox. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_LB_FCIS_V
12.2.2
product: IGS - Student System (Obsolete) , description: Form View used to show the mapping of bank codes with the fee calendar instances in the context of a Lockbox. , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_FI_LB_RECT_ERRS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_LB_RECT_ERRS, object_name:IGS_FI_LB_RECT_ERRS, status:VALID,
-
APPS.IGS_FI_PRC_LOCKBOX dependencies on IGS_LOOKUP_VALUES
12.1.1
-
APPS.IGS_FI_PRC_LOCKBOX dependencies on IGS_FI_CREDITS_ALL
12.1.1
-
APPS.IGS_FI_PRC_LOCKBOX dependencies on IGS_FI_CONTROL
12.1.1
-
VIEW: APPS.IGS_FI_LOCKBOXES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_LOCKBOXES_V, object_name:IGS_FI_LOCKBOXES_V, status:VALID,
-
View: IGS_FI_LOCKBOXES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_LOCKBOXES_V, object_name:IGS_FI_LOCKBOXES_V, status:VALID, product: IGS - Student System , description: Form View used for Lockbox Setup. , implementation_dba_data: APPS.IGS_FI_LOCKBOXES_V ,
-
TABLE: IGS.IGS_FI_LOCKBOX_INTS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_LOCKBOX_INTS, object_name:IGS_FI_LOCKBOX_INTS, status:VALID,
-
View: IGS_FI_LOCKBOXES_V
12.2.2
product: IGS - Student System (Obsolete) , description: Form View used for Lockbox Setup. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_FI_LB_RECT_ERRS_PKG dependencies on IGS_FI_LB_RECT_ERRS
12.1.1
-
View: IGS_FI_LB_RECT_ERRS_V
12.2.2
product: IGS - Student System (Obsolete) , description: Form View used to display the lockbox receipt records that had validation errors detected during the import process from the interface table. , implementation_dba_data: Not implemented in this database ,