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:
PROMOTION_ID— the surrogate primary key (indexAS_PROMOTIONS_PK); also appears in unique indexAS_PROMOTIONS_U1.CODEandORG_ID— the composite business key enforced by unique indexAS_PROMOTIONS_U2.NAME,TYPE,STATUS, andENABLED_FLAG— describe identity, categorization, and lifecycle state of the promotion;TYPEandNAMEform theAS_PROMOTIONS_UK2unique constraint.CURRENCY_CODE— the currency of promotion cost fields; foreign key toFND_CURRENCIES.EXPECTED_PROMOTION_COST,EXPECTED_NUM_OF_RESPONSES,EXPECTED_REACH— planning metrics.ACTUAL_PROMOTION_COST,ACTUAL_NUM_OF_RESPONSES— post-execution actuals for comparison reporting.EVENT_NAME_ID,EVENT_FACILITY_ID,EVENT_FAC_ROOM_ID,EVENT_FAC_STAFF_ID— event-planning attribution, linking to event name, facility, room, and staff definitions.EVENT_START_DATE,EVENT_END_DATE,CALL_START_DATE,CALL_END_DATE,AD_RUN_DATE_START,AD_RUN_DATE_END— scheduling windows for events, calls, and advertising.COLLATERAL_INVENTORY_ITEM_IDandCOLLATERAL_ORGANIZATION_ID— the inventory item and organization supplying collateral.OWNER_PERSON_IDandASSIGN_PERSON_ID— owner and assignee of the promotion.- The
ATTRIBUTE1throughATTRIBUTE15flexfield columns, plusATTRIBUTE_CATEGORY, and the standardWHOaudit columns (CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE).
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:
AS_EVENT_ENROLLMENTS_ALL— joined onEVENT_IDorSOURCE_PROMOTION_IDtoPROMOTION_ID; tracks event attendees.AS_PROMOTION_SCRIPTS— joined onSCRIPT_IDandPROMOTION_ID; holds scripts associated with the promotion or event.AS_COLLATERAL_REQ_ALL— references the promotion throughLIST_ID,MAIL_BLITZ_ID, andLETTER_ID.AS_COLLATERAL_CAT_ALL— joined onPROMOTION_IDto categorize collateral.AS_PROMOTION_RELATIONSHIPS— links promotions viaPARENT_PROMOTION_IDandCHILD_PROMOTION_ID.AS_EVENT_FACILITIES_ALL,AS_EVENT_FAC_ROOMS,AS_EVENT_FAC_STAFF, andAS_EVENT_NAMES_ALL— referenced through the event-related foreign keys.FND_CURRENCIESandMTL_SYSTEM_ITEMS_B— validation lookups throughCURRENCY_CODEandCOLLATERAL_INVENTORY_ITEM_ID.AS_LIST_ENTRIES,AS_SCRIPT_QUESTIONS,AS_SCRIPT_ANSWER_ACTIONS_ALL, andAS_SCRIPT_PRE_DEFINED_ANSWERS— depend on the promotion or script identifiers for list and question management.
-
Defines promotions
-
Defines promotions
-
VIEW: OSM.AS_PROMOTIONS_ALL# 12.2.2
-
View: AS_PROMOTIONS 12.1.1
Promotions view (multi-org)
Not implemented in this database·Explore AS module →
-
View: AS_PROMOTIONS 12.2.2
Promotions view (multi-org)
Not implemented in this database·Explore AS module →
-
VIEW: OSM.AS_PROMOTIONS_ALL# 12.2.2
-
TABLE: OSM.AS_PROMOTIONS_ALL 12.1.1
-
TABLE: OSM.AS_PROMOTIONS_ALL 12.2.2
-
View: AS_EVENTS_V 12.1.1
Events view
Not implemented in this database·Explore AS module →
-
View: AS_EVENTS_V 12.2.2
Events view
Not implemented in this database·Explore AS module →
-
View: ICX_AS_EVENTS_V 12.1.1
Events View
Not implemented in this database·Explore ICX module →
-
View: ICX_AS_EVENTS_V 12.2.2
Events View
Not implemented in this database·Explore ICX module →
-
eTRM - AS Tables and Views 12.2.2
- Retrofitted
-
eTRM - AS Tables and Views 12.1.1
- Retrofitted