R_ConditionDocumentUserVH

DDL: R_CONDITIONDOCUMENTUSERVH Type: view_entity COMPOSITE

Condition Document User

R_ConditionDocumentUserVH is a Composite CDS View that provides data about "Condition Document User" in SAP S/4HANA. It reads from 1 data source (I_User) and exposes 3 fields with key field UserID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_User I_User from

Associations (1)

CardinalityTargetAliasCondition
[0..*] R_ConditionDocument _ConditionDocument $projection.UserID = _ConditionDocument.CreatedByUser or $projection.UserID = _ConditionDocument.LastChangedByUser

Annotations (13)

NameValueLevelField
EndUserText.label Condition Document User view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey UserID view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
Search.searchable true view
Consumption.ranked true view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions false view

Fields (3)

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

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 R_ConditionDocumentUserVH.
-- 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 R_ConditionDocumentUserVH AS
SELECT
  UserID,
  UserDescription
FROM I_User
LEFT OUTER JOIN R_ConditionDocument AS _ConditionDocument ON UserID = _ConditionDocument.CreatedByUser OR UserID = _ConditionDocument.LastChangedByUser  -- association [0..*]
;