Search Results ego_product_category_set
Overview
APPS.EGO_FINANCIAL_REPORTING_AGV is an Oracle E-Business Suite view owned by the APPS schema. It presents the subset of product category set data that is associated with the FinancialReporting descriptive flexfield context of the EGO_PRODUCT_CATEGORY_SET flexfield, exposed through a naming convention (the "_AGV" suffix) typical of "Attributes Group View" objects used by Oracle's attribute-grouping and descriptive flexfield infrastructure. The view is not a stored table; it is a read-only projection that joins the product category set extension table to the descriptive flexfield context extension table so that consumers can retrieve category set, category, top node, value, and flex value set identifiers without having to resolve the flexfield context codes themselves.
In Oracle EBS 12.1.1 and 12.2.2, the object is relevant wherever financial reporting category sets are configured for product information management and attribute-grouping flows. Because the view hard-codes the flexfield name EGO_PRODUCT_CATEGORY_SET and the FinancialReporting context codes, it provides a stable, pre-filtered interface for reports, concurrent programs, and integrations that need only the financial reporting slice of product category set data. This makes it useful when generating financial reporting hierarchies, populating downstream reporting structures, or validating which category sets and value sets participate in financial reporting.
Underlying Base Objects
The ETRM metadata documents two referenced base objects, both surfaced to the APPS schema as synonyms:
- EGO_PRODUCT_CAT_SET_EXT — the product category set extension table that stores the descriptive flexfield attribute values for product category sets, keyed by ATTR_GROUP_ID along with CATEGORY_SET_ID, CATEGORY_ID, TOP_NODE, VALUE_ID, and FLEX_VALUE_SET_ID.
- EGO_FND_DSC_FLX_CTX_EXT — the descriptive flexfield context extension table used here in two correlated subqueries to resolve the ATTR_GROUP_IDs that correspond to the FinancialReporting and FinancialReportingValues context codes for the EGO_PRODUCT_CATEGORY_SET flexfield (APPLICATION_ID 431).
Functionally, the view filters EGO_PRODUCT_CAT_SET_EXT down to rows whose ATTR_GROUP_ID matches either context, joining the two extension tables through the attribute group identifier rather than through a conventional foreign key. Both referenced objects are documented as synonyms in the APPS schema, which is consistent with the view being defined in APPS and depending on the EGO product information management schema underneath.
Key Columns
- CATEGORY_SET_ID — identifier of the product category set to which the flexfield attribute row belongs.
- CATEGORY_ID — identifier of the category associated with the category set row.
- TOP_NODE — the top (root) node designation for the category hierarchy or reporting structure.
- VALUE_ID — the flex value identifier associated with the attribute row, used to link to the underlying flex value definition.
- FLEX_VALUE_SET_ID — identifier of the flex value set that governs the values available for the financial reporting attribute.
Together these columns describe which category set/category combinations are registered for financial reporting, the root of their hierarchy, and the value set that supplies their values. The view exposes no additional derived or descriptive columns; it is a thin, purpose-built projection of the extension table.
Common Use Cases and Queries
Typical scenarios include retrieving the financial reporting configuration for a specific category set, identifying which flex value sets back financial reporting values, and joining the view to category set and flex value set reference tables for reporting extracts.
- List all financial reporting rows for a category set:
SELECT category_set_id, category_id, top_node, value_id, flex_value_set_id FROM apps.ego_financial_reporting_agv WHERE category_set_id = :p_category_set_id;
- Find the value sets used in financial reporting:
SELECT DISTINCT flex_value_set_id FROM apps.ego_financial_reporting_agv;
- Join to a category set reference table to display descriptive names:
SELECT v.category_set_id, cs.category_set_name, v.category_id, v.top_node
FROM apps.ego_financial_reporting_agv v,
apps.ego_category_sets_vl cs
WHERE v.category_set_id = cs.category_set_id;
Because the context codes are fixed within the view definition, callers do not need to resolve ATTR_GROUP_IDs manually. Privileges should be granted through the APPS schema, and queries should filter by CATEGORY_SET_ID where possible to limit the scan of the underlying extension table.
-
VIEW: APPS.EGO_FINANCIAL_REPORTING_AGV
12.1.1
-
VIEW: APPS.EGO_FINANCIAL_REPORTING_AGV
12.2.2
-
VIEW: APPS.EGO_PROD_CAT_SALES_MARKET_AGV
12.1.1
-
VIEW: APPS.EGO_PROD_CAT_SALES_MARKET_AGV
12.2.2
-
View: EGO_FINANCIAL_REPORTING_AGV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_FINANCIAL_REPORTING_AGV, object_name:EGO_FINANCIAL_REPORTING_AGV, status:VALID, product: EGO - Advanced Product Catalog , description: This view is used to retrieve sales and marketing attribute group values for product catalog , implementation_dba_data: APPS.EGO_FINANCIAL_REPORTING_AGV ,
-
View: EGO_FINANCIAL_REPORTING_AGV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_FINANCIAL_REPORTING_AGV, object_name:EGO_FINANCIAL_REPORTING_AGV, status:VALID, product: EGO - Advanced Product Catalog , description: This view is used to retrieve sales and marketing attribute group values for product catalog , implementation_dba_data: APPS.EGO_FINANCIAL_REPORTING_AGV ,
-
View: EGO_PROD_CAT_SALES_MARKET_AGV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_PROD_CAT_SALES_MARKET_AGV, object_name:EGO_PROD_CAT_SALES_MARKET_AGV, status:VALID, product: EGO - Advanced Product Catalog , description: This view is used to retrieve sales and marketing attribute group values for product catalog , implementation_dba_data: APPS.EGO_PROD_CAT_SALES_MARKET_AGV ,
-
View: EGO_PROD_CAT_SALES_MARKET_AGV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_PROD_CAT_SALES_MARKET_AGV, object_name:EGO_PROD_CAT_SALES_MARKET_AGV, status:VALID, product: EGO - Advanced Product Catalog , description: This view is used to retrieve sales and marketing attribute group values for product catalog , implementation_dba_data: APPS.EGO_PROD_CAT_SALES_MARKET_AGV ,
-
PACKAGE BODY: APPS.EGO_UPGRADE_USER_ATTR_VAL_PUB
12.1.1
-
PACKAGE BODY: APPS.EGO_UPGRADE_USER_ATTR_VAL_PUB
12.2.2
-
APPS.AS_CATALOG_MIGRATION SQL Statements
12.2.2
-
APPS.AS_CATALOG_MIGRATION SQL Statements
12.1.1
-
APPS.ENI_DENORM_HRCHY SQL Statements
12.2.2
-
APPS.ENI_DENORM_HRCHY SQL Statements
12.1.1
-
APPS.AS_CATALOG_MIGRATION dependencies on EGO_FND_DSC_FLX_CTX_EXT
12.1.1
-
APPS.AS_CATALOG_MIGRATION dependencies on EGO_FND_DSC_FLX_CTX_EXT
12.2.2
-
APPS.EGO_UPGRADE_USER_ATTR_VAL_PUB dependencies on EGO_USER_ATTRS_DATA_PVT
12.1.1
-
APPS.EGO_UPGRADE_USER_ATTR_VAL_PUB dependencies on EGO_USER_ATTRS_DATA_PVT
12.2.2
-
APPS.ENI_DENORM_HRCHY dependencies on EGO_FND_DSC_FLX_CTX_EXT
12.2.2
-
APPS.ENI_DENORM_HRCHY dependencies on EGO_FND_DSC_FLX_CTX_EXT
12.1.1
-
APPS.INV_ITEM_CATEGORY_PUB dependencies on EGO_USER_ATTRS_DATA_PVT
12.1.1
-
APPS.INV_ITEM_CATEGORY_PUB dependencies on EGO_USER_ATTRS_DATA_PVT
12.2.2
-
PACKAGE BODY: APPS.ENI_DENORM_HRCHY
12.2.2
-
PACKAGE BODY: APPS.ENI_DENORM_HRCHY
12.1.1
-
PACKAGE BODY: APPS.AS_CATALOG_MIGRATION
12.2.2
-
PACKAGE BODY: APPS.AS_CATALOG_MIGRATION
12.1.1
-
APPS.AS_CATALOG_MIGRATION dependencies on FND_FILE
12.2.2
-
APPS.AS_CATALOG_MIGRATION dependencies on FND_FILE
12.1.1
-
PACKAGE BODY: APPS.INV_ITEM_CATEGORY_PUB
12.1.1
-
PACKAGE BODY: APPS.INV_ITEM_CATEGORY_PUB
12.2.2
-
APPS.ENI_DENORM_HRCHY dependencies on FND_FILE
12.1.1
-
APPS.ENI_DENORM_HRCHY dependencies on FND_FILE
12.2.2