C_CmplncDisclUserVH

DDL: C_CMPLNCDISCLUSERVH Type: view_entity CONSUMPTION

Create or Change User

C_CmplncDisclUserVH is a Consumption CDS View that provides data about "Create or Change User" in SAP S/4HANA. It reads from 1 data source (I_User) and exposes 2 fields with key field UserID.

Data Sources (1)

SourceAliasJoin Type
I_User I_User from

Annotations (12)

NameValueLevelField
EndUserText.label Create or Change User view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey UserID view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
Consumption.ranked true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY UserID UserID User Name
UserDescription UserDescription Full Name

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 C_CmplncDisclUserVH.
-- 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 C_CmplncDisclUserVH AS
SELECT
  UserID,
  UserDescription
FROM I_User
;