Search Results cn_quota_categories




Overview

The CN_QUOTA_CATEGORIES table is a core data object within the Oracle E-Business Suite (EBS) Incentive Compensation (CN) module. It serves as the master repository for defining quota components, which are the fundamental building blocks of a compensation plan's performance measurement structure. Each row in this table represents a distinct, configurable quota category, such as "Product Revenue," "New Customer Sales," or "Services Attainment." These categories are subsequently assigned to compensation plans and roles to establish quantitative performance targets for sales representatives and other compensated personnel. The integrity of quota definition and assignment throughout the Incentive Compensation module is centrally dependent on this table.

Key Information Stored

While the provided ETRM excerpt does not list specific columns, the primary key and foreign key relationships define its critical structure. The central column is QUOTA_CATEGORY_ID, a unique system-generated identifier for each quota component. Based on standard EBS design patterns and the table's purpose, other typical columns would include a NAME and DESCRIPTION for the quota category, configuration flags for status (e.g., ACTIVE_FLAG), and audit columns such as CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, and LAST_UPDATED_BY. The table may also contain attributes controlling calculation behavior, categorization, and integration with other modules like Order Management.

Common Use Cases and Queries

This table is primarily referenced during the setup and administration of compensation plans. Common operational and reporting scenarios include listing all active quota categories for plan assignment, validating quota category usage before deactivation, and analyzing the distribution of quota types across the organization. A typical query to retrieve basic quota category information would be: SELECT quota_category_id, name, description FROM cn_quota_categories WHERE SYSDATE BETWEEN start_date_active AND NVL(end_date_active, SYSDATE). For troubleshooting or impact analysis, administrators often join this table to its child tables to identify where a specific quota category is in use, using the foreign key relationships documented in the ETRM.

Related Objects

The CN_QUOTA_CATEGORIES table maintains defined foreign key relationships with several other critical Incentive Compensation tables, as per the provided metadata:

  • CN_COMP_ANCHORS: Links quota categories to compensation anchors (CN_COMP_ANCHORS.QUOTA_CATEGORY_ID).
  • CN_PLAN_TEXTS: Associates descriptive text elements with specific quota categories (CN_PLAN_TEXTS.QUOTA_CATEGORY_ID).
  • CN_ROLE_QUOTA_CATES: Governs the assignment of quota categories to specific compensation roles (CN_ROLE_QUOTA_CATES.QUOTA_CATEGORY_ID).
These relationships enforce data integrity, ensuring that quota categories referenced in plan configurations, role assignments, and textual descriptions are valid and exist within the master CN_QUOTA_CATEGORIES table.