P_LtstGIReltdMatDocTimeStmp

DDL: P_LTSTGIRELTDMATDOCTIMESTMP SQL: PLATMATDOCTMSTMP Type: view COMPOSITE

Latest GI Rel. Mat Doc with Time Stamps

P_LtstGIReltdMatDocTimeStmp is a Composite CDS View that provides data about "Latest GI Rel. Mat Doc with Time Stamps" in SAP S/4HANA. It reads from 1 data source (I_SDDocumentProcessFlow) and exposes 10 fields with key fields PrecedingDocument, PrecedingDocumentCategory, SubsequentDocument, SubsequentDocumentCategory.

Data Sources (1)

SourceAliasJoin Type
I_SDDocumentProcessFlow I_SDDocumentProcessFlow from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PLATMATDOCTMSTMP view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Latest GI Rel. Mat Doc with Time Stamps view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.private true view
VDM.viewType #COMPOSITE view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY PrecedingDocument PrecedingDocument SD Document
KEY PrecedingDocumentCategory PrecedingDocumentCategory
KEY SubsequentDocument SubsequentDocument
KEY SubsequentDocumentCategory SubsequentDocumentCategory
SubsequentDocumentItem SubsequentDocumentItem
MaterialDocument SubsequentDocument
CreationDate CreationDate Time Stamp
CreationTime CreationTime Time of Change
MaterialDocumentYear MaterialDocumentYear Material Document Year
timestamp

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_LtstGIReltdMatDocTimeStmp.
-- 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: PLATMATDOCTMSTMP

CREATE VIEW P_LtstGIReltdMatDocTimeStmp AS
SELECT
  PrecedingDocument,
  PrecedingDocumentCategory,
  SubsequentDocument,
  SubsequentDocumentCategory,
  SubsequentDocumentItem,
  SubsequentDocument AS MaterialDocument,
  CreationDate,
  CreationTime,
  MaterialDocumentYear,
  concat(CreationDate, CreationTime) AS timestamp
FROM I_SDDocumentProcessFlow
;