I_CADisputeCasePriorityVH

DDL: I_CADISPUTECASEPRIORITYVH SQL: ICADSPUTPRIOVH Type: view COMPOSITE

Value help of case priority

I_CADisputeCasePriorityVH is a Composite CDS View that provides data about "Value help of case priority" in SAP S/4HANA. It reads from 1 data source (I_CasePriority) and exposes 2 fields with key field CasePriority.

Data Sources (1)

SourceAliasJoin Type
I_CasePriority I_CasePriority from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ICADSPUTPRIOVH view
VDM.viewType #COMPOSITE view
EndUserText.label Value help of case priority view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #VALUE_HELP view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
ObjectModel.representativeKey CasePriority view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CasePriority CasePriority Priority
DisputeCasePriorityName

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_CADisputeCasePriorityVH.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: ICADSPUTPRIOVH

CREATE VIEW I_CADisputeCasePriorityVH AS
SELECT
  CasePriority,
  _Text[1:Language = $session.system_language].CasePriorityName AS DisputeCasePriorityName
FROM I_CasePriority
;