Search Results sup_repeating_group_cd
Overview
The IGS_CO_LTR_RPT_GRP_ALL table is a core repository for defining hierarchical repeating group structures within the correspondence letter generation functionality of Oracle E-Business Suite, specifically within the IGS (presumably Institutional Global Systems) module. Its primary role is to establish and manage the logical grouping of repeating parameters or data elements within a system-generated letter. This structure is essential for producing complex, data-driven correspondence where certain sections, such as line items or dependent details, need to be iterated. The table supports multi-organization data through the ORG_ID column, making it a central "ALL" table in the EBS architecture.
Key Information Stored
The table's structure is defined by a composite primary key and columns that manage group hierarchy and metadata. The most critical columns include:
- CORRESPONDENCE_TYPE, LETTER_REFERENCE_NUMBER, LETTER_REPEATING_GROUP_CD: Together, these form the unique identifier (Primary Key) for a specific repeating group within a specific letter template.
- DESCRIPTION: Provides a meaningful explanation of the group's purpose.
- SUP_REPEATING_GROUP_CD: A pivotal column for establishing hierarchy. It contains the code of a superior (parent) group, enabling the nesting of repeating groups within other repeating groups. A NULL value in this column typically indicates a top-level group.
- ORG_ID: The Operating Unit identifier, enforcing data partitioning in a multi-org environment.
- Standard WHO Columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN): For auditing and tracking changes.
Common Use Cases and Queries
This table is primarily accessed during the configuration of letter templates and the runtime generation of letters. A common operational query is to retrieve the hierarchical structure of all repeating groups for a specific letter to validate setup or troubleshoot generation issues. For example, to find all child groups under a specific parent group for a letter, one might use:
SELECT child.LETTER_REPEATING_GROUP_CD, child.DESCRIPTION
FROM IGS_CO_LTR_RPT_GRP_ALL child
WHERE child.CORRESPONDENCE_TYPE = '<TYPE>'
AND child.LETTER_REFERENCE_NUMBER = <REF_NUM>
AND child.SUP_REPEATING_GROUP_CD = '<PARENT_GROUP_CD>'
AND child.ORG_ID = <OU_ID>;
Another frequent reporting use case involves listing all top-level groups (those without a parent) for a correspondence type: SELECT * FROM IGS_CO_LTR_RPT_GRP_ALL WHERE SUP_REPEATING_GROUP_CD IS NULL;. The column SUP_REPEATING_GROUP_CD, which was the user's search term, is the linchpin for these hierarchical queries.
Related Objects
The table maintains several documented foreign key relationships, indicating its integration within the correspondence subsystem:
- Primary Key: IGS_CO_LTR_RPT_GRP_PK (CORRESPONDENCE_TYPE, LETTER_REFERENCE_NUMBER, LETTER_REPEATING_GROUP_CD).
- Self-Referencing Foreign Key: The SUP_REPEATING_GROUP_CD column references the LETTER_REPEATING_GROUP_CD in the same table, enforcing valid parent-child relationships.
- Referenced By:
- IGS_CO_LTR_PR_RPT_GR_ALL: Likely links repeating groups to specific parameters.
- IGS_CO_S_PERLT_RPTGP_ALL: Likely associates groups with personalized letter templates.
- References:
- IGS_CO_S_LTR: Establishes that the letter reference and type are valid master letter definitions.
-
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,
-
VIEW: APPS.IGS_CO_S_PERLT_RPTGP
12.1.1
-
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.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_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 ,
-
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 ,
-
VIEW: APPS.IGS_CO_LTR_RPT_GRP
12.1.1
-
APPS.IGS_CO_LTR_RPT_GRP_PKG dependencies on IGS_CO_LTR_RPT_GRP_ALL
12.1.1
-
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_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,
-
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,
-
APPS.IGS_CO_S_PERLT_RPTGP_PKG SQL Statements
12.1.1
-
APPS.IGS_CO_LTR_RPT_GRP_PKG SQL Statements
12.1.1
-
APPS.IGS_CO_S_PERLT_RPTGP_PKG dependencies on IGS_CO_S_PERLT_RPTGP_ALL
12.1.1
-
PACKAGE BODY: APPS.IGS_CO_LTR_RPT_GRP_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_CO_S_PERLT_RPTGP_PKG
12.1.1
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,