I_Networkprofiletext
Network Profile - Text
I_Networkprofiletext is a Basic CDS View that provides data about "Network Profile - Text" in SAP S/4HANA. It reads from 1 data source (tcn4t) and exposes 6 fields with key fields Language, NetworkProfile, BillOfOperationsApplication. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tcn4t | tcn4t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [1..1] | I_BOOApplication | _BOOApplication | $projection.BillOfOperationsApplication = _BOOApplication.BillOfOperationsApplication |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | INTWKPROFILETEXT | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | NetworkProfile | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| EndUserText.label | Network Profile - Text | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
@AbapCatalog.sqlViewName: 'INTWKPROFILETEXT'
@VDM.viewType: #BASIC
//@Analytics: { dataExtraction.enabled: true}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'NetworkProfile'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MASTER
@EndUserText.label: 'Network Profile - Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.supportedCapabilities: [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET ]
//@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
//NOTE : This view is NOT RELEVANT for cloud
define view I_Networkprofiletext
as select from tcn4t
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [1..1] to I_BOOApplication as _BOOApplication on $projection.BillOfOperationsApplication = _BOOApplication.BillOfOperationsApplication
{
@Semantics.language : true
key tcn4t.spras as Language,
key profidnetz as NetworkProfile,
@ObjectModel.foreignKey.association: '_BOOApplication'
key plnaw as BillOfOperationsApplication,
// @Semantics.text: true
// tcn4t.profi_txt as NetworkProfileText, // do not use.to be removed.
@Semantics.text: true
tcn4t.profi_txt as NetworkProfileName,
_Language,
_BOOApplication
}
where
tcn4t.plnaw = 'N';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TCN4T"
],
"ASSOCIATED":
[
"I_BOOAPPLICATION",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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