/dmbe/i_Changedocumentheader

DDL: /DMBE/I_CHANGEDOCUMENTHEADER SQL: /DMBE/CHANGEDOC Type: view

Change Document Header

/dmbe/i_Changedocumentheader is a CDS View that provides data about "Change Document Header" in SAP S/4HANA. It reads from 1 data source (I_ChangeDocument) and exposes 3 fields.

Data Sources (1)

SourceAliasJoin Type
I_ChangeDocument I_ChangeDocument from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName /DMBE/CHANGEDOC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Change Document Header view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view

Fields (3)

KeyFieldSource TableSource FieldDescription
changeDocString
ChangeDocument
ChangeDocObjectClass ChangeDocObjectClass Change Doc. Object

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 /dmbe/i_Changedocumentheader.
-- 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: /DMBE/CHANGEDOC

CREATE VIEW /dmbe/i_Changedocumentheader AS
SELECT
  substring(ChangeDocObject, 1, 32) AS changeDocString,
  max(ChangeDocument) AS ChangeDocument,
  ChangeDocObjectClass
FROM I_ChangeDocument
;