I_PurchaseContractValidity

DDL: I_PURCHASECONTRACTVALIDITY SQL: IMMPCVALIDITY Type: view BASIC

Purchase Contract Validity

I_PurchaseContractValidity is a Basic CDS View (Dimension) that provides data about "Purchase Contract Validity" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 2 fields with key field PurchaseContractValidityStatus.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IMMPCVALIDITY view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Purchase Contract Validity view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view
Analytics.dataCategory #DIMENSION view
ObjectModel.representativeKey PurchaseContractValidityStatus view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY PurchaseContractValidityStatus
_Text _Text

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_PurchaseContractValidity.
-- 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: IMMPCVALIDITY

CREATE VIEW I_PurchaseContractValidity AS
SELECT
  cast( dd07t.domvalue_l as mm_contract_status_id ) AS PurchaseContractValidityStatus
FROM dd07t
;