C_ResvnDocumentCreatedByVH

DDL: C_RESVNDOCUMENTCREATEDBYVH Type: view_entity CONSUMPTION

Reservation User Filter

C_ResvnDocumentCreatedByVH is a Consumption CDS View that provides data about "Reservation User Filter" 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 _user from

Associations (1)

CardinalityTargetAliasCondition
[0..*] R_ReservationDocumentHeaderTP _ReservationDocumentHeader _user.UserID = _ReservationDocumentHeader.UserID

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Reservation User Filter view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey UserID view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #VALUE_HELP view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (3)

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

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_ResvnDocumentCreatedByVH.
-- 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_ResvnDocumentCreatedByVH AS
SELECT
  _user.UserID AS UserID,
  _user.UserDescription AS UserDescription
FROM I_User AS _user
LEFT OUTER JOIN R_ReservationDocumentHeaderTP AS _ReservationDocumentHeader ON _user.UserID = _ReservationDocumentHeader.UserID  -- association [0..*]
;