UPOV_NETOBJS

DDL: UPO_INT_V_NETOBJS SQL: UPOS_NETOBJS Type: view

Network Objects with Alternate Label

UPOV_NETOBJS is a CDS View that provides data about "Network Objects with Alternate Label" in SAP S/4HANA. It reads from 4 data sources (upoc_udm_alkey, upot_int_nobj, iflotx, gho_iflot_ext) and exposes 5 fields.

Data Sources (4)

SourceAliasJoin Type
upoc_udm_alkey alkeyobj inner
upot_int_nobj altLabel left_outer
iflotx funcloc_desc left_outer
gho_iflot_ext functionalloc from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName UPOS_NETOBJS 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 Network Objects with Alternate Label view

Fields (5)

KeyFieldSource TableSource FieldDescription
tplnr gho_iflot_ext tplnr
alkey upoc_udm_alkey alkey
strno
pltxt iflotx pltxt
pntimezone gho_iflot_ext gho_pn_tz
@AbapCatalog.sqlViewName: 'UPOS_NETOBJS'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MASTER
@EndUserText.label: 'Network Objects with Alternate Label'
define view UPOV_NETOBJS
  as select from    gho_iflot_ext  as functionalloc
    inner join      upoc_udm_alkey as alkeyobj     on alkeyobj.gho_netobj_type = functionalloc.gho_netobj_type
    left outer join upot_int_nobj  as altLabel     on altLabel.tplnr = functionalloc.tplnr
    left outer join iflotx         as funcloc_desc on  funcloc_desc.tplnr = functionalloc.tplnr
                                                   and funcloc_desc.spras = $session.system_language

{
  functionalloc.tplnr                                                       as tplnr,
  functionalloc.gho_netobj_type                                             as gho_netobj_type,
  alkeyobj.alkey                                                            as alkey,
  cast(altLabel.converted_label as ilom_strno)                              as strno,
  funcloc_desc.pltxt,
  functionalloc.gho_pn_tz                                                   as pntimezone
}