I_PurchasingDocumentItemStdVH

DDL: I_PURCHASINGDOCUMENTITEMSTDVH SQL: IPDI__VH Type: view COMPOSITE

Purchasing Document Item

I_PurchasingDocumentItemStdVH (Composite)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Sourcing & Procurement

I_PurchasingDocumentItemStdVH is a Composite CDS View that provides data about "Purchasing Document Item" in SAP S/4HANA. It reads from 1 data source (I_PurchasingDocumentItem) and exposes 6 fields with key fields PurchasingDocument, PurchasingDocumentItem.

SAP API Hub

StateC1
Line of BusinessSourcing & Procurement
Application ComponentMM-PUR-PO
CapabilitiesData Source for Search, Data Provider for Value Help
PackageSourcing & Procurement for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_PurchasingDocumentItem I_PurchasingDocumentItem from

Annotations (14)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName IPDI__VH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey PurchasingDocumentItem view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Purchasing Document Item view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocument PurchasingDocument Purchasing Document Number
KEY PurchasingDocumentItem PurchasingDocumentItem Item Number of Purchasing Document
Plant Plant Valuation Area
PurchasingDocumentCategory PurchasingDocumentCategory Purchasing Document Category
IsEndOfPurposeBlocked IsEndOfPurposeBlocked Business Purpose Completed
_PurchasingDocument _PurchasingDocument

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_PurchasingDocumentItemStdVH.
-- 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: IPDI__VH

CREATE VIEW I_PurchasingDocumentItemStdVH AS
SELECT
  PurchasingDocument,
  PurchasingDocumentItem,
  Plant,
  PurchasingDocumentCategory,
  IsEndOfPurposeBlocked
FROM I_PurchasingDocumentItem
;