UPOV_NETOBJS
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)
| Source | Alias | Join Type |
|---|---|---|
| upoc_udm_alkey | alkeyobj | inner |
| upot_int_nobj | altLabel | left_outer |
| iflotx | funcloc_desc | left_outer |
| gho_iflot_ext | functionalloc | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA