I_OrderInternalID

DDL: I_ORDERINTERNALID Type: view_entity BASIC Package: VDM_PP_SFC

Order Internal ID

I_OrderInternalID is a Basic CDS View (Dimension) that provides data about "Order Internal ID" in SAP S/4HANA. It reads from 1 data source (I_LogisticsOrderBasic) and exposes 3 fields with key field OrderInternalID. It has 1 association to related views. Part of development package VDM_PP_SFC.

Data Sources (1)

SourceAliasJoin Type
I_LogisticsOrderBasic I_LogisticsOrderBasic from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_Order _Order $projection.OrderID = _Order.OrderID

Annotations (14)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
Analytics.dataCategory #DIMENSION view
Analytics.technicalName IORDERINTID view
Analytics.internalName #LOCAL view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey OrderInternalID view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Order Internal ID view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY OrderInternalID OrderInternalID Plan No.f.Oper.
OrderID OrderID Order ID
associations_Order

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_OrderInternalID.
-- 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_OrderInternalID AS
SELECT
  OrderInternalID,
  OrderID
FROM I_LogisticsOrderBasic
LEFT OUTER JOIN I_Order AS _Order ON OrderID = _Order.OrderID  -- association [1..1]
;