I_PurReqnCreationDate

DDL: I_PURREQNCREATIONDATE SQL: IPURREQNCRTDAT Type: view COMPOSITE

Creation Date

I_PurReqnCreationDate is a Composite CDS View that provides data about "Creation Date" in SAP S/4HANA. It reads from 1 data source (I_Purchaserequisitionitem) and exposes 2 fields with key field PurchaseRequisition.

Data Sources (1)

SourceAliasJoin Type
I_Purchaserequisitionitem I_Purchaserequisitionitem from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IPURREQNCRTDAT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Creation Date view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #C view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY PurchaseRequisition I_Purchaserequisitionitem PurchaseRequisition Requisition
CreationDate

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_PurReqnCreationDate.
-- 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: IPURREQNCRTDAT

CREATE VIEW I_PurReqnCreationDate AS
SELECT
  I_Purchaserequisitionitem.PurchaseRequisition AS PurchaseRequisition,
  min (I_Purchaserequisitionitem.CreationDate) AS CreationDate
FROM I_Purchaserequisitionitem
;