Search Results cs_sr_owners_v
Overview
CS_SR_OWNERS_V is a Service (CS) module view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It provides a single, unified list of service resources that can be assigned as owners of service requests, exposing resources of type EMPLOYEE, TEAM, and GROUP. Rather than querying several Resource Manager tables independently, a form, report, or integration can consume this view to populate owner-selection lists, LOVs, and assignment logic consistently.
In the Oracle EBS reporting and integration layer, the view serves as the canonical enumeration of "who or what can own a service request." Because it normalizes employees, teams, and support groups into one record set, it removes the need for consumers to understand the physical layout of JTF_RS_EMP_DTLS_VL, JTF_RS_GROUPS_VL, and JTF_RS_TEAMS_VL. The view is documented in the ETRM as VALID for release 12.2.2, with equivalent availability in 12.1.1.
Underlying Base Objects
The view text is a three-way UNION ALL, with each branch drawing from a different Resource Manager base object:
- JTF_RS_EMP_DTLS_VL — employee resource details; contributes records flagged as
RS_EMPLOYEE. - JTF_RS_GROUPS_VL joined to JTF_RS_GROUP_USAGES — support groups; contributes records flagged as
RS_GROUP. - JTF_RS_TEAMS_VL joined to JTF_RS_TEAM_USAGES — teams; contributes records flagged as
RS_TEAM.
The team and group branches are further restricted to usage values of 'SUPPORT', reflecting the Service product's requirement that only support-designated teams and groups appear as owner candidates. Each branch applies an effective-dating filter: TRUNC(SYSDATE) must fall between the start and end active dates, with NVL defaulting a missing boundary to the current date. This makes the view return only currently effective resources at query time.
Key Columns
- RESOURCE_ID — the employee, group, or team identifier, drawn from the respective ID column (RESOURCE_ID, GROUP_ID, or TEAM_ID).
- RESOURCE_NUMBER — the human-readable resource, group, or team number.
- RESOURCE_NAME — the displayed name (FULL_NAME, GROUP_NAME, or TEAM_NAME).
- SUPPORT_SITE_ID — populated for employees; hard-coded to
-99999for groups and teams. - USAGE —
NULLfor employees; carries the usage value ('SUPPORT') for groups and teams. - RESOURCE_TYPE — a literal discriminator:
RS_EMPLOYEE,RS_GROUP, orRS_TEAM. - ORG_ID — populated for employees;
TO_NUMBER(NULL)for groups and teams.
The RESOURCE_TYPE column is the critical discriminator, since RESOURCE_ID values for employees, teams, and groups originate from separate ID spaces and must not be compared across types.
Common Use Cases and Queries
Typical uses include populating an owner LOV on a Service Request form, driving assignment or workload reports, and feeding integrations that require a flat owner roster. A basic listing returns all currently effective owners:
SELECT resource_id, resource_number, resource_name, resource_type
FROM cs_sr_owners_v
ORDER BY resource_type, resource_name;
To restrict to employee owners only:
SELECT resource_id, resource_name, support_site_id, org_id
FROM cs_sr_owners_v
WHERE resource_type = 'RS_EMPLOYEE';
To return only teams and support groups:
SELECT resource_id, resource_name, resource_type, usage
FROM cs_sr_owners_v
WHERE resource_type IN ('RS_GROUP','RS_TEAM');
Because the view already applies effective-date and SUPPORT usage filters, consumers should not re-apply them; doing so risks excluding valid rows if the underlying definitions change. Join back to the SQL view's base objects only when additional attributes, such as employee organization or group membership detail, are required.
-
View: CS_SR_OWNERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_OWNERS_V, object_name:CS_SR_OWNERS_V, status:VALID, product: CS - Service , description: This view shows all resources of type 'EMPLOYEE', 'TEAM' and 'GROUP' , implementation_dba_data: APPS.CS_SR_OWNERS_V ,
-
View: CS_SR_OWNERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_OWNERS_V, object_name:CS_SR_OWNERS_V, status:VALID, product: CS - Service , description: This view shows all resources of type 'EMPLOYEE', 'TEAM' and 'GROUP' , implementation_dba_data: APPS.CS_SR_OWNERS_V ,
-
APPS.CSC_SERVICE_REQUEST_PVT SQL Statements
12.1.1
-
APPS.CSC_SERVICE_REQUEST_PVT SQL Statements
12.2.2
-
VIEW: APPS.CS_INCIDENTS_WORKFLOW_V
12.2.2
-
VIEW: APPS.CS_NEW_INCIDENTS_V_SEC
12.2.2
-
VIEW: APPS.CS_NEW_INCIDENTS_V
12.2.2
-
VIEW: APPS.CS_INCIDENTS_WORKFLOW_V
12.1.1
-
PACKAGE BODY: APPS.CS_SR_UTIL_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_SR_UTIL_PKG, status:VALID,
-
VIEW: APPS.CS_NEW_INCIDENTS_V
12.1.1
-
VIEW: APPS.CS_NEW_INCIDENTS_V_SEC
12.1.1
-
PACKAGE BODY: APPS.CS_SR_FUL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CS_SR_FUL_PKG, status:VALID,
-
PACKAGE BODY: APPS.CS_SR_UTIL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CS_SR_UTIL_PKG, status:VALID,
-
PACKAGE BODY: APPS.CSC_SERVICE_REQUEST_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSC_SERVICE_REQUEST_PVT, status:VALID,
-
PACKAGE BODY: APPS.CSC_SERVICE_REQUEST_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSC_SERVICE_REQUEST_PVT, status:VALID,
-
PACKAGE BODY: APPS.CS_SR_FUL_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_SR_FUL_PKG, status:VALID,
-
SYNONYM: APPS.JTF_RS_TEAM_USAGES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_RS_TEAM_USAGES, status:VALID,
-
PACKAGE BODY: APPS.CUG_GENERIC_WF_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CUG_GENERIC_WF_PKG, status:VALID,
-
View: CS_NEW_INCIDENTS_V_SEC
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_NEW_INCIDENTS_V_SEC, object_name:CS_NEW_INCIDENTS_V_SEC, status:VALID, product: CS - Service , description: This is a secured view created on top of the view CS_NEW_INCIDENTS_V , implementation_dba_data: APPS.CS_NEW_INCIDENTS_V_SEC ,
-
View: CS_INCIDENTS_WORKFLOW_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_WORKFLOW_V, object_name:CS_INCIDENTS_WORKFLOW_V, status:VALID, product: CS - Service , description: Used by the Service Request Workflow , implementation_dba_data: APPS.CS_INCIDENTS_WORKFLOW_V ,
-
View: CS_NEW_INCIDENTS_V_SEC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_NEW_INCIDENTS_V_SEC, object_name:CS_NEW_INCIDENTS_V_SEC, status:VALID, product: CS - Service , description: This is a secured view created on top of the view CS_NEW_INCIDENTS_V , implementation_dba_data: APPS.CS_NEW_INCIDENTS_V_SEC ,
-
View: XNS_INCIDENTS_WORKFLOW_V
12.1.1
product: XNS - Service for Communications (obsolete) , description: Service requests and their attributes used by Comms workflow , implementation_dba_data: Not implemented in this database ,
-
View: CS_NEW_INCIDENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_NEW_INCIDENTS_V, object_name:CS_NEW_INCIDENTS_V, status:VALID, product: CS - Service , description: This is a simplified version of view CS_INCIDENTS_V , implementation_dba_data: APPS.CS_NEW_INCIDENTS_V ,
-
SYNONYM: APPS.JTF_RS_TEAM_USAGES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_RS_TEAM_USAGES, status:VALID,
-
APPS.CS_SR_UTIL_PKG SQL Statements
12.1.1
-
VIEW: APPS.CS_SR_OWNERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_OWNERS_V, object_name:CS_SR_OWNERS_V, status:VALID,
-
PACKAGE BODY: APPS.CUG_GENERIC_WF_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CUG_GENERIC_WF_PKG, status:VALID,
-
View: CS_INCIDENTS_WORKFLOW_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_WORKFLOW_V, object_name:CS_INCIDENTS_WORKFLOW_V, status:VALID, product: CS - Service , description: Used by the Service Request Workflow , implementation_dba_data: APPS.CS_INCIDENTS_WORKFLOW_V ,
-
APPS.CS_SR_UTIL_PKG SQL Statements
12.2.2
-
VIEW: APPS.CS_INCIDENTS_DIARY_V
12.2.2
-
VIEW: APPS.CS_SR_OWNERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_OWNERS_V, object_name:CS_SR_OWNERS_V, status:VALID,
-
View: CS_NEW_INCIDENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_NEW_INCIDENTS_V, object_name:CS_NEW_INCIDENTS_V, status:VALID, product: CS - Service , description: This is a simplified version of view CS_INCIDENTS_V , implementation_dba_data: APPS.CS_NEW_INCIDENTS_V ,
-
View: XNS_INCIDENTS_WORKFLOW_V
12.2.2
product: XNS - Service for Communications (Obsolete) , description: Service requests and their attributes used by Comms workflow , implementation_dba_data: Not implemented in this database ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.CS_INCIDENTS_DIARY_V
12.1.1
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.CS_INCIDENTS_WORKFLOW_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_WORKFLOW_V, object_name:CS_INCIDENTS_WORKFLOW_V, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.CS_INCIDENTS_V
12.1.1
-
VIEW: APPS.CS_INCIDENTS_WORKFLOW_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_WORKFLOW_V, object_name:CS_INCIDENTS_WORKFLOW_V, status:VALID,
-
View: CS_INCIDENTS_DIARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_DIARY_V, object_name:CS_INCIDENTS_DIARY_V, status:VALID, product: CS - Service , description: This view is not used anymore. This has been obsoleted. Starting 11.5.6 this view will not be supported and will remain just for backward compatability. The view CS_INCIDENTS_LOG_V has some of the functionality from this view but is not a c , implementation_dba_data: APPS.CS_INCIDENTS_DIARY_V ,
-
VIEW: APPS.CS_INCIDENTS_V
12.2.2
-
View: CS_INCIDENTS_DIARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_DIARY_V, object_name:CS_INCIDENTS_DIARY_V, status:VALID, product: CS - Service , description: This view is not used anymore. This has been obsoleted. Starting 11.5.6 this view will not be supported and will remain just for backward compatability. The view CS_INCIDENTS_LOG_V has some of the functionality from this view but is not a c , implementation_dba_data: APPS.CS_INCIDENTS_DIARY_V ,
-
VIEW: APPS.CS_NEW_INCIDENTS_V_SEC
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_NEW_INCIDENTS_V_SEC, object_name:CS_NEW_INCIDENTS_V_SEC, status:VALID,
-
SYNONYM: APPS.JTF_RS_GROUP_USAGES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_RS_GROUP_USAGES, status:VALID,
-
VIEW: APPS.CS_NEW_INCIDENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_NEW_INCIDENTS_V, object_name:CS_NEW_INCIDENTS_V, status:VALID,
-
VIEW: APPS.CS_NEW_INCIDENTS_V_SEC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_NEW_INCIDENTS_V_SEC, object_name:CS_NEW_INCIDENTS_V_SEC, status:VALID,
-
SYNONYM: APPS.JTF_RS_GROUP_USAGES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_RS_GROUP_USAGES, status:VALID,
-
VIEW: APPS.CS_NEW_INCIDENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_NEW_INCIDENTS_V, object_name:CS_NEW_INCIDENTS_V, status:VALID,