UPOV_NET_ID_FOR_MP
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)
| Source | Alias | Join Type |
|---|---|---|
| gho_iflot_ext | functloc | inner |
| gho_iflot_ext | functloc | inner |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| 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 |
@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'
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