UPOV_NET_ID_FOR_MP

DDL: UPO_INT_V_NET_ID_FOR_MP SQL: UPOS_PR_NETIDMP Type: view

Retrieve Prod Network of an MP

UPOV_NET_ID_FOR_MP is a CDS View that provides data about "Retrieve Prod Network of an MP" in SAP S/4HANA. It reads from 2 data sources (gho_iflot_ext, gho_iflot_ext) and exposes 5 fields with key field NetworkID.

Data Sources (2)

SourceAliasJoin Type
gho_iflot_ext functloc inner
gho_iflot_ext functloc inner

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName UPOS_PR_NETIDMP view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Retrieve Prod Network of an MP view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY NetworkID links netid
NodeID links tpvon
netidasNetworkID
NodeID links tpnach
Medium links mediu
@AbapCatalog.sqlViewName: 'UPOS_PR_NETIDMP'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MASTER
@EndUserText.label: 'Retrieve Prod Network of an MP'
define view UPOV_NET_ID_FOR_MP
  as select distinct from inet          as links
    inner join            gho_iflot_ext as functloc on  functloc.tplnr =  links.tpvon
                                                    and links.kante    <> ''
                                                    and links.mlang    = $session.system_language
{
  key links.netid as NetworkID,
      links.tpvon as NodeID,
      links.mediu as Medium
}
where
      functloc.gho_netobj_type <> 'GHO_PN'
  and functloc.gho_netobj_type <> 'GHO_WC'
  and functloc.gho_netobj_type <> 'GHO_WELL'
union select distinct from inet          as links
  inner join               gho_iflot_ext as functloc on  functloc.tplnr =  links.tpnach
                                                     and links.kante    <> ''
                                                     and links.mlang    = $session.system_language
{
  key links.netid  as NetworkID,
      links.tpnach as NodeID,
      links.mediu  as Medium
}
where
      functloc.gho_netobj_type <> 'GHO_PN'
  and functloc.gho_netobj_type <> 'GHO_WC'
  and functloc.gho_netobj_type <> 'GHO_WELL'