I_CACorrespncHistoryUserVH

DDL: I_CACORRESPNCHISTORYUSERVH Type: view_entity BASIC

Display Correspondence User

I_CACorrespncHistoryUserVH is a Basic CDS View that provides data about "Display Correspondence User" in SAP S/4HANA. It reads from 1 data source (I_User) and exposes 4 fields with key field UserID.

Data Sources (1)

SourceAliasJoin Type
I_User _User from

Annotations (12)

NameValueLevelField
EndUserText.label Display Correspondence User view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
Search.searchable true view
Consumption.ranked true view
ObjectModel.representativeKey UserID view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #VALUE_HELP view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY UserID I_User UserID User Name
UserDescription I_User UserDescription Full Name
IsTechnicalUser
_CorrespondenceHistory _CorrespondenceHistory

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 I_CACorrespncHistoryUserVH.
-- 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 I_CACorrespncHistoryUserVH AS
SELECT
  _User.UserID AS UserID,
  _User.UserDescription AS UserDescription,
  cast (IsTechnicalUser as fco_io_is_technical_user preserving type ) AS IsTechnicalUser
FROM I_User AS _User
;