Search Results channel_schedule_id
Overview
APPS.IES_AMS_LIST_ENTRIES_V is a reporting and integration view in the Oracle E-Business Suite Oracle Marketing (AMS) module. It exposes the contents of the AMS_LIST_ENTRIES table, which stores the individual rows (members or entries) belonging to a marketing list header. Each row represents one contact, lead, customer, or prospect entry within a list, together with the channel and campaign context in which that list entry is used.
The view is owned by the APPS schema and is intended to provide a stable, read-oriented projection of list entry data for use by concurrent programs, OBIEE/BI Publisher reports, interface programs, and downstream integrations. The presence of the CHANNEL_SCHEDULE_ID column — the term the user searched for — indicates that this view is a primary source for correlating marketing list entries to a specific channel schedule, which is the execution instance of a channel (such as an email or direct mail deployment) within a campaign.
Underlying Base Objects
The view is defined over a single documented base object: AMS_LIST_ENTRIES (referenced through a synonym). Because it is a simple, non-joined projection, there is no aggregation or outer-join logic; the view returns one row per AMS_LIST_ENTRIES record. The view does not apply a WHERE clause, so consumers receive all list entry rows regardless of source or status, and should apply their own filtering predicates for list header, campaign, channel, or channel schedule.
One notable transformation is the literal NULL F_DELETEDFLAG column appended to the select list. This constant is used by downstream ETL or interface logic as a placeholder flag; it always returns NULL and should not be treated as a real data attribute of the base table.
Key Columns
LIST_ENTRY_ID— Primary identifier for the individual list entry.LIST_HEADER_ID— Foreign key to the marketing list header that owns this entry.CHANNEL_SCHEDULE_ID— Identifier of the channel schedule associated with the entry; central to campaign execution and response tracking.CHANNEL_ID,MEDIA_ID,CAMPAIGN_ID— Channel, media, and campaign context for the entry.SOURCE_CODE,LIST_SOURCE— Indicators of how the entry was sourced into the list.CUSTOMER_ID,LEAD_ID,MARKET_SEGMENT_ID,VENDOR_ID,EVENT_OFFER_ID— Party, segmentation, vendor, and offer references.FIRST_NAME,LAST_NAME,EMAIL_ADDRESS,CUSTOMER_NAME,TITLE, and the address/phone/fax columns — contact and demographic attributes.OBJECT_VERSION_NUMBER— Optimistic locking/versioning column.F_DELETEDFLAG— Always NULL in this view.
Common Use Cases and Queries
A frequent requirement is identifying all list entries tied to a specific channel schedule — the exact search term reported. For example:
- Retrieve entries for a given channel schedule:
SELECT list_entry_id, list_header_id, customer_id, email_address FROM apps.ies_ams_list_entries_v WHERE channel_schedule_id = :p_channel_schedule_id; - Report entries by campaign and channel:
SELECT campaign_id, channel_id, count(*) FROM apps.ies_ams_list_entries_v GROUP BY campaign_id, channel_id; - Extract email recipients for a list header:
SELECT email_address FROM apps.ies_ams_list_entries_v WHERE list_header_id = :p_list_header_id AND email_address IS NOT NULL;
Because the view has no filtering or joins, it performs efficiently for set-based extracts and is well suited to bulk reporting and integration loads.
-
VIEW: APPS.IES_AMS_LIST_ENTRIES_V
12.1.1
-
VIEW: APPS.AMS_TAR_ORGANIZATION_V
12.2.2
-
VIEW: APPS.IES_AMS_LIST_ENTRIES_V
12.2.2
-
VIEW: APPS.AMS_TAR_ORGANIZATION_V
12.1.1
-
View: AMS_TAR_ORGANIZATION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TAR_ORGANIZATION_V, object_name:AMS_TAR_ORGANIZATION_V, status:VALID, product: AMS - Marketing , description: This View shows the information stored for an "AMS_ORGANIZATION" List source type. , implementation_dba_data: APPS.AMS_TAR_ORGANIZATION_V ,
-
View: AMS_TAR_PERSON_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TAR_PERSON_V, object_name:AMS_TAR_PERSON_V, status:VALID, product: AMS - Marketing , description: This View shows the information stored for an "AMS_PERSON" List source type. , implementation_dba_data: APPS.AMS_TAR_PERSON_V ,
-
View: AMS_TAR_ORGANIZATION_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TAR_ORGANIZATION_V, object_name:AMS_TAR_ORGANIZATION_V, status:VALID, product: AMS - Marketing , description: This View shows the information stored for an "AMS_ORGANIZATION" List source type. , implementation_dba_data: APPS.AMS_TAR_ORGANIZATION_V ,
-
VIEW: APPS.AMS_TAR_PERSON_V
12.1.1
-
VIEW: APPS.AMS_TAR_PERSON_V
12.2.2
-
View: AMS_TAR_PERSON_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TAR_PERSON_V, object_name:AMS_TAR_PERSON_V, status:VALID, product: AMS - Marketing , description: This View shows the information stored for an "AMS_PERSON" List source type. , implementation_dba_data: APPS.AMS_TAR_PERSON_V ,
-
View: AMS_TAR_CONTACT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TAR_CONTACT_V, object_name:AMS_TAR_CONTACT_V, status:VALID, product: AMS - Marketing , description: This View shows the information stored for an "AMS_CONTACT" List source type. , implementation_dba_data: APPS.AMS_TAR_CONTACT_V ,
-
View: AMS_TAR_CONTACT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TAR_CONTACT_V, object_name:AMS_TAR_CONTACT_V, status:VALID, product: AMS - Marketing , description: This View shows the information stored for an "AMS_CONTACT" List source type. , implementation_dba_data: APPS.AMS_TAR_CONTACT_V ,
-
VIEW: APPS.AMS_TAR_ORGANIZATION_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TAR_ORGANIZATION_V, object_name:AMS_TAR_ORGANIZATION_V, status:VALID,
-
VIEW: APPS.AMS_TAR_CONTACT_V
12.2.2
-
VIEW: APPS.AMS_TAR_ORGANIZATION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TAR_ORGANIZATION_V, object_name:AMS_TAR_ORGANIZATION_V, status:VALID,
-
VIEW: APPS.AMS_TAR_CONTACT_V
12.1.1
-
View: AMS_TAR_ACCOUNT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TAR_ACCOUNT_V, object_name:AMS_TAR_ACCOUNT_V, status:VALID, product: AMS - Marketing , description: This View shows the information stored for an "AMS_ACCOUNT" List source type. , implementation_dba_data: APPS.AMS_TAR_ACCOUNT_V ,
-
View: AMS_TAR_ACCOUNT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TAR_ACCOUNT_V, object_name:AMS_TAR_ACCOUNT_V, status:VALID, product: AMS - Marketing , description: This View shows the information stored for an "AMS_ACCOUNT" List source type. , implementation_dba_data: APPS.AMS_TAR_ACCOUNT_V ,
-
VIEW: APPS.IES_AMS_LIST_ENTRIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IES.IES_AMS_LIST_ENTRIES_V, object_name:IES_AMS_LIST_ENTRIES_V, status:VALID,
-
VIEW: APPS.IES_AMS_LIST_ENTRIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IES.IES_AMS_LIST_ENTRIES_V, object_name:IES_AMS_LIST_ENTRIES_V, status:VALID,
-
VIEW: APPS.AMS_TAR_PERSON_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TAR_PERSON_V, object_name:AMS_TAR_PERSON_V, status:VALID,
-
VIEW: APPS.AMS_TAR_PERSON_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TAR_PERSON_V, object_name:AMS_TAR_PERSON_V, status:VALID,
-
VIEW: APPS.AMS_TAR_ACCOUNT_V
12.2.2
-
VIEW: APPS.AMS_TAR_CONTACT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TAR_CONTACT_V, object_name:AMS_TAR_CONTACT_V, status:VALID,
-
VIEW: APPS.AMS_TAR_CONTACT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TAR_CONTACT_V, object_name:AMS_TAR_CONTACT_V, status:VALID,
-
VIEW: APPS.AMS_TAR_ACCOUNT_V
12.1.1
-
VIEW: APPS.AMS_TAR_ACCOUNT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TAR_ACCOUNT_V, object_name:AMS_TAR_ACCOUNT_V, status:VALID,
-
VIEW: APPS.AMS_TAR_ACCOUNT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TAR_ACCOUNT_V, object_name:AMS_TAR_ACCOUNT_V, status:VALID,
-
View: AMS_P_LIST_ENTRIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_LIST_ENTRIES_V, object_name:AMS_P_LIST_ENTRIES_V, status:VALID, product: AMS - Marketing , description: This public view returns all customers/contacts/target prospectsgenerated for a list, to be used for mailshots, telemarketing etc. , implementation_dba_data: APPS.AMS_P_LIST_ENTRIES_V ,
-
View: AMS_P_LIST_ENTRIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_LIST_ENTRIES_V, object_name:AMS_P_LIST_ENTRIES_V, status:VALID, product: AMS - Marketing , description: This public view returns all customers/contacts/target prospectsgenerated for a list, to be used for mailshots, telemarketing etc. , implementation_dba_data: APPS.AMS_P_LIST_ENTRIES_V ,
-
VIEW: APPS.AMS_P_LIST_ENTRIES_V
12.2.2
-
VIEW: APPS.AMS_P_LIST_ENTRIES_V
12.1.1
-
VIEW: AMS.AMS_LIST_ENTRIES#
12.2.2
-
APPS.AMS_LIST_MAINT_PVT SQL Statements
12.2.2
-
APPS.AMS_LIST_MAINT_PVT SQL Statements
12.1.1
-
VIEW: AMS.AMS_LIST_ENTRIES#
12.2.2
owner:AMS, object_type:VIEW, object_name:AMS_LIST_ENTRIES#, status:VALID,
-
APPS.AMS_LISTENTRY_PVT SQL Statements
12.2.2
-
PACKAGE: APPS.AMS_LIST_MAINT_PVT
12.2.2
-
APPS.AMS_LISTENTRY_PVT SQL Statements
12.1.1
-
VIEW: APPS.AMS_P_LIST_ENTRIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_LIST_ENTRIES_V, object_name:AMS_P_LIST_ENTRIES_V, status:VALID,
-
PACKAGE: APPS.AMS_LIST_MAINT_PVT
12.1.1
-
APPS.AMS_LIST_ENTRIES_PVT SQL Statements
12.1.1
-
APPS.AMS_LIST_ENTRIES_PVT SQL Statements
12.2.2
-
VIEW: APPS.AMS_P_LIST_ENTRIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_LIST_ENTRIES_V, object_name:AMS_P_LIST_ENTRIES_V, status:VALID,
-
TABLE: AMS.AMS_LIST_ENTRIES
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_LIST_ENTRIES, object_name:AMS_LIST_ENTRIES, status:VALID,
-
TABLE: AMS.AMS_LIST_ENTRIES
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_LIST_ENTRIES, object_name:AMS_LIST_ENTRIES, status:VALID,
-
APPS.IEC_VALIDATE_PVT SQL Statements
12.1.1
-
APPS.IEC_VALIDATE_PVT SQL Statements
12.2.2
-
PACKAGE: APPS.AMS_LIST_ENTRIES_PVT
12.1.1
-
PACKAGE: APPS.AMS_LIST_ENTRIES_PVT
12.2.2