P_GRIRProcHistNxtRtCseTmeStmp

DDL: P_GRIRPROCHISTNXTRTCSETMESTMP SQL: PGRIRHISTNXTRTCS Type: view CONSUMPTION

GR/IR Proc History w next root cse time

P_GRIRProcHistNxtRtCseTmeStmp is a Consumption CDS View that provides data about "GR/IR Proc History w next root cse time" in SAP S/4HANA. It reads from 1 data source (I_GRIRProcessHistory) and exposes 12 fields with key fields CompanyCode, PurchasingDocument, PurchasingDocumentItem, LastChangeDateTime. It has 1 association to related views.

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 (9)

NameValueLevelField
AbapCatalog.sqlViewName PGRIRHISTNXTRTCS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #CONSUMPTION view
VDM.private true view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label GR/IR Proc History w next root cse time view

Fields (12)

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
GRIRClrgProcNextChangeDateTime
GRIRClearingProcessRootCause I_GRIRProcessHistory GRIRClearingProcessRootCause Root Cause
Supplier I_GRIRProcessHistory Supplier Supplier
Plant I_GRIRProcessHistory Plant Valuation Area
MaterialGroup I_GRIRProcessHistory MaterialGroup Product Group
PurchasingGroup I_GRIRProcessHistory PurchasingGroup Purchasing Group
PurchasingOrganization I_GRIRProcessHistory PurchasingOrganization Purchasing Organization
AccountAssignmentCategory I_GRIRProcessHistory AccountAssignmentCategory Acct Assgmt Cat

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_GRIRProcHistNxtRtCseTmeStmp.
-- 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: PGRIRHISTNXTRTCS

CREATE VIEW P_GRIRProcHistNxtRtCseTmeStmp 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 GRIRClrgProcNextChangeDateTime,
  I_GRIRProcessHistory.GRIRClearingProcessRootCause AS GRIRClearingProcessRootCause,
  I_GRIRProcessHistory.Supplier AS Supplier,
  I_GRIRProcessHistory.Plant AS Plant,
  I_GRIRProcessHistory.MaterialGroup AS MaterialGroup,
  I_GRIRProcessHistory.PurchasingGroup AS PurchasingGroup,
  I_GRIRProcessHistory.PurchasingOrganization AS PurchasingOrganization,
  I_GRIRProcessHistory.AccountAssignmentCategory AS AccountAssignmentCategory
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]
;