I_InternalOrderVH

DDL: I_INTERNALORDERVH SQL: IIO_VH3 Type: view COMPOSITE

Internal Order Value Help

I_InternalOrderVH is a Composite CDS View that provides data about "Internal Order Value Help" in SAP S/4HANA. It reads from 1 data source (I_InternalOrder) and exposes 4 fields with key field InternalOrder.

Data Sources (1)

SourceAliasJoin Type
I_InternalOrder I_InternalOrder from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IIO_VH3 view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey InternalOrder view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AccessControl.authorizationCheck #CHECK view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
Consumption.ranked true view
EndUserText.label Internal Order Value Help view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY InternalOrder InternalOrder Order
InternalOrderDescription Description
ControllingArea ControllingArea Controlling Area
OrderType OrderType Order Type

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_InternalOrderVH.
-- 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: IIO_VH3

CREATE VIEW I_InternalOrderVH AS
SELECT
  InternalOrder,
  cast( InternalOrderDescription as fis_io_text preserving type ) AS InternalOrderDescription,
  ControllingArea,
  OrderType
FROM I_InternalOrder
;