Search Results jtf_objects_vl




Overview

The CS_SR_LINK_VALID_OBJ_V view is a Service (CS) module database object owned by the APPS schema. It presents the set of valid subject-and-object type pairings that may be linked within the Service Request linking framework. In Oracle EBS, Service Requests can be associated with other entities — such as service requests, orders, or items — through link types that define the nature of the relationship. Each link type permits only specific combinations of subject and object types, and this view exposes those permissible combinations in a denormalized, human-readable form.

Because the view joins identifier columns to their descriptive translations, it is well suited for reporting, data validation, and integration scenarios where an application or user must determine whether a given subject type may be linked to a given object type under a particular link type. It is read-only by design, and it is populated entirely from the underlying base objects; no materialized or transactional data is introduced.

Underlying Base Objects

The view is defined over the following documented objects:

Internally, the base table CS_SR_LINK_VALID_OBJ stores the relationship between a link type and the subject/object type codes it permits. The view enriches each row by joining SUBJECT_TYPE and OBJECT_TYPE to JTF_OBJECTS_VL.OBJECT_CODE, resolving both into descriptive NAME and DESCRIPTION values. The link type is resolved against CS_SR_LINK_TYPES_VL.LINK_TYPE_ID. All joins are inner joins on the respective identifiers, so only valid, resolvable pairings appear in the output.

Key Columns

Common Use Cases and Queries

This view is typically used to validate or display the allowable link configurations for Service Requests, and to drive pick lists and dependent field logic in custom extensions or integrations.

To list all valid subject/object combinations for a given link type:

  • SELECT LINK_TYPE_ID, SUBJECT_NAME, OBJECT_NAME FROM CS_SR_LINK_VALID_OBJ_V WHERE LINK_TYPE_ID = :p_link_type_id AND SYSDATE BETWEEN NVL(START_DATE_ACTIVE, SYSDATE) AND NVL(END_DATE_ACTIVE, SYSDATE);

To identify seeded versus user-defined valid objects:

  • SELECT SEEDED_FLAG, COUNT(*) FROM CS_SR_LINK_VALID_OBJ_V GROUP BY SEEDED_FLAG;

To determine whether a specific pairing is permitted:

  • SELECT COUNT(*) FROM CS_SR_LINK_VALID_OBJ_V WHERE LINK_TYPE_ID = :id AND SUBJECT_TYPE = :subject AND OBJECT_TYPE = :object;

Because the view relies on JTF_OBJECTS_VL and CS_SR_LINK_TYPES_VL, the returned names reflect the current translated values, making the output suitable for direct presentation in reports and concurrent program extracts.

  • View: CS_SR_LINK_VALID_OBJ_V 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:CS.CS_SR_LINK_VALID_OBJ_V,  object_name:CS_SR_LINK_VALID_OBJ_V,  status:VALID,  product: CS - Serviceimplementation_dba_data: APPS.CS_SR_LINK_VALID_OBJ_V

  • View: CS_SR_LINK_VALID_OBJ_V 12.2.2

    owner:APPS,  object_type:VIEW,  fnd_design_data:CS.CS_SR_LINK_VALID_OBJ_V,  object_name:CS_SR_LINK_VALID_OBJ_V,  status:VALID,  product: CS - Serviceimplementation_dba_data: APPS.CS_SR_LINK_VALID_OBJ_V

  • View: CS_SR_SERVICE_HISTORY_V 12.2.2

    owner:APPS,  object_type:VIEW,  fnd_design_data:CS.CS_SR_SERVICE_HISTORY_V,  object_name:CS_SR_SERVICE_HISTORY_V,  status:VALID,  product: CS - Servicedescription: This view is being used by Service History Tab ,  implementation_dba_data: APPS.CS_SR_SERVICE_HISTORY_V

  • View: CS_SR_SERVICE_HISTORY_V 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:CS.CS_SR_SERVICE_HISTORY_V,  object_name:CS_SR_SERVICE_HISTORY_V,  status:VALID,  product: CS - Servicedescription: This view is being used by Service History Tab ,  implementation_dba_data: APPS.CS_SR_SERVICE_HISTORY_V

  • View: CS_SR_TASKS_V 12.2.2

    owner:APPS,  object_type:VIEW,  fnd_design_data:CS.CS_SR_TASKS_V,  object_name:CS_SR_TASKS_V,  status:VALID,  product: CS - Servicedescription: This view is used by the task functionality of the service request form. This has all the task related information which are relevant to Service Request. ,  implementation_dba_data: APPS.CS_SR_TASKS_V

  • View: CS_SR_TASKS_V 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:CS.CS_SR_TASKS_V,  object_name:CS_SR_TASKS_V,  status:VALID,  product: CS - Servicedescription: This view is used by the task functionality of the service request form. This has all the task related information which are relevant to Service Request. ,  implementation_dba_data: APPS.CS_SR_TASKS_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_SR_UWQ_UNOWNED_V 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:CS.CS_SR_UWQ_UNOWNED_V,  object_name:CS_SR_UWQ_UNOWNED_V,  status:VALID,  product: CS - Servicedescription: This view is used by the UWQ (Universal Work Queue) to query up Service Requests that are not owned. The view is a snapshot of information like Status, Severity, Escalation. ,  implementation_dba_data: APPS.CS_SR_UWQ_UNOWNED_V

  • View: CS_SR_UWQ_UNOWNED_V 12.2.2

    owner:APPS,  object_type:VIEW,  fnd_design_data:CS.CS_SR_UWQ_UNOWNED_V,  object_name:CS_SR_UWQ_UNOWNED_V,  status:VALID,  product: CS - Servicedescription: This view is used by the UWQ (Universal Work Queue) to query up Service Requests that are not owned. The view is a snapshot of information like Status, Severity, Escalation. ,  implementation_dba_data: APPS.CS_SR_UWQ_UNOWNED_V