I_NetworkProfile

DDL: I_NETWORKPROFILE SQL: INETWORKPROFILE Type: view BASIC

Network Profile Details

I_NetworkProfile (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Project Network Profile · R&D Engineering

I_NetworkProfile is a Basic CDS View that provides data about "Network Profile Details" in SAP S/4HANA. It reads from 1 data source (tcn41) and exposes 4 fields with key fields NetworkProfile, BillOfOperationsApplication. It has 2 associations to related views.

SAP API Hub

StateC1
Line of BusinessR&D Engineering
Application ComponentPS-ST
CapabilitiesData Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities, Data Source for Data Extraction
PackageR&D Engineering for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
tcn41 tcn41 from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_Networkprofiletext _Text $projection.NetworkProfile = _Text.NetworkProfile and $projection.BillOfOperationsApplication = _Text.BillOfOperationsApplication
[1..1] I_BOOApplication _BOOApplication $projection.BillOfOperationsApplication = _BOOApplication.BillOfOperationsApplication

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName INETWORKPROFILE view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey NetworkProfile view
EndUserText.label Network Profile Details view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.sapObjectNodeType.name ProjectNetworkProfile view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Metadata.ignorePropagatedAnnotations true view
Analytics.internalName #LOCAL view
Analytics.dataExtraction.enabled true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY NetworkProfile tcn41 profidnetz Network Profile
KEY BillOfOperationsApplication plnaw Application of the task list
_Text _Text
_BOOApplication _BOOApplication

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_NetworkProfile.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: INETWORKPROFILE

CREATE VIEW I_NetworkProfile AS
SELECT
  tcn41.profidnetz AS NetworkProfile,
  plnaw AS BillOfOperationsApplication
FROM tcn41
LEFT OUTER JOIN I_Networkprofiletext AS _Text ON NetworkProfile = _Text.NetworkProfile AND BillOfOperationsApplication = _Text.BillOfOperationsApplication  -- association [0..*]
LEFT OUTER JOIN I_BOOApplication AS _BOOApplication ON BillOfOperationsApplication = _BOOApplication.BillOfOperationsApplication  -- association [1..1]
;