I_ProdnVersLastChangeHistory

DDL: I_PRODNVERSLASTCHANGEHISTORY SQL: IPRODNVERSLCH Type: view_entity BASIC

Production Version Last Change History

I_ProdnVersLastChangeHistory is a Basic CDS View that provides data about "Production Version Last Change History" in SAP S/4HANA. It reads from 1 data source (P_ProdnVersLastChangeHistory) and exposes 12 fields with key fields Material, Plant, ProductionVersion.

Data Sources (1)

SourceAliasJoin Type
P_ProdnVersLastChangeHistory P_ProdnVersLastChangeHistory from

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
Analytics.technicalName IPRODNVERSLCH view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Production Version Last Change History view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
KEY Plant Plant Valuation Area
KEY ProductionVersion ProductionVersion Version ID
ChangeHistoryCount ChangeHistoryCount Sort pos.
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
ChangeNumber ChangeNumber Change Number
CreationDate CreationDate Time Stamp
CreatedByUser CreatedByUser User Name
LastChangeDate LastChangeDate Time Stamp
LastChangedByUser LastChangedByUser User Name
_ChangeMaster _ChangeMaster

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_ProdnVersLastChangeHistory.
-- 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: IPRODNVERSLCH

CREATE VIEW I_ProdnVersLastChangeHistory AS
SELECT
  Material,
  Plant,
  ProductionVersion,
  ChangeHistoryCount,
  ValidityStartDate,
  ValidityEndDate,
  ChangeNumber,
  CreationDate,
  CreatedByUser,
  LastChangeDate,
  LastChangedByUser
FROM P_ProdnVersLastChangeHistory
;