UPOV_NETOBJ_FROM_MODELING
Network Obects from UOM Modeling
UPOV_NETOBJ_FROM_MODELING is a CDS View that provides data about "Network Obects from UOM Modeling" in SAP S/4HANA. It reads from 6 data sources and exposes 11 fields.
Data Sources (6)
| Source | Alias | Join Type |
|---|---|---|
| gho_iflot_ext | dn | inner |
| gho_iflot_ext | dn | inner |
| gho_iflot_ext | nobj | inner |
| gho_iflot_ext | nobj | inner |
| inet | objLink | from |
| inet | objLink | union_all |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | UPOS_NOBJ_MODEL | 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 Obects from UOM Modeling | view |
@AbapCatalog.sqlViewName: 'UPOS_NOBJ_MODEL'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MASTER
@EndUserText.label: 'Network Obects from UOM Modeling'
define view UPOV_NETOBJ_FROM_MODELING
as select from inet as objLink
inner join gho_iflot_ext as dn on dn.netid = objLink.netid
and dn.gho_netobj_type = 'GHO_PN'
inner join gho_iflot_ext as nobj on nobj.tplnr = objLink.tpnach
{
dn.tplnr as ProductionNetwork,
objLink.tpnach as NetObject,
nobj.gho_netobj_type,
objLink.datva as datva,
objLink.zeitva as zeitva,
objLink.datvb as datvb,
objLink.zeitvb as zeitvb
}
where
objLink.kante <> ''
and objLink.mlang = $session.system_language
and objLink.netid <> ''
union all select from inet as objLink
inner join gho_iflot_ext as dn on dn.netid = objLink.netid
and dn.gho_netobj_type = 'GHO_PN'
inner join gho_iflot_ext as nobj on nobj.tplnr = objLink.tpvon
{
dn.tplnr as ProductionNetwork,
objLink.tpvon as NetObject,
nobj.gho_netobj_type,
objLink.datva as datva,
objLink.zeitva as zeitva,
objLink.datvb as datvb,
objLink.zeitvb as zeitvb
}
where
objLink.kante <> ''
and objLink.mlang = $session.system_language
and objLink.netid <> ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"GHO_IFLOT_EXT",
"INET"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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