I_NetworkRouting

DDL: I_NETWORKROUTING Type: view_entity COMPOSITE

Network and Routing relation

I_NetworkRouting is a Composite CDS View that provides data about "Network and Routing relation" in SAP S/4HANA. It reads from 2 data sources (afko, afvc) and exposes 6 fields. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
afko afko from
afvc afvc inner

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_ProjectNetwork _ProjectNetwork $projection.ProjectNetwork = _ProjectNetwork.ProjectNetwork

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Network and Routing relation view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #COMPOSITE view

Fields (6)

KeyFieldSource TableSource FieldDescription
ProjectNetwork afko aufnr SettlementOrder
NetworkActivity
OperationOrderRoutingNumber afvc aufpl TaskList No.Ops
OrderGeneralIndexNumber afvc aplzl Plan No.f.Oper.
OrderRoutingAndIndexNumber afvc objnr Val. Obj. No.
_ProjectNetwork _ProjectNetwork

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_NetworkRouting.
-- 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_NetworkRouting AS
SELECT
  afko.aufnr AS ProjectNetwork,
  cast(afvc.vornr as vdm_vornr preserving type) AS NetworkActivity,
  afvc.aufpl AS OperationOrderRoutingNumber,
  afvc.aplzl AS OrderGeneralIndexNumber,
  afvc.objnr AS OrderRoutingAndIndexNumber
FROM afko
INNER JOIN afvc ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_ProjectNetwork AS _ProjectNetwork ON ProjectNetwork = _ProjectNetwork.ProjectNetwork  -- association [0..1]
;