I_ProdCmplncCntntUser

DDL: I_PRODCMPLNCCNTNTUSER Type: view COMPOSITE

User Names for Admin Data

I_ProdCmplncCntntUser is a Composite CDS View that provides data about "User Names for Admin Data" in SAP S/4HANA. It reads from 2 data sources (I_User, P_ChmlCmplConstants) and exposes 4 fields with key fields UserID, UserID.

Data Sources (2)

SourceAliasJoin Type
I_User I_User from
P_ChmlCmplConstants P_ChmlCmplConstants union_all

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ICNTNTSUSER view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label User Names for Admin Data view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #COMPOSITE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY UserID UserID Text
clientasMandt
KEY UserID ConstantSap Text
UserDescription ConstantSap Text

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_ProdCmplncCntntUser.
-- 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_ProdCmplncCntntUser AS
SELECT
  UserID,
  UserDescription AS clientasMandt,
  ConstantSap AS UserDescription
FROM I_User
-- UNION ALL with additional select branch(es): P_ChmlCmplConstants
;