C_SSPPurchaseContractItemVH

DDL: C_SSPPURCHASECONTRACTITEMVH Type: view_entity CONSUMPTION

Contract Item for Enhanced Limit

C_SSPPurchaseContractItemVH is a Consumption CDS View that provides data about "Contract Item for Enhanced Limit" in SAP S/4HANA. It reads from 1 data source (I_PurchaseContractItem) and exposes 11 fields with key fields PurchaseContract, PurchaseContractItem.

Data Sources (1)

SourceAliasJoin Type
I_PurchaseContractItem I_PurchaseContractItem from

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey PurchaseContractItem view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Contract Item for Enhanced Limit view
Metadata.ignorePropagatedAnnotations true view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY PurchaseContract PurchaseContract Purchasing Doc.
KEY PurchaseContractItem PurchaseContractItem Item
Material Material Vehicle Model
MaterialGroup MaterialGroup Product Group
ProductTypeCode ProductTypeCode Product Type Group
TargetQuantity TargetQuantity Target Quantity
OrderQuantityUnit OrderQuantityUnit Sales Unit
CompanyCode CompanyCode Receiver Company Code
Plant Plant Valuation Area
ProcurementHubSourceSystem
_PurchaseContract _PurchaseContract

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_SSPPurchaseContractItemVH.
-- 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_SSPPurchaseContractItemVH AS
SELECT
  PurchaseContract,
  PurchaseContractItem,
  Material,
  MaterialGroup,
  ProductTypeCode,
  TargetQuantity,
  OrderQuantityUnit,
  CompanyCode,
  Plant,
  cast(' ' as abap.char( 10 ) ) AS ProcurementHubSourceSystem
FROM I_PurchaseContractItem
;