Results for “cs_sr_owners_search_v”
24 results
AI-generated from documented ETRM metadata — verify critical details on the linked pages.
Overview
CS_SR_OWNERS_SEARCH_V is a reporting and integration view owned by the APPS schema in Oracle E-Business Suite, classified under the Service (CS) product family. Its documented purpose is to retrieve the owner name of a service request (SR). Rather than resolving the owner from a single table, the view presents a consolidated, de-normalized list of all valid owner candidates across three resource categories: employees, support groups, and support teams. This design supports Service Request ownership assignment, LOV (list of values) population, and cross-module reporting where the identity of an SR owner must be displayed or validated without direct knowledge of the underlying resource model.
The view becomes relevant in both Oracle EBS 12.1.1 and 12.2.2, where the Service Request ownership framework and the JTF resource foundation tables coexist and share the same structure. Because it is a view over language-enabled (TL) and secured resource objects, it transparently applies language filtering and employee-level access restrictions, making it suitable for direct querying in reports and custom forms without additional security joins.
Underlying Base Objects
The view is defined as a UNION ALL of three SELECT statements, each sourcing a different class of owner. The documented referenced base objects are:
- CS_JTF_RS_RESOURCE_EXTNS_SEC (VIEW) — supplies employee resources, filtered by CATEGORY = 'EMPLOYEE'. This object carries resource security, so only accessible employees are surfaced.
- JTF_RS_GROUPS_TL (SYNONYM) — the translated group name table, joined to JTF_RS_GROUP_USAGES filtered by USAGE = 'SUPPORT'.
- JTF_RS_TEAMS_TL (SYNONYM) — the translated team name table, joined to JTF_RS_TEAM_USAGES filtered by USAGE = 'SUPPORT'.
Each branch restricts the LANGUAGE column of the TL table to USERENV('LANG'), ensuring that resource names are returned in the session's current language. The group and team branches are additionally constrained to usage type 'SUPPORT', which limits the returned owners to those eligible for supporting service requests. The synonym mappings point to the underlying JTF resource tables in the APPS schema.
Key Columns
The view exposes exactly three columns:
- RESOURCE_ID — the unique identifier of the owner. Depending on the branch, this is a RESOURCE_ID, GROUP_ID, or TEAM_ID. It is the surrogate key used for assignment and foreign-key style joins.
- RESOURCE_NAME — the display name of the owner. For employees it is derived from SOURCE_NAME; for groups and teams it is the translated GROUP_NAME or TEAM_NAME.
- RESOURCE_TYPE — a literal discriminator with one of three values: 'RS_EMPLOYEE', 'RS_GROUP', or 'RS_TEAM'. This column is essential for disambiguating identical or overlapping IDs across resource classes.
Common Use Cases and Queries
The view is typically consumed to populate owner LOVs, to look up a name from a stored owner ID and type, or to list all assignable owners. A representative query returning all owners is:
SELECT RESOURCE_ID, RESOURCE_NAME, RESOURCE_TYPE FROM APPS.CS_SR_OWNERS_SEARCH_V;
To retrieve only support teams in the current language:
SELECT RESOURCE_ID, RESOURCE_NAME FROM APPS.CS_SR_OWNERS_SEARCH_V WHERE RESOURCE_TYPE = 'RS_TEAM';
To resolve a specific owner's name where the ID and type are known from an SR assignment:
SELECT RESOURCE_NAME FROM APPS.CS_SR_OWNERS_SEARCH_V WHERE RESOURCE_ID = :owner_id AND RESOURCE_TYPE = :owner_type;
Because the employee branch reads from a secured resource view, results respect resource-level security. The reference to JTF_RS_TEAMS_TL in the definition explains why searches for that object commonly lead to this view; the team branch is one of the three constituent sources combined here.
-
View: CS_SR_OWNERS_SEARCH_V 12.2.2
This view is used to retrieve owner name of an SR
APPS.CS_SR_OWNERS_SEARCH_V·↳ CS_JTF_RS_RESOURCE_EXTNS_SEC·↳ JTF_RS_GROUPS_TL·↳ JTF_RS_GROUP_USAGES·Explore CS module →
-
View: CS_SR_OWNERS_SEARCH_V 12.1.1
This view is used to retrieve owner name of an SR
APPS.CS_SR_OWNERS_SEARCH_V·↳ CS_JTF_RS_RESOURCE_EXTNS_SEC·↳ JTF_RS_GROUPS_TL·↳ JTF_RS_GROUP_USAGES·Explore CS module →
-
12.2.2 FND Design Data 12.2.2
-
12.1.1 FND Design Data 12.1.1
-
12.1.1 DBA Data 12.1.1
-
12.2.2 DBA Data 12.2.2
-
eTRM - CS Tables and Views 12.1.1
Table to store web conference details for an SR.
-
eTRM - CS Tables and Views 12.2.2
-
12.2.2 DBA Data 12.2.2
-
12.1.1 DBA Data 12.1.1
-
eTRM - CS Tables and Views 12.1.1
Table to store web conference details for an SR.
-
eTRM - CS Tables and Views 12.2.2