I_PurContrValidityStatus

DDL: I_PURCONTRVALIDITYSTATUS SQL: IPURCONTVALSTS Type: view COMPOSITE

Purchase Contract Validity Status

I_PurContrValidityStatus is a Composite CDS View that provides data about "Purchase Contract Validity Status" in SAP S/4HANA. It reads from 1 data source (P_PurContrCalcValidityStatus) and exposes 4 fields with key field PurchaseContract.

Data Sources (1)

SourceAliasJoin Type
P_PurContrCalcValidityStatus P_PurContrCalcValidityStatus from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IPURCONTVALSTS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Purchase Contract Validity Status view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY PurchaseContract PurchaseContract Purchasing Doc.
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
ActivePurchasingDocument ActivePurchasingDocument Active Purchase Doc

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_PurContrValidityStatus.
-- 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: IPURCONTVALSTS

CREATE VIEW I_PurContrValidityStatus AS
SELECT
  PurchaseContract,
  ValidityStartDate,
  ValidityEndDate,
  ActivePurchasingDocument
FROM P_PurContrCalcValidityStatus
;