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
clientasMandt
KEY UserID ConstantSap
UserDescription ConstantSap
@AbapCatalog: {
  sqlViewName: 'ICNTNTSUSER',
  compiler.compareFilter: true,
  preserveKey: true }

@AccessControl: {
  authorizationCheck: #PRIVILEGED_ONLY,
  personalData.blocking: #NOT_REQUIRED }

@ClientHandling.algorithm: #SESSION_VARIABLE

@EndUserText.label: 'User Names for Admin Data'

@ObjectModel.usageType: {
  serviceQuality: #C,
  sizeCategory:  #M,
  dataClass: #MASTER }

@VDM.viewType: #COMPOSITE

define view I_ProdCmplncCntntUser
  as select from I_User
{

      /**** Keys ****/

  key UserID,


      /**** Content ****/

      UserDescription
}
union all select from P_ChmlCmplConstants
{

      /**** Keys ****/

  key $session.client as Mandt,
  key ConstantSap     as UserID,


      /**** Content ****/

      ConstantSap     as UserDescription
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_USER",
"P_CHMLCMPLCONSTANTS"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/