Search Results as_sales_methodology_b




Overview

The AS_SALES_METHODOLOGY_B table is a core data definition table within the Oracle E-Business Suite (EBS) Sales Foundation module (AS). It serves as the primary repository for defining distinct sales methodologies within the application. A sales methodology is a structured framework that guides the sales process, typically outlining a sequence of stages from initial lead qualification to final deal closure. This table stores the base, non-translatable attributes for each methodology. Its existence is fundamental to configuring and executing structured sales processes, enabling organizations to standardize their sales approach, track opportunities through defined stages, and measure pipeline performance consistently.

Key Information Stored

The table's primary key is the SALES_METHODOLOGY_ID column, a unique system-generated identifier for each methodology. While the provided ETRM metadata does not list all columns, the table's role and foreign key relationships imply it contains columns for controlling the methodology's lifecycle and usage. Typical columns in such a base table would include CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY for auditing, and a START_DATE_ACTIVE and END_DATE_ACTIVE to control the effective dating of the methodology. A SEEDED_FLAG column likely indicates whether the record is a pre-delivered Oracle methodology or a custom user-defined one. The table is designed to hold the invariant data, while user-facing names and descriptions are stored in the related translation table, AS_SALES_METHODOLOGY_TL.

Common Use Cases and Queries

This table is central to administrative setup and operational reporting. Administrators query it to review configured methodologies before assigning them to sales teams or leads. A common operational query involves joining the methodology table to the leads or opportunities table to analyze pipeline distribution by methodology stage. For instance, to list all active sales methodologies, a query might be: SELECT SALES_METHODOLOGY_ID FROM OSM.AS_SALES_METHODOLOGY_B WHERE SYSDATE BETWEEN START_DATE_ACTIVE AND NVL(END_DATE_ACTIVE, SYSDATE). Another critical use case is data validation and integration, ensuring that SALES_METHODOLOGY_ID values referenced in transactional tables like AS_LEADS_ALL exist in this master table. Reports on sales effectiveness often segment data by the methodology assigned to an opportunity.

Related Objects

As documented, the AS_SALES_METHODOLOGY_B table is the central hub in a network of related objects. The AS_SALES_METHODOLOGY_TL table provides translated names and descriptions. Transactional tables reference it via foreign key constraints: AS_LEADS_ALL links a lead to a specific methodology. Mapping tables define the methodology's structure: AS_SALES_METH_STAGE_MAP links methodologies to their constituent sales stages, and AS_SALES_METH_TASK_MAP links methodologies to recommended sales tasks. In practice, views or APIs such as AS_SALES_METHODOLOGY_VL (a view joining the base and translation tables) are typically used for application logic and reporting instead of querying the base table directly. This object is owned by the OSM schema, indicating its origin in the Oracle Sales Online module.