sqlmdzd1

DDL: SQLMCZD1 SQL: SQLMCZD1 Type: view Package: SQLM_CORE

SQL Monitor

sqlmdzd1 is a CDS View that provides data about "SQL Monitor" in SAP S/4HANA. It reads from 1 data source (sqlmzd) and exposes 3 fields with key fields infoid, subid. Part of development package SQLM_CORE.

Data Sources (1)

SourceAliasJoin Type
sqlmzd sqlmzd from

Parameters (1)

NameTypeDefault
measid abap.int4

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName SQLMCZD1 view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label SQL Monitor view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY infoid infoid Weighing Data
KEY subid subid Topic ID
xcnt

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 sqlmdzd1.
-- 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: SQLMCZD1
-- Parameters: measid : abap.int4

CREATE VIEW sqlmdzd1 AS
SELECT
  infoid,
  subid,
  sum(xcnt) AS xcnt
FROM sqlmzd
;