P_GRIRProcHistSuccssrTimestamp

DDL: P_GRIRPROCHISTSUCCSSRTIMESTAMP Type: view_entity CONSUMPTION Package: FINS_FIS_FICO

GR/IR Process History with successor timestamp

P_GRIRProcHistSuccssrTimestamp is a Consumption CDS View that provides data about "GR/IR Process History with successor timestamp" in SAP S/4HANA. It reads from 1 data source (I_GRIRProcessHistory) and exposes 10 fields with key fields CompanyCode, PurchasingDocument, PurchasingDocumentItem, LastChangeDateTime. It has 1 association to related views. Part of development package FINS_FIS_FICO.

Data Sources (1)

SourceAliasJoin Type
I_GRIRProcessHistory I_GRIRProcessHistory from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_GRIRProcessHistory next $projection.CompanyCode=next.CompanyCode and $projection.PurchasingDocument=next.PurchasingDocument and $projection.PurchasingDocumentItem=next.PurchasingDocumentItem

Annotations (4)

NameValueLevelField
VDM.viewType #CONSUMPTION view
VDM.private true view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode I_GRIRProcessHistory CompanyCode Receiver Company Code
KEY PurchasingDocument I_GRIRProcessHistory PurchasingDocument Purchasing Document
KEY PurchasingDocumentItem I_GRIRProcessHistory PurchasingDocumentItem Purchasing Doc. Item
KEY LastChangeDateTime I_GRIRProcessHistory LastChangeDateTime Timestamp
ImmediateNextChangeDateTime
GRIRClearingProcessStatus I_GRIRProcessHistory GRIRClearingProcessStatus Status
GRIRClearingProcessPriority I_GRIRProcessHistory GRIRClearingProcessPriority Priority
ResponsiblePerson I_GRIRProcessHistory ResponsiblePerson Processor
ResponsibleDepartment I_GRIRProcessHistory ResponsibleDepartment Processing Department
GRIRClearingProcessRootCause I_GRIRProcessHistory GRIRClearingProcessRootCause Root Cause

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_GRIRProcHistSuccssrTimestamp.
-- 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.

CREATE VIEW P_GRIRProcHistSuccssrTimestamp AS
SELECT
  I_GRIRProcessHistory.CompanyCode AS CompanyCode,
  I_GRIRProcessHistory.PurchasingDocument AS PurchasingDocument,
  I_GRIRProcessHistory.PurchasingDocumentItem AS PurchasingDocumentItem,
  I_GRIRProcessHistory.LastChangeDateTime AS LastChangeDateTime,
  min(next.LastChangeDateTime) AS ImmediateNextChangeDateTime,
  I_GRIRProcessHistory.GRIRClearingProcessStatus AS GRIRClearingProcessStatus,
  I_GRIRProcessHistory.GRIRClearingProcessPriority AS GRIRClearingProcessPriority,
  I_GRIRProcessHistory.ResponsiblePerson AS ResponsiblePerson,
  I_GRIRProcessHistory.ResponsibleDepartment AS ResponsibleDepartment,
  I_GRIRProcessHistory.GRIRClearingProcessRootCause AS GRIRClearingProcessRootCause
FROM I_GRIRProcessHistory
LEFT OUTER JOIN I_GRIRProcessHistory AS next ON CompanyCode=next.CompanyCode AND PurchasingDocument=next.PurchasingDocument AND PurchasingDocumentItem=next.PurchasingDocumentItem  -- association [0..1]
;