I_CustomCDSViewUser

DDL: I_CUSTOMCDSVIEWUSER SQL: APS_CCV_I_USER Type: view

Custom CDS View User

I_CustomCDSViewUser is a CDS View that provides data about "Custom CDS View User" in SAP S/4HANA. It reads from 1 data source (I_User) and exposes 1 field with key field name.

Data Sources (1)

SourceAliasJoin Type
I_User I_User from

Annotations (3)

NameValueLevelField
AbapCatalog.sqlViewName APS_CCV_I_USER view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Custom CDS View User view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY name UserID User Name

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_CustomCDSViewUser.
-- 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.
-- SQL view name: APS_CCV_I_USER

CREATE VIEW I_CustomCDSViewUser AS
SELECT
  UserID AS name
FROM I_User
;