I_OutputChannelText

DDL: I_OUTPUTCHANNELTEXT SQL: IOUTCHANNELTXT Type: view BASIC Package: APOC_OUTPUT_CONTROL_IMPL

Output Channel - Text

I_OutputChannelText is a Basic CDS View that provides data about "Output Channel - Text" in SAP S/4HANA. It reads from 1 data source (sform_s_channelt) and exposes 5 fields with key fields OutputChannel, Language. It has 2 associations to related views. Part of development package APOC_OUTPUT_CONTROL_IMPL.

Data Sources (1)

SourceAliasJoin Type
sform_s_channelt sform_s_channelt from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_OutputChannel _OutputChannel $projection.OutputChannel = _OutputChannel.OutputChannel
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IOUTCHANNELTXT view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
Search.searchable true view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #META view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey OutputChannel view
EndUserText.label Output Channel - Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY OutputChannel channel
KEY Language langu
OutputChannelDescription description
_OutputChannel _OutputChannel
_Language _Language
@AbapCatalog.sqlViewName: 'IOUTCHANNELTXT'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #BASIC
@Search.searchable: true
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
   usageType.serviceQuality: #A,
   usageType.sizeCategory: #M,
   usageType.dataClass: #META,
   dataCategory: #TEXT,
   representativeKey: 'OutputChannel'
}
@EndUserText.label: 'Output Channel - Text'

define view I_OutputChannelText
  as select from sform_s_channelt
  association [0..1] to I_OutputChannel as _OutputChannel on $projection.OutputChannel = _OutputChannel.OutputChannel
  association [0..1] to I_Language      as _Language      on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_OutputChannel'
  key channel       as OutputChannel,

      @Semantics.language
      @ObjectModel.foreignKey.association: '_Language'
  key langu         as Language,

      @Semantics.text
      @Search: {
      defaultSearchElement: true,
      fuzzinessThreshold: 1,
      ranking: #LOW
      }
      description   as OutputChannelDescription,

      //Associations

      _OutputChannel,
      _Language
}