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 DDL Source Name
KEY UserName vdm_browsertag username User who owns item
KEY SAPClient vdm_browsertag sapclient Client ID
NumberOfAddedTags

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 Cds_Tag_Count.
-- 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: CDSTAGCOUNT

CREATE VIEW Cds_Tag_Count AS
SELECT
  vdm_browsertag.ddlsourcename AS DDLSourceName,
  vdm_browsertag.username AS UserName,
  vdm_browsertag.sapclient AS SAPClient,
  count(*) AS NumberOfAddedTags
FROM vdm_browsertag
;