I_DATACATEGORYSENSITIVITY_VH

DDL: I_DATACATEGORYSENSITIVITY_VH Type: view_entity

VH for Data Category Sensitivity levels

I_DATACATEGORYSENSITIVITY_VH is a CDS View that provides data about "VH for Data Category Sensitivity levels" in SAP S/4HANA. It reads from 2 data sources (dd07l, dd07t) and exposes 2 fields with key field SensitivityLevel.

Data Sources (2)

SourceAliasJoin Type
dd07l domain from
dd07t text inner

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label VH for Data Category Sensitivity levels view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.resultSet.sizeCategory #XS view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY SensitivityLevel dd07l domvalue_l Lower Value
Value dd07t ddtext Short text

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_DATACATEGORYSENSITIVITY_VH.
-- 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.

CREATE VIEW I_DATACATEGORYSENSITIVITY_VH AS
SELECT
  domain.domvalue_l AS SensitivityLevel,
  text.ddtext AS Value
FROM dd07l AS domain
INNER JOIN dd07t AS text ON /* join condition not captured in parsed metadata */
;