R_PPDSOptmzrLgExplUserVH

DDL: R_PPDSOPTMZRLGEXPLUSERVH Type: view_entity BASIC

User Value Help

R_PPDSOptmzrLgExplUserVH is a Basic CDS View that provides data about "User Value Help" 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..*] I_PPDSOptimizerRunLog _PPDSOptimizerRunLog $projection.UserID = _PPDSOptimizerRunLog.LastChangedByUserName

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
Consumption.ranked true view
EndUserText.label User Value Help view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey UserID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #BASIC view

Fields (3)

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

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_PPDSOptmzrLgExplUserVH.
-- 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_PPDSOptmzrLgExplUserVH AS
SELECT
  UserID,
  UserDescription
FROM I_User
LEFT OUTER JOIN I_PPDSOptimizerRunLog AS _PPDSOptimizerRunLog ON UserID = _PPDSOptimizerRunLog.LastChangedByUserName  -- association [0..*]
;