I_ExistenceCheckOnMaterialDoc

DDL: I_EXISTENCECHECKONMATERIALDOC Type: view_entity COMPOSITE Package: MBND_CLOUD_BL

Existence Check on Material Document

I_ExistenceCheckOnMaterialDoc is a Composite CDS View that provides data about "Existence Check on Material Document" in SAP S/4HANA. It reads from 1 data source (I_ExistenceCheckOnMatlDocItem) and exposes 4 fields with key fields MaterialDocument, MaterialDocumentYear. Part of development package MBND_CLOUD_BL.

Data Sources (1)

SourceAliasJoin Type
I_ExistenceCheckOnMatlDocItem I_ExistenceCheckOnMatlDocItem from

Annotations (8)

NameValueLevelField
EndUserText.label Existence Check on Material Document view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY MaterialDocument MaterialDocument Material Doc.
KEY MaterialDocumentYear MaterialDocumentYear Material Document Year
MatlDocHasMatlDocSrlNmbrs
MatlDocHasPhysInvtrySrlNmbrs

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 I_ExistenceCheckOnMaterialDoc.
-- 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 I_ExistenceCheckOnMaterialDoc AS
SELECT
  MaterialDocument,
  MaterialDocumentYear,
  max( MatlDocItmHasMatlDocSrlNmbr ) AS MatlDocHasMatlDocSrlNmbrs,
  max( MatlDocItmHasPhysInvtrySrlNmbr ) AS MatlDocHasPhysInvtrySrlNmbrs
FROM I_ExistenceCheckOnMatlDocItem
;