I_OrderBasicVH

DDL: I_ORDERBASICVH Type: view_entity COMPOSITE

Order Header

I_OrderBasicVH is a Composite CDS View that provides data about "Order Header" in SAP S/4HANA. It reads from 1 data source (I_OrderBasic) and exposes 8 fields with key field OrderID.

Data Sources (1)

SourceAliasJoin Type
I_OrderBasic I_OrderBasic from

Annotations (14)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
Analytics.technicalName IORDERBASICVH view
Consumption.ranked true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey OrderID view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #COMPOSITE view
EndUserText.label Order Header view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY OrderID Order ID
OrderCategory OrderCategory Order Category
OrderType Order Type
OrderDescription OrderDescription
Plant Plant Valuation Area
ControllingArea ControllingArea Controlling Area
_OrderCategory _OrderCategory
_OrderType _OrderType

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_OrderBasicVH.
-- 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 I_OrderBasicVH AS
SELECT
  cast(OrderID as aufnr preserving type) AS OrderID,
  OrderCategory,
  cast(OrderType as aufart preserving type) AS OrderType,
  OrderDescription,
  Plant,
  ControllingArea
FROM I_OrderBasic
;