Search Results no_of_rows_duplicates
Overview
AMS_LIST_SELECT_ACTIONS is a Marketing (AMS) module table in the Oracle E-Business Suite database, owned by the AMS schema and present in both 12.1.1 and 12.2.2. It stores the set of Discoverer workbooks, target segments, and existing lists that are used to generate the entries of a marketing list. Each row represents one selection action — a building block that determines which customer or prospect records are drawn into a list header. Because list generation in the AMS module is composed from multiple selection steps (segment queries, spreadsheet extracts, previously built lists, cell-level filters, and data-mining scores), this table acts as the junction that records which object, of which type, was used in which order for each list.
The heuristic Data Vault classification for this object is link. This is a sensible modeling suggestion: the table contains few descriptive attributes of its own and is dominated by foreign key references to AMS_LIST_HEADERS_ALL and to the various inclusion objects (INCL_OBJECT_ID), making it primarily a relationship record rather than a hub or a satellite.
Key Information Stored
The surrogate primary key is LIST_SELECT_ACTION_ID, enforced by AMS_LIST_SELECT_ACTIONS_PK and reinforced by unique index AMS_LIST_SELECT_ACTIONS_U1 (LIST_SELECT_ACTION_ID, ZD_EDITION_NAME). Business-key candidates are defined by two additional unique constraints: AMS_LIST_SELECT_ACTIONS_UK1 (LIST_HEADER_ID, INCL_OBJECT_NAME, ARC_INCL_OBJECT_FROM) and AMS_LIST_SELECT_ACTIONS_UK2 (LIST_HEADER_ID, ORDER_NUMBER). The most operationally significant columns are:
LIST_SELECT_ACTION_ID— surrogate primary key for the action row.LIST_HEADER_ID— the parent marketing list to which the action belongs.ORDER_NUMBER— sequence in which actions are executed during list generation.LIST_ACTION_TYPE— classifies the selection action (e.g., workbook, segment, prior list).INCL_OBJECT_ID— identifies the specific object being included; this is the polymorphic FK column.INCL_OBJECT_NAME— the descriptive name of the inclusion object, part of the business key.ARC_INCL_OBJECT_FROM— the archived/original source type of the included object, also part of the business key.INCL_OBJECT_WB_SHEET,INCL_OBJECT_WB_OWNER— sheet and owner context for Discoverer workbook inclusions.INCL_OBJECT_CELL_CODE— cell-level qualifier when the inclusion references a cell.ACTION_USED_BY_ID— identifies the model or score that drove the action.RANK— ordering or priority rank of the selection result.NO_OF_ROWS_AVAILABLE,NO_OF_ROWS_REQUESTED,NO_OF_ROWS_USED— volume metrics that trace yield from the source through to the final list.NO_OF_ROWS_TARGETED,NO_OF_ROWS_DUPLICATES,RUNNING_TOTAL,DELTA— audit figures for targeting, deduplication, and cumulative counts.DISTRIBUTION_PCTandRESULT_TEXT— allocation percentage and textual outcome of the action.SECURITY_GROUP_ID— the operating unit context enforced againstFND_SECURITY_GROUPS.
Standard Who columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, OBJECT_VERSION_NUMBER) and the DESCRIPTION column complete the 32-column physical schema.
Common Use Cases and Queries
The most frequent reporting need is to reconstruct how a given marketing list was populated. The following pattern lists the ordered actions for a list:
SELECT order_number, list_action_type, incl_object_name, no_of_rows_requested, no_of_rows_used FROM ams_list_select_actions WHERE list_header_id = :p_list_id ORDER BY order_number;
Analysts also measure yield and drop-off per action by comparing NO_OF_ROWS_AVAILABLE, NO_OF_ROWS_REQUESTED, NO_OF_ROWS_USED, and NO_OF_ROWS_DUPLICATES. Counting the entry rows produced by each action requires joining to AMS_LIST_ENTRIES on LIST_SELECT_ACTION_ID:
SELECT a.list_select_action_id, a.incl_object_name, COUNT(e.list_entry_id) FROM ams_list_select_actions a LEFT JOIN ams_list_entries e ON e.list_select_action_id = a.list_select_action_id WHERE a.list_header_id = :p_list_id GROUP BY a.list_select_action_id, a.incl_object_name;
A third common scenario identifies every list that uses a particular segment, query, or workbook — useful for impact analysis before modifying a query:
SELECT list_header_id, order_number, list_action_type FROM ams_list_select_actions WHERE incl_object_id = :p_query_id;
Related Objects
Because INCL_OBJECT_ID is polymorphic, the table references several candidate parent objects. The documented foreign keys and their join columns are:
AMS_LIST_HEADERS_ALL— joined onACTION_USED_BY_IDand onINCL_OBJECT_ID; the primary parent for the list itself.AMS_CELLS_ALL_B— joined onINCL_OBJECT_ID; supports cell-level inclusions.AMS_LIST_QUERIES_ALL— joined onINCL_OBJECT_ID; the target-segment query definition.AMS_DM_MODELS_ALL_BandAMS_DM_SCORES_ALL_B— both joined onACTION_USED_BY_ID; record the data-mining model or score that generated the action.AMS_IMP_LIST_HEADERS_ALL— joined onINCL_OBJECT_ID; prior imported lists reused as sources.AMS_DISCOVERER_SQL— joined onINCL_OBJECT_ID; the Discoverer workbook SQL backing an action.FND_SECURITY_GROUPS— joined onSECURITY_GROUP_ID; enforces org-level access.AMS_LIST_ENTRIESandAMS_LIST_TMP_ENTRIES— both reference this table viaLIST_SELECT_ACTION_ID; these are the child tables holding the actual generated entries and their temporary working set.
Together these relationships make AMS_LIST_SELECT_ACTIONS the central link between a list header and the diverse upstream selection sources, and the anchor point for entry-level and yield reporting.
-
Table: AMS_LIST_SELECT_ACTIONS
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_LIST_SELECT_ACTIONS, object_name:AMS_LIST_SELECT_ACTIONS, status:VALID, product: AMS - Marketing , description: This table stores the set of discoverer workbook, target segments and existing lists which are used to generate the set of list entries. , implementation_dba_data: AMS.AMS_LIST_SELECT_ACTIONS ,
-
Table: AMS_LIST_SELECT_ACTIONS
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_LIST_SELECT_ACTIONS, object_name:AMS_LIST_SELECT_ACTIONS, status:VALID, product: AMS - Marketing , description: This table stores the set of discoverer workbook, target segments and existing lists which are used to generate the set of list entries. , implementation_dba_data: AMS.AMS_LIST_SELECT_ACTIONS ,
-
Table: AMS_LIST_HEADERS_ALL
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_LIST_HEADERS_ALL, object_name:AMS_LIST_HEADERS_ALL, status:VALID, product: AMS - Marketing , description: This table stores the name and other details about a target list. , implementation_dba_data: AMS.AMS_LIST_HEADERS_ALL ,
-
Table: AMS_LIST_HEADERS_ALL
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_LIST_HEADERS_ALL, object_name:AMS_LIST_HEADERS_ALL, status:VALID, product: AMS - Marketing , description: This table stores the name and other details about a target list. , implementation_dba_data: AMS.AMS_LIST_HEADERS_ALL ,
-
VIEW: AMS.AMS_LIST_SELECT_ACTIONS#
12.2.2
-
VIEW: AMS.AMS_LIST_SELECT_ACTIONS#
12.2.2
owner:AMS, object_type:VIEW, object_name:AMS_LIST_SELECT_ACTIONS#, status:VALID,
-
VIEW: APPS.IEX_PLIST_NAMES_UWQ_V
12.1.1
-
View: AST_PLIST_NAMES_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_PLIST_NAMES_UWQ_V, object_name:AST_PLIST_NAMES_UWQ_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_PLIST_NAMES_UWQ_V ,
-
View: AST_PLIST_NAMES_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_PLIST_NAMES_UWQ_V, object_name:AST_PLIST_NAMES_UWQ_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_PLIST_NAMES_UWQ_V ,
-
VIEW: APPS.AST_PLIST_NAMES_UWQ_V
12.2.2
-
VIEW: APPS.AST_PLIST_NAMES_UWQ_V
12.1.1
-
VIEW: APPS.IEX_PLIST_NAMES_UWQ_V
12.2.2
-
APPS.AMS_MANUAL_LIST_GEN SQL Statements
12.1.1
-
VIEW: AMS.AMS_LIST_HEADERS_ALL#
12.2.2
-
VIEW: APPS.IEX_PLIST_NAMES_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_PLIST_NAMES_UWQ_V, status:VALID,
-
VIEW: APPS.IEX_PLIST_NAMES_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_PLIST_NAMES_UWQ_V, status:VALID,
-
APPS.AMS_MANUAL_LIST_GEN SQL Statements
12.2.2
-
VIEW: APPS.AST_PLIST_NAMES_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_PLIST_NAMES_UWQ_V, object_name:AST_PLIST_NAMES_UWQ_V, status:VALID,
-
VIEW: APPS.AST_PLIST_NAMES_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_PLIST_NAMES_UWQ_V, object_name:AST_PLIST_NAMES_UWQ_V, status:VALID,
-
APPS.AMS_LISTDEDUPE_PVT SQL Statements
12.1.1
-
TABLE: AMS.AMS_LIST_SELECT_ACTIONS
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_LIST_SELECT_ACTIONS, object_name:AMS_LIST_SELECT_ACTIONS, status:VALID,
-
TABLE: AMS.AMS_LIST_SELECT_ACTIONS
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_LIST_SELECT_ACTIONS, object_name:AMS_LIST_SELECT_ACTIONS, status:VALID,
-
APPS.AMS_LISTDEDUPE_PVT SQL Statements
12.2.2
-
VIEW: AMS.AMS_LIST_HEADERS_ALL#
12.2.2
owner:AMS, object_type:VIEW, object_name:AMS_LIST_HEADERS_ALL#, status:VALID,
-
View: AMS_P_LIST_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_LIST_HEADERS_V, object_name:AMS_P_LIST_HEADERS_V, status:VALID, product: AMS - Marketing , description: This public view returns the general information about marketing list. , implementation_dba_data: APPS.AMS_P_LIST_HEADERS_V ,
-
View: AMS_P_LIST_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_LIST_HEADERS_V, object_name:AMS_P_LIST_HEADERS_V, status:VALID, product: AMS - Marketing , description: This public view returns the general information about marketing list. , implementation_dba_data: APPS.AMS_P_LIST_HEADERS_V ,
-
VIEW: APPS.AMS_LIST_HEADERS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_LIST_HEADERS_VL, object_name:AMS_LIST_HEADERS_VL, status:VALID,
-
VIEW: APPS.AMS_LIST_HEADERS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_LIST_HEADERS_VL, object_name:AMS_LIST_HEADERS_VL, status:VALID,
-
View: AMS_LIST_HEADERS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_LIST_HEADERS_VL, object_name:AMS_LIST_HEADERS_VL, status:VALID, product: AMS - Marketing , implementation_dba_data: APPS.AMS_LIST_HEADERS_VL ,
-
View: AMS_LIST_HEADERS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_LIST_HEADERS_VL, object_name:AMS_LIST_HEADERS_VL, status:VALID, product: AMS - Marketing , implementation_dba_data: APPS.AMS_LIST_HEADERS_VL ,
-
APPS.AMS_LIST_MAINT_PVT SQL Statements
12.1.1
-
APPS.AMS_LIST_MAINT_PVT SQL Statements
12.2.2
-
APPS.AMS_LIST_PURGE_PVT SQL Statements
12.2.2
-
APPS.AMS_LIST_PURGE_PVT SQL Statements
12.1.1
-
VIEW: APPS.AMS_P_LIST_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_LIST_HEADERS_V, object_name:AMS_P_LIST_HEADERS_V, status:VALID,
-
VIEW: APPS.AMS_P_LIST_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_LIST_HEADERS_V, object_name:AMS_P_LIST_HEADERS_V, status:VALID,
-
TABLE: AMS.AMS_LIST_HEADERS_ALL
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_LIST_HEADERS_ALL, object_name:AMS_LIST_HEADERS_ALL, status:VALID,
-
APPS.AMS_LISTGENERATION_UTIL_PKG SQL Statements
12.1.1
-
APPS.AMS_LISTGENERATION_UTIL_PKG SQL Statements
12.2.2
-
APPS.AMS_LIST_OPTIONS_PVT SQL Statements
12.2.2
-
APPS.AMS_LIST_OPTIONS_PVT SQL Statements
12.1.1
-
TABLE: AMS.AMS_LIST_HEADERS_ALL
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_LIST_HEADERS_ALL, object_name:AMS_LIST_HEADERS_ALL, status:VALID,
-
APPS.AMS_LISTHEADER_PVT SQL Statements
12.1.1
-
APPS.AMS_LISTHEADER_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.AMS_MANUAL_LIST_GEN
12.2.2
-
PACKAGE BODY: APPS.AMS_MANUAL_LIST_GEN
12.1.1
-
APPS.AMS_LIST_HEADERS_ALL_PKG SQL Statements
12.2.2
-
APPS.AMS_LIST_HEADERS_VL_PKG SQL Statements
12.2.2
-
APPS.AMS_LIST_HEADERS_ALL_PKG SQL Statements
12.1.1
-
APPS.AMS_LIST_HEADERS_VL_PKG SQL Statements
12.1.1