Search Results no_of_rows_active
Overview
APPS.AST_PLIST_NAMES_UWQ_V is a reporting and integration view in Oracle E-Business Suite, owned by the APPS schema. It exposes the header-level attributes of Oracle Advanced Marketing (AMS) prospect lists — internally termed list headers — in a structure conforming to the EBS "UWQ" (Universal Work Queue) resource-view convention. The name prefix AST_PLIST_NAMES reflects the Oracle Sales/TeleSales (AST) product family, while the _UWQ_V suffix indicates it is intended for consumption by the Universal Work Queue framework.
The view's defining characteristic is that it projects two synthetic leading columns, IEU_OBJECT_FUNCTION and IEU_OBJECT_PARAMETERS (both returned as NULL), together with the literal constants 'RS_INDIVIDUAL' as RESOURCE_TYPE and OWNER_USER_ID as RESOURCE_ID. In doing so, it re-casts each prospect list as a UWQ-assignable resource of type "Individual", so that the Interactive Intelligence / IEU routing engine can treat prospect lists as work items assigned to a resource. This makes the view a bridge between AMS list management and UWQ/IEU media routing rather than a pure reporting object, although its columns are equally usable for ad hoc list inventory reporting.
Underlying Base Objects
The view is defined over a single documented base object: AMS_LIST_HEADERS_VL, which is itself a view (the "_VL" suffix denotes a translated/MLS view pairing AMS_LIST_HEADERS_B and AMS_LIST_HEADERS_TL). The definition is a straightforward SELECT ... FROM ams_list_headers_vl alh with no joins, no filters, and no aggregation. Every functional column in AST_PLIST_NAMES_UWQ_V is therefore inherited unmodified from AMS_LIST_HEADERS_VL, with the sole exception of the aliased UWQ columns described above. Because the source is a translation-enabled view, LIST_NAME and DESCRIPTION are returned in the session's language.
Key Columns
LIST_HEADER_ID— Primary identifier of the prospect list; the join key back toAMS_LIST_HEADERSand its child line tables.LIST_NAME,DESCRIPTION— List identity and narrative, sourced from the translated table.LIST_TYPE,LIST_SOURCE,LIST_SOURCE_TYPE,LIST_PRIORITY,QUERY_ID— Classify how and from where the list was built (e.g. query-based vs. imported).OWNER_USER_ID,OWNER_PERSON_ID,ASSIGN_PERSON_ID,ASSIGNED_TO— Ownership and assignment, which drive theRESOURCE_IDprojection.STATUS_CODE,USER_STATUS_ID,STATUS_DATE,ENABLED_FLAG,ACCESS_LEVEL— Lifecycle and entitlement state.NO_OF_ROWS_IN_LIST,NO_OF_ROWS_ACTIVE,NO_OF_ROWS_INACTIVE,NO_OF_ROWS_DUPLICATES— Precomputed counters describing list composition.NO_OF_ROWS_ACTIVEis the count of rows eligible for generation contact, and is the column most commonly targeted by the search term "no_of_rows_active".GENERATION_TYPE,REPEAT_EXCLUDE_TYPE,ROW_SELECTION_TYPE,DEDUPE_DURING_GENERATION_FLAG,GENERATE_CONTROL_GROUP_FLAG,LAST_GENERATION_SUCCESS_FLAG— Control the list-generation engine's behaviour.FORECASTED_START_DATE,FORECASTED_END_DATE,ACTUAL_END_DATE,SENT_OUT_DATE— Scheduling and execution timestamps.ORG_ID— Multi-org operating unit discriminator, requiring the MOAC security context.OBJECT_VERSION_NUMBER— Optimistic locking column for OAF-based maintenance.
Common Use Cases and Queries
Typical usage is to inventory prospect lists with their population statistics, or to feed the UWQ/IEU engine. To find lists with active rows, a common query is:
SELECT list_header_id, list_name, no_of_rows_in_list, no_of_rows_active, no_of_rows_inactive, status_code FROM apps.ast_plist_names_uwq_v WHERE no_of_rows_active > 0 AND org_id = :p_org_id ORDER BY no_of_rows_active DESC;- Locate empty or exhausted lists:
... WHERE NVL(no_of_rows_active,0) = 0 AND enabled_flag = 'Y'; - Report generation readiness: filter on
last_generation_success_flag,sent_out_date, andforecasted_end_date. - UWQ consumption:
SELECT resource_type, resource_id, list_header_id, list_name FROM apps.ast_plist_names_uwq_v WHERE owner_user_id = :user_id;
Because the view performs no filtering, callers must apply their own ORG_ID and status predicates; the NO_OF_ROWS_* counters are snapshots maintained by AMS generation and may lag the detail tables. For current counts, aggregate the underlying list-line table instead.
-
APPS.AMS_MANUAL_LIST_GEN SQL Statements
12.1.1
-
APPS.AMS_MANUAL_LIST_GEN SQL Statements
12.2.2
-
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
-
VIEW: APPS.IEX_PLIST_NAMES_UWQ_V
12.1.1
-
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: 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: 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,
-
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,
-
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,
-
APPS.AMS_LIST_PURGE_PVT SQL Statements
12.2.2
-
APPS.AMS_LIST_PURGE_PVT SQL Statements
12.1.1
-
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: 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 ,
-
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,
-
APPS.AMS_LIST_MAINT_PVT SQL Statements
12.2.2
-
APPS.AMS_LIST_MAINT_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AMS_MANUAL_LIST_GEN
12.2.2
-
PACKAGE BODY: APPS.AMS_MANUAL_LIST_GEN
12.1.1
-
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,
-
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,
-
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_LIST_OPTIONS_PVT 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
-
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
-
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_VL_PKG SQL Statements
12.1.1
-
APPS.AMS_LIST_HEADERS_ALL_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AMS_LIST_PURGE_PVT
12.1.1
-
PACKAGE BODY: APPS.AMS_LIST_PURGE_PVT
12.2.2
-
PACKAGE BODY: APPS.AMS_LIST_HEADERS_VL_PKG
12.1.1
-
PACKAGE BODY: APPS.AMS_LIST_HEADERS_VL_PKG
12.2.2
-
PACKAGE: APPS.AMS_LISTHEADER_PVT
12.2.2
-
PACKAGE: APPS.AMS_LISTHEADER_PVT
12.1.1
-
PACKAGE BODY: APPS.AMS_LIST_HEADERS_ALL_PKG
12.1.1
-
PACKAGE BODY: APPS.AMS_LIST_HEADERS_ALL_PKG
12.2.2
-
PACKAGE BODY: APPS.AMS_LISTGENERATION_UTIL_PKG
12.2.2
-
PACKAGE BODY: APPS.AMS_LISTGENERATION_UTIL_PKG
12.1.1