Cds_Tag_Count

DDL: CDS_TAG_COUNT SQL: CDSTAGCOUNT Type: view Package: S_DICT_VB

CDS View Tag Count

Cds_Tag_Count is a CDS View that provides data about "CDS View Tag Count" in SAP S/4HANA. It reads from 1 data source (vdm_browsertag) and exposes 4 fields with key fields DDLSourceName, UserName, SAPClient. Part of development package S_DICT_VB.

Data Sources (1)

SourceAliasJoin Type
vdm_browsertag vdm_browsertag from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName CDSTAGCOUNT view
EndUserText.label CDS View Tag Count view
ObjectModel.usageType.serviceQuality #P view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY DDLSourceName vdm_browsertag ddlsourcename
KEY UserName vdm_browsertag username
KEY SAPClient vdm_browsertag sapclient
NumberOfAddedTags
@AbapCatalog.sqlViewName: 'CDSTAGCOUNT'
@EndUserText.label: 'CDS View Tag Count'
@ObjectModel.usageType.serviceQuality:  #P
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
define view Cds_Tag_Count as select from vdm_browsertag {
  key vdm_browsertag.ddlsourcename as DDLSourceName,
  key vdm_browsertag.username as UserName,
  key vdm_browsertag.sapclient as  SAPClient,
  count(*) as NumberOfAddedTags
} group by vdm_browsertag.sapclient, vdm_browsertag.username, vdm_browsertag.ddlsourcename