Results for “event_food_available_flag”

14 results




AI-generated from documented ETRM metadata — verify critical details on the linked pages.

Overview

AS_PROMOTIONS_ALL is a Sales Foundation table owned by the OSM schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It defines promotions, campaigns, mail blitzes, call blitzes, and events at the transaction level, acting as the central header table for the Sales Foundation promotional subsystem. Each row captures a single promotional object together with its cost, reach, collateral, and event scheduling attributes.

A data vault classification heuristic mined from the foreign key structure identifies this table as a hub. Modelers should treat it as a hub because it holds a surrogate primary key (PROMOTION_ID) plus natural business keys (CODE, ORG_ID), while descriptive and transactional attributes could be separated into satellites. This is a modeling suggestion, not a physical fact.

Key Information Stored

The table contains 97 documented columns. The most significant are:

Common Use Cases and Queries

Because the table stores header-level promotion data, it commonly drives promotion status reports, budget versus actual cost analysis, event calendars, and collateral fulfillment.

A simple lookup by business key:

  • SELECT promotion_id, name, status, event_start_date FROM as_promotions_all WHERE code = :code AND org_id = :org_id;

Cost-versus-response analysis by status:

  • SELECT status, SUM(expected_promotion_cost) expected_cost, SUM(actual_promotion_cost) actual_cost, SUM(expected_num_of_responses) expected_responses, SUM(actual_num_of_responses) actual_responses FROM as_promotions_all WHERE org_id = :org_id GROUP BY status;

Event scheduling window:

  • SELECT promotion_id, name, event_start_date, event_end_date FROM as_promotions_all WHERE event_start_date BETWEEN :from_date AND :to_date ORDER BY event_start_date;

Because the table is a hub, reporting queries frequently join satellites and links, such as AS_PROMOTION_SCRIPTS for scripting and AS_EVENT_ENROLLMENTS_ALL for enrollment counts.

Related Objects

The table participates in a dense relational graph. Significant related objects include: