I_RO_SAFTMatlDocFirstItem

DDL: I_RO_SAFTMATLDOCFIRSTITEM Type: view_entity COMPOSITE

RO SAFT Matl Doc First Line

I_RO_SAFTMatlDocFirstItem is a Composite CDS View (Dimension) that provides data about "RO SAFT Matl Doc First Line" in SAP S/4HANA. It reads from 1 data source (I_MaterialDocumentRecord) and exposes 4 fields with key fields MaterialDocument, MaterialDocumentYear, MaterialDocumentItem, CompanyCode.

Data Sources (1)

SourceAliasJoin Type
I_MaterialDocumentRecord I_MaterialDocumentRecord from

Annotations (11)

NameValueLevelField
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label RO SAFT Matl Doc First Line view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY MaterialDocument MaterialDocument Material Doc.
KEY MaterialDocumentYear MaterialDocumentYear Material Document Year
KEY MaterialDocumentItem
KEY CompanyCode CompanyCode Receiver Company Code

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_RO_SAFTMatlDocFirstItem.
-- 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_RO_SAFTMatlDocFirstItem AS
SELECT
  MaterialDocument,
  MaterialDocumentYear,
  min( MaterialDocumentItem ) AS MaterialDocumentItem,
  CompanyCode
FROM I_MaterialDocumentRecord
;