I_PurContrVersionType

DDL: I_PURCONTRVERSIONTYPE SQL: IPURCTRVERSTYPE Type: view BASIC

Purchase Contract version type

I_PurContrVersionType is a Basic CDS View that provides data about "Purchase Contract version type" in SAP S/4HANA. It reads from 1 data source (P_PurContrVersionType) and exposes 4 fields with key field PurgDocChangeRequestStatus.

Data Sources (1)

SourceAliasJoin Type
P_PurContrVersionType P_PurContrVersionType from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IPURCTRVERSTYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Purchase Contract version type view
VDM.viewType #BASIC view
ObjectModel.representativeKey PurgDocChangeRequestStatus view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY PurgDocChangeRequestStatus PurgDocChangeRequestStatus Change Request Stat.
Language Language Report Text Language
ChangeRequestNote ChangeRequestNote Version Type
_Language _Language

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_PurContrVersionType.
-- 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: IPURCTRVERSTYPE

CREATE VIEW I_PurContrVersionType AS
SELECT
  PurgDocChangeRequestStatus,
  Language,
  ChangeRequestNote
FROM P_PurContrVersionType
;