F_Mmim_Mdoc_Revstat

DDL: F_MMIM_MDOC_REVSTAT Type: view_entity Package: MBND_CLOUD_BL

Material Documents Reversed Status

F_Mmim_Mdoc_Revstat is a CDS View that provides data about "Material Documents Reversed Status" in SAP S/4HANA. It reads from 1 data source (F_Mmim_Mdoc_It_Counter) and exposes 4 fields with key fields MaterialDocument, MaterialDocumentYear. Part of development package MBND_CLOUD_BL.

Data Sources (1)

SourceAliasJoin Type
F_Mmim_Mdoc_It_Counter F_Mmim_Mdoc_It_Counter from

Annotations (5)

NameValueLevelField
EndUserText.label Material Documents Reversed Status view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #MIXED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY MaterialDocument MaterialDocument Material Doc.
KEY MaterialDocumentYear MaterialDocumentYear Material Document Year
NumberOfItemsInMaterialDoc
NumberOfRvsdItemsInMaterialDoc

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 F_Mmim_Mdoc_Revstat.
-- 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.

CREATE VIEW F_Mmim_Mdoc_Revstat AS
SELECT
  MaterialDocument,
  MaterialDocumentYear,
  sum(NumberOfItemsInMaterialDoc) AS NumberOfItemsInMaterialDoc,
  sum(NumberOfRvsdItemsInMaterialDoc) AS NumberOfRvsdItemsInMaterialDoc
FROM F_Mmim_Mdoc_It_Counter
;