Search Results as_lead_competitors




Overview

The AS_LEAD_COMPETITORS table is a core data object within the Oracle E-Business Suite (EBS) Sales Foundation module (AS). It serves a critical function in the sales opportunity management process by storing information about competitors associated with specific sales leads or opportunities. This table enables sales teams to formally track and analyze competitive threats during the sales cycle, providing essential data for competitive intelligence and win-loss analysis. Its implementation under the OSM schema and its VALID status confirm its active role in both EBS 12.1.1 and 12.2.2 environments.

Key Information Stored

The table's primary purpose is to link a sales lead (opportunity) with a known competitor entity. Its structure is defined by key columns that establish these relationships. The primary key, LEAD_COMPETITOR_ID, uniquely identifies each competitor association record. The LEAD_ID column is a foreign key that links directly to the AS_LEADS_ALL table, anchoring the competitor information to a specific sales opportunity. The COMPETITOR_ID column is a foreign key referencing the HZ_PARTIES table, which is the central repository for all trading community entities (parties) in Oracle EBS. This design ensures that competitors are defined as standardized party records, allowing for consistent reporting and integration with other CRM and TCA (Trading Community Architecture) modules.

Common Use Cases and Queries

The primary use case is generating reports on competitive landscapes for sales pipelines and historical analyses. Sales managers can query this table to identify which competitors are most frequently encountered or which opportunities face the highest competitive pressure. A common analytical query involves joining with AS_LEADS_ALL and HZ_PARTIES to list all competitors for opportunities in a specific period or sales stage.

  • Sample Query: To retrieve a list of leads with their associated competitor names, a typical SQL pattern would be: SELECT l.lead_number, p.party_name FROM osm.as_lead_competitors lc, osm.as_leads_all l, hz.parties p WHERE lc.lead_id = l.lead_id AND lc.competitor_id = p.party_id;
  • This data is often surfaced through standard Oracle Sales Online (OSO) forms and is crucial for configuring and running reports on competitive win rates and threat analysis within the application.

Related Objects

The AS_LEAD_COMPETITORS table is central to a small but important data model within Sales Foundation. Its relationships, as documented, are fundamental:

  • AS_LEADS_ALL: The primary parent table. The foreign key on LEAD_ID enforces that a competitor can only be recorded for a valid, existing sales lead.
  • HZ_PARTIES: The source for competitor master data. This relationship leverages the Trading Community Architecture to ensure data consistency.
  • AS_LEAD_COMPETITOR_PRODS: A child table that provides a more granular level of detail. It allows for the tracking of specific competitor products or solutions that are being considered against the opportunity's line items, linking back via the LEAD_COMPETITOR_ID.

This structure positions AS_LEAD_COMPETITORS as a key junction table connecting opportunity management with competitive intelligence and master party data.