SQLMDZVDISZ1

DDL: SQLMCZVDISZ1 SQL: SQLMCZVDISZ1 Type: view

SQLMDZVDISZ1 is a CDS View in SAP S/4HANA. It reads from 1 data source (SQLMDZVDISZ) and exposes 44 fields with key fields measid, infoid, subid.

Data Sources (1)

SourceAliasJoin Type
SQLMDZVDISZ SQLMDZVDISZ from

Parameters (2)

NameTypeDefault
p_unixtimefrom abap.int4
p_unixtimeto abap.int4

Annotations (1)

NameValueLevelField
AbapCatalog.sqlViewName SQLMCZVDISZ1 view

Fields (44)

KeyFieldSource TableSource FieldDescription
KEY measid measid INT4
KEY infoid infoid Weighing Data
KEY subid subid Topic ID
progname progname Tcode/program
progkind progkind Prog. Kind
proctype proctype Proc. Bl. Type
procname procname Proc Block Name
procline procline Proc Block Line
hashcode hashcode HashCode to FG
include include
line line VAT Return Line Item
fragment fragment ABAP Source Code
pgmid pgmid Program Name
object object TRFM Object
obj_name obj_name Object Name
devclass devclass Package (Obsolete)
runlevel runlevel Run Mode
roottype roottype Request Type
rootname rootname Root Entity Name
stmtkind stmtkind SQL Operation
tablenames tablenames Table Names
tablename01 tablename01 Table Name
tablename02 tablename02 Table Name
tablename03 tablename03 Table Name
tablename04 tablename04 Table Name
tablename05 tablename05 Table Name
tablename06 tablename06 Table Name
tablename07 tablename07 Table Name
tablename08 tablename08 Table Name
tablename09 tablename09 Table Name
tablename10 tablename10 Table Name
progdate progdate Program Run Date
progtime progtime Time
outdated outdated Outdated
xcnt
rcnt
rtmin
rtmax
rtsum
rtsqs
dbmin
dbmax
dbsum
dbsqs

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 SQLMDZVDISZ1.
-- 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: SQLMCZVDISZ1
-- Parameters: p_unixtimefrom : abap.int4, p_unixtimeto : abap.int4

CREATE VIEW SQLMDZVDISZ1 AS
SELECT
  measid,
  infoid,
  subid,
  progname,
  progkind,
  proctype,
  procname,
  procline,
  hashcode,
  include,
  line,
  fragment,
  pgmid,
  object,
  obj_name,
  devclass,
  runlevel,
  roottype,
  rootname,
  stmtkind,
  tablenames,
  tablename01,
  tablename02,
  tablename03,
  tablename04,
  tablename05,
  tablename06,
  tablename07,
  tablename08,
  tablename09,
  tablename10,
  progdate,
  progtime,
  outdated,
  sum( xcnt ) AS xcnt,
  sum( rcnt ) AS rcnt,
  min( rtmin ) AS rtmin,
  max( rtmax ) AS rtmax,
  sum( rtsum ) AS rtsum,
  sum( rtsqs ) AS rtsqs,
  min( dbmin ) AS dbmin,
  max( dbmax ) AS dbmax,
  sum( dbsum ) AS dbsum,
  sum( dbsqs ) AS dbsqs
FROM SQLMDZVDISZ
;