I_BankAccountMessageDirection

DDL: I_BANKACCOUNTMESSAGEDIRECTION Type: view_entity BASIC Package: FCLM_BKCORR

Direction of Bank Account Message

I_BankAccountMessageDirection is a Basic CDS View that provides data about "Direction of Bank Account Message" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field BankAccountMessageDirection. It has 1 association to related views. Part of development package FCLM_BKCORR.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BkAcctMessageDirectionText _Text

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Direction of Bank Account Message view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BankAccountMessageDirection
_Text _Text
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Direction of Bank Account Message'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #B,
  sizeCategory: #S,
  dataClass: #MIXED
}

@VDM.viewType: #BASIC
define root view entity I_BankAccountMessageDirection
as select from dd07l
  composition [0..*] of I_BkAcctMessageDirectionText as _Text
{
      @ObjectModel.text.association: '_Text'
  key cast(domvalue_l as abap.char( 3 ) ) as BankAccountMessageDirection,
      _Text
}
where
      domname  = 'FCLM_BKCORR_MSG_DIRECTION'
  and as4local = 'A'
  and as4vers  = '0000'