C_POItemInternalStatusVH_2

DDL: C_POITEMINTERNALSTATUSVH_2 SQL: CMMPOINTSTATVH2 Type: view CONSUMPTION

Purchase Order Item Status

C_POItemInternalStatusVH_2 is a Consumption CDS View that provides data about "Purchase Order Item Status" in SAP S/4HANA. It reads from 1 data source (I_PurchasingDocumentStatusText) and exposes 2 fields with key field PurchaseOrderItemStatus.

Data Sources (1)

SourceAliasJoin Type
I_PurchasingDocumentStatusText I_PurchasingDocumentStatusText from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName CMMPOINTSTATVH2 view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #NONE view
Search.searchable true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #VALUE_HELP view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.representativeKey PurchaseOrderItemStatus view
EndUserText.label Purchase Order Item Status view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY PurchaseOrderItemStatus PurchasingDocumentStatus Purchase Order Item Status
PurchaseOrderItemStatusName PurchasingDocumentStatusName Purchase Order Item Status Name

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_POItemInternalStatusVH_2.
-- 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: CMMPOINTSTATVH2

CREATE VIEW C_POItemInternalStatusVH_2 AS
SELECT
  PurchasingDocumentStatus AS PurchaseOrderItemStatus,
  PurchasingDocumentStatusName AS PurchaseOrderItemStatusName
FROM I_PurchasingDocumentStatusText
;