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:

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

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 - Servicedescription: 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 - Servicedescription: This view shows all resources of type 'EMPLOYEE', 'TEAM' and 'GROUP' ,  implementation_dba_data: APPS.CS_SR_OWNERS_V

  • 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 - Servicedescription: Used by the Service Request Workflow ,  implementation_dba_data: APPS.CS_INCIDENTS_WORKFLOW_V

  • 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 - Servicedescription: 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_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 - Servicedescription: 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_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 - Servicedescription: This is a simplified version of view CS_INCIDENTS_V ,  implementation_dba_data: APPS.CS_NEW_INCIDENTS_V

  • 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 - Servicedescription: Used by the Service Request Workflow ,  implementation_dba_data: APPS.CS_INCIDENTS_WORKFLOW_V

  • 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 - Servicedescription: This is a simplified version of view CS_INCIDENTS_V ,  implementation_dba_data: APPS.CS_NEW_INCIDENTS_V

  • 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 - Servicedescription: 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: 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 - Servicedescription: 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: CS_INCIDENTS_V 12.2.2

    owner:APPS,  object_type:VIEW,  fnd_design_data:CS.CS_INCIDENTS_V,  object_name:CS_INCIDENTS_V,  status:VALID,  product: CS - Servicedescription: Service requests and their attributes. This view is used by the main service request form. ,  implementation_dba_data: APPS.CS_INCIDENTS_V

  • View: CS_INCIDENTS_V 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:CS.CS_INCIDENTS_V,  object_name:CS_INCIDENTS_V,  status:VALID,  product: CS - Servicedescription: Service requests and their attributes. This view is used by the main service request form. ,  implementation_dba_data: APPS.CS_INCIDENTS_V