C_PPS_PurContrDocumentTypeVH

DDL: C_PPS_PURCONTRDOCUMENTTYPEVH Type: view_entity CONSUMPTION

Purchase Contract Document Types

C_PPS_PurContrDocumentTypeVH is a Consumption CDS View that provides data about "Purchase Contract Document Types" in SAP S/4HANA. It reads from 1 data source (I_PPS_PurContrDocType) and exposes 3 fields with key fields PurchasingDocumentCategory, PurchaseContractType.

Data Sources (1)

SourceAliasJoin Type
I_PPS_PurContrDocType I_PPS_PurContrDocType from

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Purchase Contract Document Types view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.representativeKey PurchaseContractType view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.dataCategory #VALUE_HELP view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocumentCategory PurchasingDocumentCategory Doc. Category
KEY PurchaseContractType PurchaseContractType Order Type
PurchasingDocumentTypeName PurchasingDocumentTypeName Description

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 C_PPS_PurContrDocumentTypeVH.
-- 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.

CREATE VIEW C_PPS_PurContrDocumentTypeVH AS
SELECT
  PurchasingDocumentCategory,
  PurchaseContractType,
  PurchasingDocumentTypeName
FROM I_PPS_PurContrDocType
;