I_MaterialDocumentSerialNumber

DDL: I_MATERIALDOCUMENTSERIALNUMBER Type: view_entity COMPOSITE Package: MBND_CLOUD_BL

Seial Numbers for Material Document

I_MaterialDocumentSerialNumber is a Composite CDS View that provides data about "Seial Numbers for Material Document" in SAP S/4HANA. It reads from 1 data source (I_SerialNumberMaterialDocument) and exposes 7 fields with key fields Material, SerialNumber, MaterialDocument, MaterialDocumentYear. Part of development package MBND_CLOUD_BL.

Data Sources (1)

SourceAliasJoin Type
I_SerialNumberMaterialDocument I_SerialNumberMaterialDocument from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Seial Numbers for Material Document view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
Search.searchable true view
VDM.viewType #COMPOSITE view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
KEY SerialNumber SerialNumber Serial Number
KEY MaterialDocument MaterialDocument Material Doc.
KEY MaterialDocumentYear MaterialDocumentYear Material Document Year
Equipment Equipment Equipment check
MaterialName
_Product _Product

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_MaterialDocumentSerialNumber.
-- 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_MaterialDocumentSerialNumber AS
SELECT
  Material,
  SerialNumber,
  MaterialDocument,
  MaterialDocumentYear,
  Equipment,
  _Product._Text[1: Language=$session.system_language].ProductName AS MaterialName
FROM I_SerialNumberMaterialDocument
;