I_OutputChannel

DDL: I_OUTPUTCHANNEL SQL: IOUTCHANNEL Type: view BASIC

Output Channel

I_OutputChannel is a Basic CDS View that provides data about "Output Channel" in SAP S/4HANA. It reads from 1 data source (sform_s_channel) and exposes 2 fields with key field OutputChannel. It has 1 association to related views. It is exposed through 3 OData services (C_SALESORDERMANAGE_SD, UI_SALESCONTRACTMANAGE, UI_SALESQUOTATIONMANAGE).

Data Sources (1)

SourceAliasJoin Type
sform_s_channel sform_s_channel from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_OutputChannelText _Text $projection.OutputChannel = _Text.OutputChannel

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IOUTCHANNEL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
ObjectModel.representativeKey OutputChannel view
Search.searchable true view
EndUserText.label Output Channel view

OData Services (3)

ServiceBindingVersionContractRelease
C_SALESORDERMANAGE_SD C_SALESORDERMANAGE_SRV V4 C1 NOT_RELEASED
UI_SALESCONTRACTMANAGE UI_SALESCONTRACTMANAGE V4 C1 NOT_RELEASED
UI_SALESQUOTATIONMANAGE UI_SALESQUOTATIONMANAGE V4 C1 NOT_RELEASED

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY OutputChannel channel
_Text _Text
@AbapCatalog.sqlViewName: 'IOUTCHANNEL'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@VDM.viewType: #BASIC
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
   usageType.serviceQuality: #A,
   usageType.sizeCategory: #S,
   usageType.dataClass: #META,
   representativeKey: 'OutputChannel'
}
@Search.searchable: true
@EndUserText.label: 'Output Channel'
define view I_OutputChannel
  as select from sform_s_channel
  association [0..*] to I_OutputChannelText as _Text on $projection.OutputChannel = _Text.OutputChannel
{
      @ObjectModel.text.association: '_Text'
      @Search: {
      defaultSearchElement: true,
      fuzzinessThreshold: 0.8,
      ranking: #HIGH }
  key channel as OutputChannel,
      _Text
}