I_GhoNetObjText
Network Object Descriptions
I_GhoNetObjText is a Basic CDS View that provides data about "Network Object Descriptions" in SAP S/4HANA. It reads from 1 data source (iflotx) and exposes 3 fields with key fields NetworkObject, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| iflotx | iflotx | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IGHONETOBJTEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | NetworkObject | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| EndUserText.label | Network Object Descriptions | view |
// Basic View for Retrieval of Description of Network Object
@AbapCatalog.sqlViewName: 'IGHONETOBJTEXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.dataCategory: #TEXT
@Analytics.dataExtraction.enabled: true
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'NetworkObject'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory : #M
@ObjectModel.usageType.dataClass: #MASTER
@EndUserText.label: 'Network Object Descriptions'
define view I_GhoNetObjText
as select from iflotx
{
// Network Object Name
key iflotx.tplnr as NetworkObject,
//Language
@Semantics.language: true
key iflotx.spras as Language,
// Network Object Description
@Semantics.text: true
iflotx.pltxt as NetworkObjectDescription
}
where
iflotx.spras = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"IFLOTX"
],
"ASSOCIATED":
[],
"BASE":
[],
"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