C_CustomerReturnUserVH

DDL: C_CUSTOMERRETURNUSERVH Type: view CONSUMPTION

Customer Return User

C_CustomerReturnUserVH is a Consumption CDS View that provides data about "Customer Return 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..*] I_CustomerReturn _CustomerReturn UserID = _CustomerReturn.CreatedByUser or UserID = _CustomerReturn.LastChangedByUser

Annotations (17)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
EndUserText.label Customer Return User view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
Consumption.ranked true view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey UserID view
UI.headerInfo.typeName User view
UI.headerInfo.typeNamePlural Users view
AbapCatalog.sqlViewName CREUSERVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view

Fields (3)

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

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