Search Results as_ap_business_drivers
Overview
The AS_AP_BUSINESS_DRIVERS table is a core data repository within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the Sales Foundation module (AS). As documented in the ETRM, this table is owned by the OSM schema and is responsible for storing all business drivers associated with account plans. An account plan is a strategic sales tool used to manage key customer accounts, and business drivers represent the critical objectives, challenges, or opportunities that influence the customer's business strategy. The table's primary role is to establish a formal, auditable link between high-level strategic goals and the tactical account plans managed within the system, enabling structured strategic planning and performance tracking.
Key Information Stored
The table's structure is designed to uniquely identify and categorize each business driver and tie it to its parent account plan. The primary key is the BUSINESS_DRIVER_ID, a unique system-generated identifier for each driver record. The most critical foreign key is ACCOUNT_PLAN_ID, which links each business driver to a specific plan in the AS_AP_ACCOUNT_PLANS table, enforcing referential integrity. While the full column list is not detailed in the provided excerpt, typical columns in such a table would include descriptive fields for the driver's name and details, classification codes, weight or priority indicators, target metrics, and standard WHO columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE) for audit purposes.
Common Use Cases and Queries
This table is central to reporting and analyzing the strategic foundation of account plans. Common operational use cases include generating reports that list all business drivers for a specific key account, analyzing the distribution of driver types across a sales portfolio, or auditing plan completeness. A typical query would join AS_AP_BUSINESS_DRIVERS to AS_AP_ACCOUNT_PLANS and potentially to customer tables to produce a strategic overview. For example:
SELECT plan.plan_name, driver.business_driver_id, driver.driver_description FROM osm.as_ap_business_drivers driver, osm.as_ap_account_plans plan WHERE driver.account_plan_id = plan.account_plan_id AND plan.customer_id = :p_cust_id;
Data in this table may also be accessed via dedicated Oracle Sales APIs or used as a source for custom dashboards measuring strategic alignment in the sales pipeline.
Related Objects
The primary related object, as defined by its foreign key constraint, is the AS_AP_ACCOUNT_PLANS table. This is the parent table, and every record in AS_AP_BUSINESS_DRIVERS must correspond to a valid account_plan_id within it. Given its function, this table is likely referenced by other child tables or views within the Account Planning subsystem, such as those storing specific initiatives, action items, or performance metrics tied to each business driver. While not specified in the metadata, standard EBS practice suggests the existence of a corresponding view (e.g., AS_AP_BUSINESS_DRIVERS_V) for safer application querying and potentially public APIs (e.g., AS_ACCOUNT_PLAN_PUB) for programmatic access and maintenance of the data.
-
Table: AS_AP_BUSINESS_DRIVERS
12.1.1
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_AP_BUSINESS_DRIVERS, object_name:AS_AP_BUSINESS_DRIVERS, status:VALID, product: AS - Sales Foundation , description: This table will hold all the business drivers for each of the account plans , implementation_dba_data: OSM.AS_AP_BUSINESS_DRIVERS ,
-
Table: AS_AP_BUSINESS_DRIVERS
12.2.2
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_AP_BUSINESS_DRIVERS, object_name:AS_AP_BUSINESS_DRIVERS, status:VALID, product: AS - Sales Foundation , description: This table will hold all the business drivers for each of the account plans , implementation_dba_data: OSM.AS_AP_BUSINESS_DRIVERS ,
-
Table: AS_AP_ACCOUNT_PLANS
12.1.1
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_AP_ACCOUNT_PLANS, object_name:AS_AP_ACCOUNT_PLANS, status:VALID, product: AS - Sales Foundation , description: This is the header table that will hold account plans for various customers , implementation_dba_data: OSM.AS_AP_ACCOUNT_PLANS ,
-
Table: AS_AP_ACCOUNT_PLANS
12.2.2
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_AP_ACCOUNT_PLANS, object_name:AS_AP_ACCOUNT_PLANS, status:VALID, product: AS - Sales Foundation , description: This is the header table that will hold account plans for various customers , implementation_dba_data: OSM.AS_AP_ACCOUNT_PLANS ,