I_ProductCostCtrlgOrderStdVH

DDL: I_PRODUCTCOSTCTRLGORDERSTDVH SQL: IFIPCCO__VH Type: view COMPOSITE

Product Cost Controlling Order

I_ProductCostCtrlgOrderStdVH is a Composite CDS View that provides data about "Product Cost Controlling Order" in SAP S/4HANA. It reads from 1 data source (I_ProductCostCtrlgOrder) and exposes 5 fields with key field OrderID.

Data Sources (1)

SourceAliasJoin Type
I_ProductCostCtrlgOrder I_ProductCostCtrlgOrder from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IFIPCCO__VH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey OrderID view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
AccessControl.authorizationCheck #CHECK view
ClientHandling.type #CLIENT_DEPENDENT view
Metadata.ignorePropagatedAnnotations true view
Consumption.ranked true view
Search.searchable true view
EndUserText.label Product Cost Controlling Order view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY OrderID OrderID Order ID
OrderDescription OrderDescription
OrderCategory OrderCategory Order Category
OrderType OrderType Order Type
Plant Plant Valuation Area

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_ProductCostCtrlgOrderStdVH.
-- 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: IFIPCCO__VH

CREATE VIEW I_ProductCostCtrlgOrderStdVH AS
SELECT
  OrderID,
  OrderDescription,
  OrderCategory,
  OrderType,
  Plant
FROM I_ProductCostCtrlgOrder
;