I_OutputChannel
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)
| Source | Alias | Join Type |
|---|---|---|
| sform_s_channel | sform_s_channel | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_OutputChannelText | _Text | $projection.OutputChannel = _Text.OutputChannel |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
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