I_AsstmtMdlMaxVersValidityEnd

DDL: I_ASSTMTMDLMAXVERSVALIDITYEND SQL: IASSTMTMAXVALDT Type: view COMPOSITE Package: RFM_ASSORTMENT_VDM

Valid-To Date of Last Assortment Module Version

I_AsstmtMdlMaxVersValidityEnd is a Composite CDS View that provides data about "Valid-To Date of Last Assortment Module Version" in SAP S/4HANA. It reads from 1 data source (I_ExplicitAsstmtModuleVersion) and exposes 2 fields with key field AssortmentModuleUUID. Part of development package RFM_ASSORTMENT_VDM.

Data Sources (1)

SourceAliasJoin Type
I_ExplicitAsstmtModuleVersion I_ExplicitAsstmtModuleVersion from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IASSTMTMAXVALDT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Valid-To Date of Last Assortment Module Version view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #COMPOSITE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY AssortmentModuleUUID AssortmentModuleUUID Assortment UUID
ValidityEndDate

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_AsstmtMdlMaxVersValidityEnd.
-- 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: IASSTMTMAXVALDT

CREATE VIEW I_AsstmtMdlMaxVersValidityEnd AS
SELECT
  AssortmentModuleUUID,
  max(ValidityEndDate) AS ValidityEndDate
FROM I_ExplicitAsstmtModuleVersion
;