I_GhoNetObjText

DDL: I_GHONETOBJTEXT SQL: IGHONETOBJTEXT Type: view BASIC

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)

SourceAliasJoin Type
iflotx iflotx from

Annotations (12)

NameValueLevelField
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

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY NetworkObject iflotx tplnr
KEY Language iflotx spras
NetworkObjectDescription iflotx pltxt
// 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
}
}*/