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
@AbapCatalog.sqlViewName: 'APS_CCV_I_USER'
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'Custom CDS View User'
define view I_CustomCDSViewUser as select from I_User
{
  key UserID as name, 
      @Semantics.text: true
      case 
        when  UserDescription is not null and
              UserDescription <> '' then
              UserDescription 
        else 
              UserID
        end  as description
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_USER"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/