Search Results igs_co_ltr_pr_rstcn
Overview
The table IGS_CO_LTR_PR_RSTCN is a configuration entity within the Oracle E-Business Suite Student System (IGS) modules. It serves a critical role in managing the extensibility and control of correspondence generation. Specifically, this table defines restrictions that govern which user-defined letter parameter types are valid or available for use with specific correspondence types. By establishing this relationship, the system ensures that only appropriate and relevant parameters can be populated when generating a particular type of letter or communication, thereby enforcing data integrity and business rules within the correspondence process.
Key Information Stored
The table's structure is centered on the junction of two key identifiers, which together form its primary key. The LETTER_PARAMETER_TYPE column stores the code for a user-defined parameter that can be used to dynamically populate content in a correspondence template. The CORRESPONDENCE_TYPE column stores the code identifying a specific category or class of correspondence, such as an admission offer, fee reminder, or academic probation notice. The combination of these two columns creates a single restriction rule. The absence of a row for a given parameter and correspondence type pair implies that the parameter is not permitted for that type of letter.
Common Use Cases and Queries
The primary use case is the validation step during letter generation or template design. When a user selects a correspondence type, the application can query this table to present only the permitted parameter types for data entry. A common reporting need is to audit the restriction rules. A sample query to list all parameter restrictions would be:
- SELECT correspondence_type, letter_parameter_type FROM igs_co_ltr_pr_rstcn ORDER BY 1, 2;
Conversely, to identify all parameter types that are not restricted for a given correspondence type, one would typically query the master list of parameters (from its base table) and perform an anti-join with this restriction table. System administrators may also use this table to bulk-insert or delete rules when rolling out new correspondence types or parameter definitions.
Related Objects
This table maintains direct foreign key relationships with two other core tables in the Student System. The CORRESPONDENCE_TYPE column references the IGS_CO_TYPE table, which is the master list of all defined correspondence types. The LETTER_PARAMETER_TYPE column references the IGS_CO_LTR_PR_TYP table (implied by the foreign key metadata), which is the master definition table for user-defined letter parameter types. Any process or interface that creates or updates correspondence data, such as a PL/SQL package for batch letter generation, will likely reference or validate against the rules stored in IGS_CO_LTR_PR_RSTCN to ensure compliance.
-
Table: IGS_CO_LTR_PR_RSTCN
12.1.1
product: IGS - Student System , description: This tables describes the correspondence type restriction of user-defined letter parameter types. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_CO_LTR_PR_RSTCN
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CO_LTR_PR_RSTCN, object_name:IGS_CO_LTR_PR_RSTCN, status:VALID, product: IGS - Student System , description: IGS_CO_LTR_PR_RSTCN describes the correspondence type restriction of user-defined letter parameter types. , implementation_dba_data: APPS.IGS_CO_LTR_PR_RSTCN ,
-
Table: IGS_CO_TYPE
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_CO_TYPE, object_name:IGS_CO_TYPE, status:VALID, product: IGS - Student System , description: Describes available system-defined correspondence types , implementation_dba_data: IGS.IGS_CO_TYPE ,