Cds_Views_Tag_Count

DDL: CDS_VIEWS_TAG_COUNT SQL: CDSVIEWSTAGCOUNT Type: view

CDS Views Tag Count Info

Cds_Views_Tag_Count is a CDS View that provides data about "CDS Views Tag Count Info" in SAP S/4HANA. It reads from 1 data source (vdm_browsertag) and exposes 3 fields with key field DDLSourceName.

Data Sources (1)

SourceAliasJoin Type
vdm_browsertag vdm_browsertag from

Annotations (5)

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

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY DDLSourceName vdm_browsertag ddlsourcename DDL Source Name
PrimaryTag
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_Views_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: CDSVIEWSTAGCOUNT

CREATE VIEW Cds_Views_Tag_Count AS
SELECT
  vdm_browsertag.ddlsourcename AS DDLSourceName,
  min ( vdm_browsertag.browsertagname) AS PrimaryTag,
  count(*) AS NumberOfAddedTags
FROM vdm_browsertag
;