I_MatlDocArchivingDate

DDL: I_MATLDOCARCHIVINGDATE SQL: IMATARCHDATE Type: view COMPOSITE

Latest archiving date per plant

I_MatlDocArchivingDate is a Composite CDS View that provides data about "Latest archiving date per plant" in SAP S/4HANA. It reads from 1 data source (I_MaterialDocumentRecord) and exposes 3 fields with key fields StockIdentifyingMaterial, Plant.

Data Sources (1)

SourceAliasJoin Type
I_MaterialDocumentRecord I_MaterialDocumentRecord from

Annotations (12)

NameValueLevelField
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName IMATARCHDATE view
EndUserText.label Latest archiving date per plant view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.private false view
VDM.viewType #COMPOSITE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY StockIdentifyingMaterial StockIdentifyingMaterial Stock Mat.
KEY Plant Plant Valuation Area
LatestMatlDocArchivingDate

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_MatlDocArchivingDate.
-- 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: IMATARCHDATE

CREATE VIEW I_MatlDocArchivingDate AS
SELECT
  StockIdentifyingMaterial,
  Plant,
  max(PostingDate) AS LatestMatlDocArchivingDate
FROM I_MaterialDocumentRecord
;