Search Results accept_flag
Overview
The APPS.AST_MYTEAM_SALESLEAD_UWQ_V view is a TeleSales (AST) reporting and integration object that exposes sales leads assigned to a resource's team, structured specifically to support a Universal Work Queue (UWQ) or Salesforce-style external consumer. The suffix "UWQ" indicates its design intent: it flattens sales lead data, associated party information, primary contact details, and resource identifiers into a single queryable row set that a work queue or CRM integration layer can consume without issuing multiple joins.
The view is owned by the APPS schema and is documented as VALID in ETRM 12.2.2. Its column aliasing (prefixes such as IEU_ and RESOURCE_) and the inclusion of OBJECT_FUNCTION, OBJECT_PARAMETERS, and a primary-key parameter pair reveal a deliberate integration contract: each row carries the metadata required to locate, route, and deep-link a sales lead record in an external system. This makes the view relevant not only to in-EBS reporting but to any middleware or CRM synchronization process that ingests TeleSales leads.
Underlying Base Objects
Per the documented metadata, the view is defined over the following objects:
- AS_SALES_LEADS (synonym) — the primary driving table, supplying lead identity, status, assignment, budget, and flag columns.
- AS_SALES_LEAD_RANKS_TL (synonym) — provides the translated rank meaning exposed as
RANK_MEANING. - AS_STATUSES_VL (view) — supplies the translated status meaning (
STATUS_MEANING). - AS_ACCESSES_ALL (view) — the salesforce/access association linking leads to resources, feeding
RESOURCE_IDandCREATION_DATE. - AS_LOOKUPS and OE_LOOKUPS (views) — lookup value resolution for coded attributes.
- JTF_OBJECTS_B (synonym) — the object-function registry underlying the
IEU_OBJECT_FUNCTIONandIEU_OBJECT_PARAMETERScolumns. - JTF_RS_RESOURCE_EXTNS (synonym) — resource extension data supporting the
RS_INDIVIDUALresource typing. - HZ_PARTIES, HZ_ORG_CONTACTS, HZ_CONTACT_POINTS, HZ_PARTY_SITES, HZ_LOCATIONS, HZ_RELATIONSHIPS (synonyms) — the TCA foundation supplying party name, contact names, and phone/contact-point details.
The view therefore joins three functional domains: TeleSales lead management (AS_*), JTF resource and object infrastructure, and TCA party/contact data (HZ_*).
Key Columns
IEU_OBJECT_FUNCTION,IEU_OBJECT_PARAMETERS,IEU_MEDIA_TYPE_UUID,IEU_PARAM_PK_COL,IEU_PARAM_PK_VALUE— integration routing metadata; the PK column is hard-coded to'SALES_LEAD_ID'.RESOURCE_ID,RESOURCE_TYPE— the assigned salesforce resource and its type (RS_INDIVIDUAL).SALES_LEAD_ID,LEAD_NUMBER,DESCRIPTION— lead identity.STATUS_CODE,STATUS_MEANING— lead status and its translated meaning.PARTY_ID,PARTY_NAME,CONTACT_PARTY_ID,PRIMARY_CONTACT_FIRST_NAME,PRIMARY_CONTACT_LAST_NAME— customer and primary contact identification.QUALIFIED_FLAG— indicates whether the lead has been qualified; central to filtering qualified leads.URGENT_FLAG,ACCEPT_FLAG,KEEP_FLAG,IMPORT_FLAG,DELETED_FLAG— lifecycle and disposition flags.BUDGET_AMOUNT,CURRENCY_CODE,BUDGET_STATUS_CODE— opportunity value data.LEAD_RANK_ID,RANK_MEANING,TOTAL_SCORE— scoring and ranking.CHANNEL_CODE,DECISION_TIMEFRAME_CODE,VEHICLE_RESPONSE_CODE,REJECT_REASON_CODE— classification attributes.ASSIGN_DATE,ASSIGN_SALES_GROUP_ID,ASSIGN_TO_SALESFORCE_ID— assignment information.- Phone columns built from
HZ_CONTACT_POINTS(country code, area code, number concatenated).
Common Use Cases and Queries
The most frequent consumer pattern is retrieving qualified leads for a team or resource, which aligns directly with the qualified_flag search term:
SELECT sales_lead_id, lead_number, party_name,
status_meaning, qualified_flag, urgent_flag,
budget_amount, currency_code, resource_id
FROM apps.ast_myteam_saleslead_uwq_v
WHERE qualified_flag = 'Y'
AND NVL(deleted_flag,'N') = 'N'
ORDER BY assign_date DESC;
UWQ integration typically selects the routing metadata alongside the payload:
SELECT ieu_object_function, ieu_object_parameters,
ieu_param_pk_col, ieu_param_pk_value,
resource_id, resource_type, lead_number
FROM apps.ast_myteam_saleslead_uwq_v
WHERE status_code = 'NEW';
Reporting queries often group qualified leads by resource and rank to measure pipeline distribution and scoring:
SELECT resource_id, rank_meaning, COUNT(*) lead_count,
SUM(budget_amount) pipeline_value
FROM apps.ast_myteam_saleslead_uwq_v
WHERE qualified_flag = 'Y'
GROUP BY resource_id, rank_meaning;
Because the view joins large TCA and resource objects, queries against it should be filtered on indexed lead columns such as SALES_LEAD_ID, STATUS_CODE, or RESOURCE_ID wherever possible. Consumers should treat QUALIFIED_FLAG and the other single-character flags as Y/N indicators, applying NVL where nulls are possible.
-
View: AST_MYTEAM_SALESLEAD_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_MYTEAM_SALESLEAD_UWQ_V, object_name:AST_MYTEAM_SALESLEAD_UWQ_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_MYTEAM_SALESLEAD_UWQ_V ,
-
View: AST_SALESLEAD_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALESLEAD_UWQ_V, object_name:AST_SALESLEAD_UWQ_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_SALESLEAD_UWQ_V ,
-
View: AST_LS_SALES_LEADS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LS_SALES_LEADS_V, object_name:AST_LS_SALES_LEADS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LS_SALES_LEADS_V ,
-
View: AST_LS_SALES_LEADS_CONTACT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LS_SALES_LEADS_CONTACT_V, object_name:AST_LS_SALES_LEADS_CONTACT_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LS_SALES_LEADS_CONTACT_V ,
-
View: AST_LS_SALES_LEADS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LS_SALES_LEADS_V, object_name:AST_LS_SALES_LEADS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LS_SALES_LEADS_V ,
-
View: AST_LS_SALES_LEADS_CONTACT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LS_SALES_LEADS_CONTACT_V, object_name:AST_LS_SALES_LEADS_CONTACT_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LS_SALES_LEADS_CONTACT_V ,
-
View: AST_MYTEAM_SALESLEAD_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_MYTEAM_SALESLEAD_UWQ_V, object_name:AST_MYTEAM_SALESLEAD_UWQ_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_MYTEAM_SALESLEAD_UWQ_V ,
-
View: AST_SALESLEAD_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALESLEAD_UWQ_V, object_name:AST_SALESLEAD_UWQ_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_SALESLEAD_UWQ_V ,
-
Lookup Type: AST_LEAD_ADV_LOOKUP
12.1.1
product: AST - TeleSales , meaning: OTS:Lead Search Advanced Items ,
-
Lookup Type: AST_LEAD_ADV_LOOKUP
12.2.2
product: AST - TeleSales , meaning: OTS:Lead Search Advanced Items ,
-
View: AST_LM_LEADS_QUICK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_LEADS_QUICK_V, object_name:AST_LM_LEADS_QUICK_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_LEADS_QUICK_V ,
-
View: AST_LM_LEADS_QUICK_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_LEADS_QUICK_V, object_name:AST_LM_LEADS_QUICK_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_LEADS_QUICK_V ,
-
View: AST_LM_LEADS_QUICK_CAMPAIGN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_LEADS_QUICK_CAMPAIGN_V, object_name:AST_LM_LEADS_QUICK_CAMPAIGN_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_LEADS_QUICK_CAMPAIGN_V ,
-
View: AST_LM_LEADS_QUICK_INTEREST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_LEADS_QUICK_INTEREST_V, object_name:AST_LM_LEADS_QUICK_INTEREST_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_LEADS_QUICK_INTEREST_V ,
-
View: AST_LM_LEADS_QUICK_CAMPAIGN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_LEADS_QUICK_CAMPAIGN_V, object_name:AST_LM_LEADS_QUICK_CAMPAIGN_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_LEADS_QUICK_CAMPAIGN_V ,
-
View: AST_LM_LEADS_QUICK_GROUP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_LEADS_QUICK_GROUP_V, object_name:AST_LM_LEADS_QUICK_GROUP_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_LEADS_QUICK_GROUP_V ,
-
View: AST_LM_LEADS_QUICK_INTEREST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_LEADS_QUICK_INTEREST_V, object_name:AST_LM_LEADS_QUICK_INTEREST_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_LEADS_QUICK_INTEREST_V ,
-
View: AST_LM_LEADS_QUICK_GROUP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_LEADS_QUICK_GROUP_V, object_name:AST_LM_LEADS_QUICK_GROUP_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_LEADS_QUICK_GROUP_V ,
-
View: AST_LM_LEADS_QUICK_INT_PC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_LEADS_QUICK_INT_PC_V, object_name:AST_LM_LEADS_QUICK_INT_PC_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_LEADS_QUICK_INT_PC_V ,
-
View: AST_LM_LEADS_QUICK_INT_PC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_LEADS_QUICK_INT_PC_V, object_name:AST_LM_LEADS_QUICK_INT_PC_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_LEADS_QUICK_INT_PC_V ,
-
View: AST_LS_SALES_LEADS_BSC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LS_SALES_LEADS_BSC_V, object_name:AST_LS_SALES_LEADS_BSC_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LS_SALES_LEADS_BSC_V ,
-
View: AST_LS_SALES_LEADS_BSC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LS_SALES_LEADS_BSC_V, object_name:AST_LS_SALES_LEADS_BSC_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LS_SALES_LEADS_BSC_V ,
-
View: AST_SALES_LEADS_BALI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALES_LEADS_BALI_V, object_name:AST_SALES_LEADS_BALI_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_SALES_LEADS_BALI_V ,
-
View: AST_SALES_LEADS_BALI_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALES_LEADS_BALI_V, object_name:AST_SALES_LEADS_BALI_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_SALES_LEADS_BALI_V ,
-
View: AST_SALES_LEADS_REL_BALI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALES_LEADS_REL_BALI_V, object_name:AST_SALES_LEADS_REL_BALI_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_SALES_LEADS_REL_BALI_V ,
-
View: AST_SALES_LEADS_REL_BALI_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALES_LEADS_REL_BALI_V, object_name:AST_SALES_LEADS_REL_BALI_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_SALES_LEADS_REL_BALI_V ,
-
View: AST_SALES_LEADS_EBC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALES_LEADS_EBC_V, object_name:AST_SALES_LEADS_EBC_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_SALES_LEADS_EBC_V ,
-
View: AST_SALES_LEADS_EBC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALES_LEADS_EBC_V, object_name:AST_SALES_LEADS_EBC_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_SALES_LEADS_EBC_V ,
-
View: AST_SALES_LEADS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALES_LEADS_V, object_name:AST_SALES_LEADS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_SALES_LEADS_V ,
-
View: AST_SALES_LEADS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALES_LEADS_V, object_name:AST_SALES_LEADS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_SALES_LEADS_V ,