Search Results fnd_product_groups
Overview
The FND_PRODUCT_GROUPS table is a core Applications Database (AD) repository for site-specific information utilized by various Oracle E-Business Suite (EBS) administration utilities. It functions as a master registry for logical groupings of Oracle EBS products and modules installed within a specific instance. This table is fundamental to the architecture of EBS, enabling the system's administrative tools to manage and reference the suite's constituent applications. Its data is critical for operations performed by the AD utilities, which handle tasks such as patching, upgrades, and maintenance. The table resides in the APPLSYS schema, underscoring its foundational role in the application tier's data structure.
Key Information Stored
The table's structure is designed to uniquely identify and categorize product groups. The primary columns, as indicated by the primary and unique key constraints, are the central data points. The PRODUCT_GROUP_ID column serves as the system-generated, numeric primary key for each record. The PRODUCT_GROUP_NAME column holds the unique, descriptive name for the product group, such as 'Oracle Applications' or the name of a specific product family. While the provided metadata does not list all columns, typical implementations may include status, creation, and last update date columns to track the lifecycle of the product group definition within the system.
Common Use Cases and Queries
The primary use case is administrative reporting and verification of the EBS product landscape. Database administrators and functional implementors query this table to confirm the registered product groups, which is a prerequisite step for many patching and upgrade activities. A fundamental query retrieves the list of all installed product groups:
- SELECT product_group_id, product_group_name FROM applsys.fnd_product_groups ORDER BY product_group_name;
This information is often cross-referenced with other AD tables when diagnosing installation issues or preparing for a maintenance cycle. The data ensures that AD utilities target the correct set of application files and database objects during their execution.
Related Objects
As a master table with defined primary and unique keys, FND_PRODUCT_GROUPS is referenced by other objects within the APPLSYS schema, particularly those related to the AD utilities and the Applications Manager. While the specific foreign key relationships are not detailed in the provided excerpt, the existence of the FND_PRODUCT_GROUPS_PK (on PRODUCT_GROUP_ID) and FND_PRODUCT_GROUPS_UK1 (on PRODUCT_GROUP_NAME) constraints strongly implies that these columns are referenced elsewhere. It is common for this table to have relationships with other FND tables that store product installation details, patch history, or module-specific registry information, where PRODUCT_GROUP_ID acts as a foreign key.
-
Table: FND_PRODUCT_GROUPS
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:AD.FND_PRODUCT_GROUPS, object_name:FND_PRODUCT_GROUPS, status:VALID, product: AD - Applications DBA , description: Site specific information used by AD utilities , implementation_dba_data: APPLSYS.FND_PRODUCT_GROUPS ,
-
Table: FND_PRODUCT_GROUPS
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:AD.FND_PRODUCT_GROUPS, object_name:FND_PRODUCT_GROUPS, status:VALID, product: AD - Applications DBA , description: Site specific information used by AutoInstall , implementation_dba_data: APPLSYS.FND_PRODUCT_GROUPS ,