I_BkAcctMessageDirectionText
Bank Account Message Direction - Text
I_BkAcctMessageDirectionText is a Basic CDS View that provides data about "Bank Account Message Direction - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, BankAccountMessageDirection. It has 1 association to related views. Part of development package FCLM_BKCORR.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Bank Account Message Direction - Text | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | BankAccountMessageDirection | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| KEY | BankAccountMessageDirection | |||
| BkAccountMessageDirectionText | ||||
| _Language | _Language | |||
| _MessageDirection | _MessageDirection |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Bank Account Message Direction - Text'
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #MASTER
}
@ObjectModel: { dataCategory: #TEXT,
representativeKey: 'BankAccountMessageDirection' }
@VDM.viewType: #BASIC
@Search.searchable: true
define view entity I_BkAcctMessageDirectionText
as select from dd07t
association to parent I_BankAccountMessageDirection as _MessageDirection on $projection.BankAccountMessageDirection = _MessageDirection.BankAccountMessageDirection
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language: true
key cast( dd07t.ddlanguage as spras preserving type ) as Language,
@ObjectModel.text.element: ['BkAccountMessageDirectionText']
key cast(domvalue_l as abap.char( 3 ) ) as BankAccountMessageDirection,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
@Semantics.text: true
cast( dd07t.ddtext as text60 preserving type ) as BkAccountMessageDirectionText,
_Language,
_MessageDirection
}
where
domname = 'FCLM_BKCORR_MSG_DIRECTION'
and as4local = 'A'
and as4vers = '0000'
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