Search Results cnt_point




Overview

APPS.AST_MYTEAM_SALESLEAD_UWQ_V is a reporting and integration view in the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 environments, owned by the APPS schema. It presents sales lead information in a flattened, denormalized form intended primarily for consumption by Oracle Sales for Salesforce integration and Universal Work Queue (UWQ) processing. The view resolves the object-level attributes required by the JTF object framework, exposing IEU_OBJECT_FUNCTION, IEU_OBJECT_PARAMETERS, IEU_MEDIA_TYPE_UUID, IEU_PARAM_PK_COL, and IEU_PARAM_PK_VALUE so that each sales lead row can be treated as an addressable IEU object instance keyed on SALES_LEAD_ID.

The name indicates its functional scope: "MYTEAM" reflects the My Team resource hierarchy, "SALESLEAD" identifies the transactional entity, and "UWQ" denotes the Universal Work Queue. The view joins lead, party, contact, resource, and lookup data so that a single row carries every attribute needed to render or route a sales lead without additional lookups.

Underlying Base Objects

The documented base objects underlying this view are:

The view therefore sits over both the CRM sales-lead data model and the TCA/HZ party model, with the JTF object registry used to expose it as an IEU-enabled object.

Key Columns

Common Use Cases and Queries

Typical consumption is from Oracle Sales for Salesforce synchronization routines, Universal Work Queue listings, and ad hoc reporting on lead pipelines. A sample query retrieving leads with contact phone information follows:

SELECT sales_lead_id,
       lead_number,
       party_name,
       primary_contact_first_name,
       primary_contact_last_name,
       phone_id,
       status_meaning,
       budget_amount,
       currency_code,
       total_score
FROM   apps.ast_myteam_saleslead_uwq_v
WHERE  NVL(deleted_flag,'N') = 'N'
AND    status_code = 'OPEN';

To isolate leads by assigned resource and rank:

SELECT resource_id,
       lead_number,
       rank_meaning,
       urgent_flag,
       qualified_flag
FROM   apps.ast_myteam_saleslead_uwq_v
WHERE  resource_type = 'RS_INDIVIDUAL'
AND    NVL(qualified_flag,'N') = 'Y';

Because the view exposes IEU_PARAM_PK_COL and IEU_PARAM_PK_VALUE, it can be registered as a JTF object so that UWQ and IEU-driven interfaces resolve each lead as SALES_LEAD_ID-addressed entity. Reporting against cnt_point columns is most precise when filtering on phone_id rather than the concatenated phone string, since the string expression returns formatting separators that complicate matching.