Search Results source_last_name
Overview
AS_SALESFORCE_SUB_V is a seeded Oracle E-Business Suite view owned by the APPS schema and delivered as part of the AS – Sales Foundation product. Its documented purpose is to present "all the salesforce from JTF resource manager who are members or managers." In practical terms, the view resolves the membership hierarchy maintained in the JTF Resource Manager tables into a single, denormalized list of sales resources, together with the sales group to which each resource belongs and the active date range of that assignment.
The view has a status of VALID in both the 12.1.1 and 12.2.2 releases covered by the ETRM documentation, and it is exposed through a synonym so that it can be queried without schema qualification. Because it flattens role, resource, and group information into a compact result set, it is typically consumed by reports, concurrent programs, and integrations that need to identify which resources are currently effective as sales members or sales managers, rather than by direct end-user forms. The user query "source_last_name" corresponds directly to one of the view's projected columns, which is the column most often used to search or filter sales personnel by surname.
Underlying Base Objects
The view is defined over four documented base objects, all referenced through synonyms in the APPS schema:
- JTF_RS_GROUP_MEMBERS (alias MEM) – supplies the group membership records and the GROUP_ID that becomes SALES_GROUP_ID.
- JTF_RS_RESOURCE_EXTNS (alias RES) – supplies the resource identity and the descriptive name columns, including SOURCE_LAST_NAME.
- JTF_RS_ROLE_RELATIONS (alias RREL) – supplies the role-to-resource relationship and the effective START_DATE_ACTIVE and END_DATE_ACTIVE values.
- JTF_RS_ROLES_B (alias ROLEB) – supplies the role definition used to restrict the result set to sales-related roles.
The joins are driven by RESOURCE_ID between the resource extension table and the group members table, and by GROUP_MEMBER_ID between the group members table and the role relations table. The role relations row is then matched to the role definition on ROLE_ID, constrained to ROLE_RESOURCE_TYPE = 'RS_GROUP_MEMBER'. Records with DELETE_FLAG = 'Y' in either the membership or the role relation table are excluded, ensuring that only active, non-obsolete assignments are returned.
Key Columns
- SALESFORCE_ID – the resource identifier of the sales person, sourced from RES.RESOURCE_ID.
- SALES_GROUP_ID – the group identifier to which the resource belongs, sourced from MEM.GROUP_ID.
- START_DATE_ACTIVE – the date on which the membership/role assignment becomes effective.
- END_DATE_ACTIVE – the date on which the assignment ceases to be effective.
- SOURCE_NAME – the resource's formatted display name.
- SOURCE_FIRST_NAME – the resource's first name.
- SOURCE_LAST_NAME – the resource's last name, and the column most frequently used for lookups and sorting.
Common Use Cases and Queries
The view is commonly used to enumerate the effective sales force for a group, to validate that a resource is a member or manager of a sales role, and to drive downstream reporting by name. A representative query that locates a sales person by surname is:
SELECT salesforce_id, sales_group_id, source_name, source_last_name, start_date_active, end_date_active FROM apps.as_salesforce_sub_v WHERE source_last_name = 'SMITH' ORDER BY source_last_name, source_first_name;
To list all currently active members for a given group, the effective-date columns can be used as follows:
SELECT salesforce_id, source_name, start_date_activate FROM apps.as_salesforce_sub_v WHERE sales_group_id = :p_group_id AND SYSDATE BETWEEN NVL(start_date_active, SYSDATE) AND NVL(end_date_active, SYSDATE + 1);
Because the view already restricts results to the SALES, TELESALES, FIELDSALES, and PRM role types and applies the MEMBER_FLAG/MANAGER_FLAG logic, consumers do not need to re-implement that filtering; they can join this view to sales group, territory, or opportunity tables on SALESFORCE_ID and SALES_GROUP_ID to attribute transactions to the correct sales representative.
-
View: AS_SALESFORCE_SUB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SALESFORCE_SUB_V, object_name:AS_SALESFORCE_SUB_V, status:VALID, product: AS - Sales Foundation , description: This view shows all the salesforce from JTF resource manager who are members or managers , implementation_dba_data: APPS.AS_SALESFORCE_SUB_V ,
-
VIEW: JTF.JTF_RS_RESOURCE_EXTNS#
12.2.2
-
View: AS_SALESFORCE_SUB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SALESFORCE_SUB_V, object_name:AS_SALESFORCE_SUB_V, status:VALID, product: AS - Sales Foundation , description: This view shows all the salesforce from JTF resource manager who are members or managers , implementation_dba_data: APPS.AS_SALESFORCE_SUB_V ,
-
TABLE: APPS.AS_SUBORDINATE_REPS_MV
12.1.1
owner:APPS, object_type:TABLE, object_name:AS_SUBORDINATE_REPS_MV, status:VALID,
-
VIEW: APPS.CSM_JTF_RESOURCE_EXTNS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:CSM_JTF_RESOURCE_EXTNS_V, status:VALID,
-
VIEW: APPS.CSM_JTF_RESOURCE_EXTNS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:CSM_JTF_RESOURCE_EXTNS_V, status:VALID,
-
MATERIALIZED VIEW: APPS.AS_SUBORDINATE_REPS_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:AS_SUBORDINATE_REPS_MV, status:VALID,
-
VIEW: APPS.AS_SALESFORCE_SUB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SALESFORCE_SUB_V, object_name:AS_SALESFORCE_SUB_V, status:VALID,
-
VIEW: APPS.AS_SALESFORCE_SUB_V
12.1.1
-
VIEW: APPS.AS_SALESFORCE_SUB_V
12.2.2
-
VIEW: APPS.BIL_TX_SALES_PERSON_V
12.1.1
owner:APPS, object_type:VIEW, object_name:BIL_TX_SALES_PERSON_V, status:VALID,
-
VIEW: APPS.AS_SALESFORCE_SUB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SALESFORCE_SUB_V, object_name:AS_SALESFORCE_SUB_V, status:VALID,
-
APPS.IEM_AGENT_ACT_PVT SQL Statements
12.2.2
-
APPS.CAC_VIEW_ACC_DAILY_VIEW_PVT SQL Statements
12.2.2
-
VIEW: APPS.AST_LM_OPP_QUICK_SREP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_OPP_QUICK_SREP_V, object_name:AST_LM_OPP_QUICK_SREP_V, status:VALID,
-
APPS.CAC_VIEW_ACC_DAILY_VIEW_PVT SQL Statements
12.1.1
-
VIEW: APPS.AST_LM_OPP_QUICK_SREP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_OPP_QUICK_SREP_V, object_name:AST_LM_OPP_QUICK_SREP_V, status:VALID,
-
View: CAC_TASK_RS_EXTNS_SEC
12.2.2
product: JTF - CRM Foundation , implementation_dba_data: Not implemented in this database ,
-
View: CAC_TASK_RS_EXTNS_SEC
12.1.1
product: JTF - CRM Foundation , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.JTF_RS_DEFRESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.JTF_RS_DEFRESOURCES_V, object_name:JTF_RS_DEFRESOURCES_V, status:VALID,
-
View: AST_LM_OPP_QUICK_SREP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_OPP_QUICK_SREP_V, object_name:AST_LM_OPP_QUICK_SREP_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_OPP_QUICK_SREP_V ,
-
APPS.IEM_AGENT_ACT_PVT SQL Statements
12.1.1
-
VIEW: JTF.JTF_RS_RESOURCE_EXTNS#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_RS_RESOURCE_EXTNS#, status:VALID,
-
View: AST_LM_OPP_QUICK_SREP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_OPP_QUICK_SREP_V, object_name:AST_LM_OPP_QUICK_SREP_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_OPP_QUICK_SREP_V ,
-
VIEW: APPS.JTF_RS_DEFRESOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.JTF_RS_DEFRESOURCES_V JTF.JTF_RS_DEFRESOURCES_V, object_name:JTF_RS_DEFRESOURCES_V, status:VALID,
-
APPS.IEM_EMAILACCOUNT_PUB SQL Statements
12.2.2
-
VIEW: APPS.AS_SALESFORCE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SALESFORCE_V, object_name:AS_SALESFORCE_V, status:VALID,
-
VIEW: APPS.AS_SALESFORCE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SALESFORCE_V, object_name:AS_SALESFORCE_V, status:VALID,
-
VIEW: APPS.AS_FC_SALESFORCE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_FC_SALESFORCE_V, object_name:AS_FC_SALESFORCE_V, status:VALID,
-
View: AS_FC_SALESFORCE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_FC_SALESFORCE_V, object_name:AS_FC_SALESFORCE_V, status:VALID, product: AS - Sales Foundation , description: This view shows all the salesforce from JTF resource manager , implementation_dba_data: APPS.AS_FC_SALESFORCE_V ,
-
APPS.AS_SC_DENORM SQL Statements
12.2.2
-
VIEW: APPS.AS_FC_SALESFORCE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_FC_SALESFORCE_V, object_name:AS_FC_SALESFORCE_V, status:VALID,
-
View: AS_FC_SALESFORCE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_FC_SALESFORCE_V, object_name:AS_FC_SALESFORCE_V, status:VALID, product: AS - Sales Foundation , description: This view shows all the salesforce from JTF resource manager , implementation_dba_data: APPS.AS_FC_SALESFORCE_V ,
-
View: AS_SALESFORCE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SALESFORCE_V, object_name:AS_SALESFORCE_V, status:VALID, product: AS - Sales Foundation , description: This view shows all the salesforce from JTF resource manager , implementation_dba_data: APPS.AS_SALESFORCE_V ,
-
View: AS_SALESFORCE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SALESFORCE_V, object_name:AS_SALESFORCE_V, status:VALID, product: AS - Sales Foundation , description: This view shows all the salesforce from JTF resource manager , implementation_dba_data: APPS.AS_SALESFORCE_V ,
-
View: CS_JTF_RS_RESOURCE_EXTNS_SEC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_JTF_RS_RESOURCE_EXTNS_SEC, object_name:CS_JTF_RS_RESOURCE_EXTNS_SEC, status:VALID, product: CS - Service , description: Main resource view that stores all resource data. , implementation_dba_data: APPS.CS_JTF_RS_RESOURCE_EXTNS_SEC ,
-
View: CS_JTF_RS_RESOURCE_EXTNS_SEC
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_JTF_RS_RESOURCE_EXTNS_SEC, object_name:CS_JTF_RS_RESOURCE_EXTNS_SEC, status:VALID, product: CS - Service , description: Main resource view that stores all resource data. , implementation_dba_data: APPS.CS_JTF_RS_RESOURCE_EXTNS_SEC ,
-
APPS.ASO_PUBLISH_MISC_INT SQL Statements
12.2.2
-
APPS.ASO_PUBLISH_MISC_INT SQL Statements
12.1.1
-
VIEW: APPS.JTF_RS_DEFRESOURCES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_DEFRESOURCES_VL, object_name:JTF_RS_DEFRESOURCES_VL, status:VALID,
-
View: JTF_RS_DEFRESOURCES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_DEFRESOURCES_VL, object_name:JTF_RS_DEFRESOURCES_VL, status:VALID, product: JTF - CRM Foundation , implementation_dba_data: APPS.JTF_RS_DEFRESOURCES_VL ,
-
VIEW: APPS.JTF_RS_DEFRESOURCES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_DEFRESOURCES_VL, object_name:JTF_RS_DEFRESOURCES_VL, status:VALID,
-
View: JTF_RS_RESOURCE_EXTNS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_RESOURCE_EXTNS_VL, object_name:JTF_RS_RESOURCE_EXTNS_VL, status:VALID, product: JTF - CRM Foundation , description: Main resource view that stores all resource data. , implementation_dba_data: APPS.JTF_RS_RESOURCE_EXTNS_VL ,
-
View: JTF_RS_RESOURCE_EXTNS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_RESOURCE_EXTNS_VL, object_name:JTF_RS_RESOURCE_EXTNS_VL, status:VALID, product: JTF - CRM Foundation , description: Main resource view that stores all resource data. , implementation_dba_data: APPS.JTF_RS_RESOURCE_EXTNS_VL ,
-
View: JTF_RS_DEFRESOURCES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_DEFRESOURCES_VL, object_name:JTF_RS_DEFRESOURCES_VL, status:VALID, product: JTF - CRM Foundation , implementation_dba_data: APPS.JTF_RS_DEFRESOURCES_VL ,
-
View: ASF_FORECAST_OPPWS_HISTY_V
12.1.1
product: ASF - Sales Online , implementation_dba_data: Not implemented in this database ,
-
View: JTF_RS_ACTIVE_RESOURCES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_ACTIVE_RESOURCES_VL, object_name:JTF_RS_ACTIVE_RESOURCES_VL, status:VALID, product: JTF - CRM Foundation , description: This view stores active resources as of sysdate , implementation_dba_data: APPS.JTF_RS_ACTIVE_RESOURCES_VL ,
-
APPS.AS_SC_DENORM SQL Statements
12.1.1
-
View: JTF_RS_ACTIVE_RESOURCES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_ACTIVE_RESOURCES_VL, object_name:JTF_RS_ACTIVE_RESOURCES_VL, status:VALID, product: JTF - CRM Foundation , description: This view stores active resources as of sysdate , implementation_dba_data: APPS.JTF_RS_ACTIVE_RESOURCES_VL ,
-
View: ASF_FORECAST_OPPWS_HISTY_V
12.2.2
product: ASF - Sales Online , implementation_dba_data: Not implemented in this database ,