Search Results letter_repeating_group_cd
Overview
The IGS_CO_LTR_PR_RPT_GR_ALL table is a core data structure within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the IGS (Oracle Student Management) product family. It functions as a junction or mapping table that defines the relationship between letter parameters and repeating groups within the correspondence engine. Its primary role is to configure which parameter types are associated with a specific repeating group for a given system letter, thereby controlling the dynamic data merged into letter templates. The inclusion of the ORG_ID column signifies it is a multi-org enabled table, storing data specific to individual operating units.
Key Information Stored
The table's columns define the key relationships and attributes for letter parameter grouping. The composite primary key uniquely identifies a single parameter within a repeating group for a letter. Critical columns include:
- CORRESPONDENCE_TYPE, LETTER_REFERENCE_NUMBER: Together, these identify the specific system letter definition.
- LETTER_REPEATING_GROUP_CD: A crucial code that links multiple parameters intended to repeat as a logical block within the generated letter. This is the key field referenced in the user's search.
- LETTER_PARAMETER_TYPE: The institution-defined code for the actual data element (e.g., COURSE_CODE, STUDENT_NAME) to be merged.
- LETTER_ORDER_NUMBER: Dictates the sequence in which parameters are processed or presented within their repeating group.
- ORG_ID: The operating unit identifier, enabling multi-org partitioning of configuration data.
Common Use Cases and Queries
This table is central to troubleshooting and reporting on letter template configurations. A common use case is to audit all parameters assigned to a specific repeating group for a letter to verify setup or diagnose merge issues. For example, to find all parameters in the 'ADDR_GRP' repeating group for a specific letter, one would execute:
SELECT LETTER_PARAMETER_TYPE, LETTER_ORDER_NUMBER
FROM IGS.IGS_CO_LTR_PR_RPT_GR_ALL
WHERE CORRESPONDENCE_TYPE = 'XYZ'
AND LETTER_REFERENCE_NUMBER = 100
AND LETTER_REPEATING_GROUP_CD = 'ADDR_GRP'
ORDER BY LETTER_ORDER_NUMBER;
Another critical reporting scenario involves listing all distinct repeating groups defined for a correspondence type to understand the letter's structural components:
SELECT DISTINCT LETTER_REPEATING_GROUP_CD
FROM IGS.IGS_CO_LTR_PR_RPT_GR_ALL
WHERE CORRESPONDENCE_TYPE = 'XYZ';
Related Objects
The table maintains defined relationships with other key configuration tables in the correspondence module, as per the provided metadata. The primary key (IGS_CO_LTR_PR_RPT_GR_PK) enforces uniqueness on the combination of its core columns. Foreign key relationships indicate its dependencies:
- References IGS_CO_LTR_PARAM: Via the LETTER_ORDER_NUMBER column, linking to the master list of available letter parameters.
- References IGS_CO_LTR_RPT_GRP_ALL: Via the CORRESPONDENCE_TYPE column (and implicitly LETTER_REPEATING_GROUP_CD), linking to the master definition of repeating groups.
- Referenced by APPS.IGS_CO_LTR_PR_: This indicates the table is likely accessed by application code or a public synonym for programmatic operations within the letter generation process.
-
TABLE: IGS.IGS_CO_LTR_PR_RPT_GR_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_CO_LTR_PR_RPT_GR_ALL, object_name:IGS_CO_LTR_PR_RPT_GR_ALL, status:VALID,
-
View: IGS_CO_LTR_RPT_GRP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CO_LTR_RPT_GRP, object_name:IGS_CO_LTR_RPT_GRP, status:VALID, product: IGS - Student System , description: IGS_CO_LTR_RPT_GRP describes groups that will be used to link repeating parameters within the letter. , implementation_dba_data: APPS.IGS_CO_LTR_RPT_GRP ,
-
View: IGS_CO_S_PERLT_RPTGP
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_CO_S_PERLT_RPTGP describes the repeating groups in relation to the system letter to be produced for the person. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_CO_LTR_PR_RPT_GR_PKG dependencies on IGS_CO_LTR_PR_RPT_GR_ALL
12.1.1
-
View: IGS_CO_LTR_PR_RPT_GR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CO_LTR_PR_RPT_GR, object_name:IGS_CO_LTR_PR_RPT_GR, status:VALID, product: IGS - Student System , description: IGS_CO_LTR_PR_RPT_GR describes the letter parameters types that exist in the repeating group. , implementation_dba_data: APPS.IGS_CO_LTR_PR_RPT_GR ,
-
View: IGS_CO_LTR_RPT_GRP
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_CO_LTR_RPT_GRP describes groups that will be used to link repeating parameters within the letter. , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_CO_LTR_RPT_GRP_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_CO_LTR_RPT_GRP_ALL, object_name:IGS_CO_LTR_RPT_GRP_ALL, status:VALID,
-
APPS.IGS_CO_LTR_RPT_GRP_PKG dependencies on IGS_CO_LTR_RPT_GRP_ALL
12.1.1
-
View: IGS_CO_S_PER_LT_PARM
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CO_S_PER_LT_PARM, object_name:IGS_CO_S_PER_LT_PARM, status:VALID, product: IGS - Student System , description: IGS_CO_S_PER_LT_PARM describes the parameter values relating to the system letter being produced for the person. , implementation_dba_data: APPS.IGS_CO_S_PER_LT_PARM ,
-
VIEW: APPS.IGS_CO_LTR_RPT_GRP
12.1.1
-
VIEW: APPS.IGS_CO_LTR_PR_RPT_GR
12.1.1
-
TABLE: IGS.IGS_CO_S_PERLT_RPTGP_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_CO_S_PERLT_RPTGP_ALL, object_name:IGS_CO_S_PERLT_RPTGP_ALL, status:VALID,
-
VIEW: APPS.IGS_CO_S_PERLT_RPTGP
12.1.1
-
View: IGS_CO_LTR_PR_RPT_GR
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_CO_LTR_PR_RPT_GR describes the letter parameters types that exist in the repeating group. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_CO_S_PER_LT_PARM
12.1.1
-
TABLE: IGS.IGS_CO_S_PER_LT_PARM_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_CO_S_PER_LT_PARM_ALL, object_name:IGS_CO_S_PER_LT_PARM_ALL, status:VALID,
-
View: IGS_CO_S_PERLT_RPTGP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CO_S_PERLT_RPTGP, object_name:IGS_CO_S_PERLT_RPTGP, status:VALID, product: IGS - Student System , description: IGS_CO_S_PERLT_RPTGP describes the repeating groups in relation to the system letter to be produced for the person. , implementation_dba_data: APPS.IGS_CO_S_PERLT_RPTGP ,
-
View: IGS_CO_S_PER_LT_PARM
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_CO_S_PER_LT_PARM describes the parameter values relating to the system letter being produced for the person. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_CO_LTR_RPT_GRP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CO_LTR_RPT_GRP, object_name:IGS_CO_LTR_RPT_GRP, status:VALID,
-
VIEW: APPS.IGS_CO_LTR_PR_RPT_GR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CO_LTR_PR_RPT_GR, object_name:IGS_CO_LTR_PR_RPT_GR, status:VALID,
-
VIEW: APPS.IGS_CO_S_PERLT_RPTGP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CO_S_PERLT_RPTGP, object_name:IGS_CO_S_PERLT_RPTGP, status:VALID,
-
VIEW: APPS.IGS_CO_S_PER_LT_PARM
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CO_S_PER_LT_PARM, object_name:IGS_CO_S_PER_LT_PARM, status:VALID,
-
APPS.IGS_CO_LTR_PR_RPT_GR_PKG SQL Statements
12.1.1
-
Table: IGS_CO_LTR_PR_RPT_GR_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Describes letter parameters types that exist in the repeating group , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_CO_LTR_PR_RPT_GR_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_CO_LTR_PR_RPT_GR_ALL, object_name:IGS_CO_LTR_PR_RPT_GR_ALL, status:VALID, product: IGS - Student System , description: Describes letter parameters types that exist in the repeating group , implementation_dba_data: IGS.IGS_CO_LTR_PR_RPT_GR_ALL ,
-
Table: IGS_CO_LTR_PR_RPT_GR
12.1.1
product: IGS - Student System , description: This table describes the letter parameters types that exist the the repeating group. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_CO_S_PERLT_RPTGP
12.1.1
product: IGS - Student System , description: This table describes the repeating groups in relation to the sytem letter to be produced for the person. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_CO_S_PERLT_RPTGP
12.2.2
product: IGS - Student System (Obsolete) , description: This table describes the repeating groups in relation to the sytem letter to be produced for the person. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_CO_LTR_RPT_GRP_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_CO_LTR_RPT_GRP_ALL, object_name:IGS_CO_LTR_RPT_GRP_ALL, status:VALID, product: IGS - Student System , description: Describes groups used to link repeating parameters within letter , implementation_dba_data: IGS.IGS_CO_LTR_RPT_GRP_ALL ,
-
Table: IGS_CO_LTR_RPT_GRP
12.2.2
product: IGS - Student System (Obsolete) , description: This table describes groups that will be used to link repeating parameters within the letter. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_CO_LTR_RPT_GRP_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Describes groups used to link repeating parameters within letter , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_CO_S_PER_LT_PARM_PKG dependencies on IGS_CO_S_PER_LT_PARM_ALL
12.1.1
-
Table: IGS_CO_LTR_PR_RPT_GR
12.2.2
product: IGS - Student System (Obsolete) , description: This table describes the letter parameters types that exist the the repeating group. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_CO_LTR_RPT_GRP
12.1.1
product: IGS - Student System , description: This table describes groups that will be used to link repeating parameters within the letter. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_CO_S_PER_LT_PARM_PKG SQL Statements
12.1.1
-
Table: IGS_CO_S_PERLT_RPTGP_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_CO_S_PERLT_RPTGP_ALL, object_name:IGS_CO_S_PERLT_RPTGP_ALL, status:VALID, product: IGS - Student System , description: Describes repeating groups in relation to system letter to be produced for person , implementation_dba_data: IGS.IGS_CO_S_PERLT_RPTGP_ALL ,
-
APPS.IGS_CO_S_PERLT_RPTGP_PKG SQL Statements
12.1.1
-
Table: IGS_CO_S_PERLT_RPTGP_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Describes repeating groups in relation to system letter to be produced for person , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_CO_LTR_RPT_GRP_PKG SQL Statements
12.1.1
-
PACKAGE: APPS.IGS_CO_PRC_SP_MX
12.1.1
-
PACKAGE BODY: APPS.IGS_CO_LTR_PR_RPT_GR_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_CO_LTR_RPT_GRP_PKG
12.1.1
-
APPS.IGS_CO_LTR_RPT_GRP_PKG dependencies on IGS_GE_MSG_STACK
12.1.1
-
PACKAGE BODY: APPS.IGS_CO_S_PERLT_RPTGP_PKG
12.1.1
-
APPS.IGS_CO_LTR_RPT_GRP_PKG dependencies on APP_EXCEPTION
12.1.1
-
APPS.IGS_CO_S_PERLT_RPTGP_PKG dependencies on IGS_CO_S_PERLT_RPTGP_ALL
12.1.1
-
APPS.IGS_CO_LTR_PR_RPT_GR_PKG dependencies on APP_EXCEPTION
12.1.1
-
APPS.IGS_CO_LTR_RPT_GRP_PKG dependencies on FND_MESSAGE
12.1.1
-
PACKAGE BODY: APPS.IGS_CO_S_PER_LT_PARM_PKG
12.1.1
-
APPS.IGS_CO_LTR_PR_RPT_GR_PKG dependencies on IGS_GE_MSG_STACK
12.1.1