P_validdate

DDL: P_VALIDDATE SQL: PVALIDDATE Type: view BASIC

P_validdate is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (mmpur_cat_itm) and exposes 1 field with key field OpnCtlgItemID.

Data Sources (1)

SourceAliasJoin Type
mmpur_cat_itm cat_itm from

Annotations (7)

NameValueLevelField
VDM.private true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName PVALIDDATE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.serviceQuality #C view
Metadata.ignorePropagatedAnnotations true view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY OpnCtlgItemID mmpur_cat_itm ctlg_itm_key Catalog Item Key

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_validdate.
-- 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: PVALIDDATE

CREATE VIEW P_validdate AS
SELECT
  cat_itm.ctlg_itm_key AS OpnCtlgItemID
FROM mmpur_cat_itm AS cat_itm
;