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
NetworkActivity
OperationOrderRoutingNumber afvc aufpl
OrderGeneralIndexNumber afvc aplzl
OrderRoutingAndIndexNumber afvc objnr
_ProjectNetwork _ProjectNetwork
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Network and Routing relation'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #X,
  sizeCategory: #S,
  dataClass: #MIXED
}

@VDM.viewType:#COMPOSITE

define view entity I_NetworkRouting

  as select from afko
    inner join   afvc on afko.aufpl = afvc.aufpl
  association [0..1] to I_ProjectNetwork as _ProjectNetwork on $projection.ProjectNetwork = _ProjectNetwork.ProjectNetwork
{
  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,

  _ProjectNetwork
}

where
      afvc.objnr <> ''
  and afvc.objnr not like 'OV%'