P_BOMItmModifiedDate

DDL: P_BOMITMMODIFIEDDATE SQL: PBOMITMMODDATE Type: view COMPOSITE Package: MPE_PLAN_MEC

Maximum Created/Changed Date for all BOM Items

P_BOMItmModifiedDate is a Composite CDS View that provides data about "Maximum Created/Changed Date for all BOM Items" in SAP S/4HANA. It reads from 1 data source (P_BOMItmValdty) and exposes 8 fields with key fields BillOfMaterial, BillOfMaterialCategory, BillOfMaterialVariant, BillOfMaterialVersion. Part of development package MPE_PLAN_MEC.

Data Sources (1)

SourceAliasJoin Type
P_BOMItmValdty BOMItem from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName PBOMITMMODDATE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.private true view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MASTER view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY BillOfMaterial P_BOMItmValdty BillOfMaterial BOM
KEY BillOfMaterialCategory P_BOMItmValdty BillOfMaterialCategory BOM category
KEY BillOfMaterialVariant P_BOMItmValdty BillOfMaterialVariant AlternativeBOM
KEY BillOfMaterialVersion P_BOMItmValdty BillOfMaterialVersion BOM Version
BOMItemRecordCreationDate
BOMItemLastChangeDate
LastChgdValidityEndDte
LastChgdValidityStartDte

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 P_BOMItmModifiedDate.
-- 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: PBOMITMMODDATE

CREATE VIEW P_BOMItmModifiedDate AS
SELECT
  BOMItem.BillOfMaterial AS BillOfMaterial,
  BOMItem.BillOfMaterialCategory AS BillOfMaterialCategory,
  BOMItem.BillOfMaterialVariant AS BillOfMaterialVariant,
  BOMItem.BillOfMaterialVersion AS BillOfMaterialVersion,
  max(BOMItem.BOMItemRecordCreationDate) AS BOMItemRecordCreationDate,
  max(BOMItem.BOMItemLastChangeDate) AS BOMItemLastChangeDate,
  max(BOMItem.ValidityEndDate) AS LastChgdValidityEndDte,
  max(BOMItem.ValidityStartDate) AS LastChgdValidityStartDte
FROM P_BOMItmValdty AS BOMItem
;