Search Results job_title_code
Overview
AS_LIST_ENTRIES is a Sales Foundation (AS) table owned by the OSM schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It stores the individual rows, or entries, that make up a marketing list or promotion list, capturing the customer, address, contact, phone, and lead details associated with each listed party. The documented description is simply "Holds list entries," reflecting its function as the transactional detail store for list-based marketing, telemarketing, and collateral distribution activity.
The table is registered as VALID with a documented physical schema spanning 197 columns, making it one of the wider list-management tables in the AS module. Following the heuristic Data Vault classification derived from its foreign-key structure, AS_LIST_ENTRIES is satellite-leaning: it carries descriptive attributes and denormalized snapshot data (names, addresses, phone numbers, fiscal metrics, user-defined columns) tied to a parent list and to referenced master entities, rather than acting as a pure hub or link.
Key Information Stored
The surrogate primary key is LIST_ENTRY_ID, enforced by AS_LIST_ENTRIES_PK and backed by the unique index AS_LIST_ENTRIES_U1, which serves as the documented business-key candidate. Core identifying and relationship columns include:
- LIST_ID — foreign key to AS_PROMOTIONS_ALL, identifying the parent promotion or list that owns the entry.
- CUSTOMER_ID, ADDRESS_ID, CONTACT_ID, PHONE_ID, LEAD_ID, PERSON_ID — foreign keys linking the entry to RA_CUSTOMERS, RA_ADDRESSES_ALL, RA_PHONES, AS_LEADS_ALL, and related contact/person records.
- LIST_SOURCE — indicates the origin of the list entry.
- COMPANY_NAME, FIRST_NAME, LAST_NAME, EMAIL_ADDRESS — denormalized party and contact identification for the entry.
- ADDRESS1–ADDRESS4, CITY, STATE, PROVINCE, POSTAL_CODE, COUNTRY_CODE — postal address snapshot data.
- PHONE_TYPE_CODE, AREA_CODE, PHONE_NUMBER, EXTENSION — primary telephone contact data.
- MARKED_FLAG, TRANSFER_FLAG, TRANSFER_STATUS — processing and selection indicators used by list-processing programs.
- POTENTIAL_REVENUE_CURR_FY, POTENTIAL_REVENUE_NEXT_FY — revenue projection attributes used for targeting and analysis.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE25 — the standard EBS descriptive flexfield columns.
Additional denormalized clusters include customer, address, and contact user-defined columns (CUSTOMER_USER_DEFINED1–15, ADDRESS_USER_DEFINED1–15, CONTACT_USER_DEFINED1–26), plus up to five address phone and five contact phone slot groups, confirming the table's role as a flattened working set rather than a normalized master.
Common Use Cases and Queries
Typical scenarios include retrieving all entries for a promotion, reconciling list membership to customer master, and reporting on list coverage or potential revenue. A common query pattern joins the entry to its parent promotion and customer:
SELECT le.list_entry_id, le.company_name, le.last_name, le.email_address FROM as_list_entries le WHERE le.list_id = :p_list_idSELECT le.list_entry_id, c.customer_name FROM as_list_entries le, ra_customers c WHERE le.customer_id = c.customer_idSELECT le.list_id, COUNT(*) FROM as_list_entries le GROUP BY le.list_idfor list-volume reporting.- Filtering on MARKED_FLAG or TRANSFER_FLAG to isolate entries selected for a campaign run or transfer batch.
Related Objects
- AS_PROMOTIONS_ALL — parent list/promotion; joined on LIST_ID.
- RA_CUSTOMERS — customer master; joined on CUSTOMER_ID.
- RA_ADDRESSES_ALL — address master; joined on ADDRESS_ID.
- RA_PHONES — phone master; joined on PHONE_ID.
- AS_LEADS_ALL — lead master; joined on LEAD_ID.
- AS_COLLATERAL_REQ_ALL — references AS_LIST_ENTRIES.LIST_ENTRY_ID.
- AMS_LIST_ENTRY_USAGES — tracks usage of each entry; joined on LIST_ENTRY_ID.
- IES_SVY_LIST_ENTRIES and IES_SVY_RESPONSES — survey integration referencing LIST_ENTRY_ID.
- EGO_REPORT_LIST_ENTRIES — reporting integration referencing the same key.
- AMS_TCOP_FATIGUED_BY — telemarketing fatigue tracking referencing LIST_ENTRY_ID.
-
Table: AS_LIST_ENTRIES
12.2.2
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_LIST_ENTRIES, object_name:AS_LIST_ENTRIES, status:VALID, product: AS - Sales Foundation , description: Holds list entries , implementation_dba_data: OSM.AS_LIST_ENTRIES ,
-
Table: AS_LIST_ENTRIES
12.1.1
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_LIST_ENTRIES, object_name:AS_LIST_ENTRIES, status:VALID, product: AS - Sales Foundation , description: Holds list entries , implementation_dba_data: OSM.AS_LIST_ENTRIES ,
-
Table: AS_IMPORT_INTERFACE
12.2.2
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_IMPORT_INTERFACE, object_name:AS_IMPORT_INTERFACE, status:VALID, product: AS - Sales Foundation , description: staging table to hold data to be imported , implementation_dba_data: OSM.AS_IMPORT_INTERFACE ,
-
Table: AS_IMPORT_INTERFACE
12.1.1
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_IMPORT_INTERFACE, object_name:AS_IMPORT_INTERFACE, status:VALID, product: AS - Sales Foundation , description: staging table to hold data to be imported , implementation_dba_data: OSM.AS_IMPORT_INTERFACE ,
-
View: AS_CONTACTS_V
12.1.1
product: AS - Sales Foundation , description: Contacts view , implementation_dba_data: Not implemented in this database ,
-
View: AS_CONTACTS_V
12.2.2
product: AS - Sales Foundation , description: Contacts view , implementation_dba_data: Not implemented in this database ,
-
View: AS_IMP_SL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_IMP_SL_V, object_name:AS_IMP_SL_V, status:VALID, product: AS - Sales Foundation , description: Obsolete , implementation_dba_data: APPS.AS_IMP_SL_V ,
-
View: AS_IMP_SL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_IMP_SL_V, object_name:AS_IMP_SL_V, status:VALID, product: AS - Sales Foundation , description: Obsolete , implementation_dba_data: APPS.AS_IMP_SL_V ,
-
View: AS_TODO_LISTS_V
12.2.2
product: AS - Sales Foundation , description: To do lists view , implementation_dba_data: Not implemented in this database ,
-
View: AS_PARTY_ORG_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_PARTY_ORG_CONTACTS_V, object_name:AS_PARTY_ORG_CONTACTS_V, status:VALID, product: AS - Sales Foundation , description: It stores party/site org contacts without role type and person profile related information , implementation_dba_data: APPS.AS_PARTY_ORG_CONTACTS_V ,
-
View: AS_TODO_LISTS_V
12.1.1
product: AS - Sales Foundation , description: To do lists view , implementation_dba_data: Not implemented in this database ,
-
View: AS_PARTY_ORG_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_PARTY_ORG_CONTACTS_V, object_name:AS_PARTY_ORG_CONTACTS_V, status:VALID, product: AS - Sales Foundation , description: It stores party/site org contacts without role type and person profile related information , implementation_dba_data: APPS.AS_PARTY_ORG_CONTACTS_V ,
-
View: AS_LIST_ENTRIES_V
12.1.1
product: AS - Sales Foundation , description: Displays the entries of a list. , implementation_dba_data: Not implemented in this database ,
-
View: AS_LIST_ENTRIES_V
12.2.2
product: AS - Sales Foundation , description: Displays the entries of a list. , implementation_dba_data: Not implemented in this database ,
-
View: AS_ASSIGNED_LIST_ENTRIES_V
12.1.1
product: AS - Sales Foundation , description: Assigned list entries view. , implementation_dba_data: Not implemented in this database ,
-
View: AS_ASSIGNED_LIST_ENTRIES_V
12.2.2
product: AS - Sales Foundation , description: Assigned list entries view. , implementation_dba_data: Not implemented in this database ,