I_BankIntraStaRule

DDL: I_BANKINTRASTARULE Type: view_entity BASIC Package: FCLM_BRM

Rule of importing intraday bank statement assigned to bank

I_BankIntraStaRule is a Basic CDS View that provides data about "Rule of importing intraday bank statement assigned to bank" in SAP S/4HANA. It reads from 1 data source (fclm_brm_ru_asgn) and exposes 5 fields with key fields BankCountry, BankInternalID. It has 1 association to related views. Part of development package FCLM_BRM.

Data Sources (1)

SourceAliasJoin Type
fclm_brm_ru_asgn fclm_brm_ru_asgn from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_IntraBkStaRule _rule $projection.IntraBkStaRuleExternalID = _rule.IntraBkStaRuleExternalID

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Rule of importing intraday bank statement assigned to bank view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #B view
VDM.viewType #BASIC view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY BankCountry banks
KEY BankInternalID bankl
IntraBkStaRuleScheduleType schedule_type
IntraBkStaRuleExternalID ext_rule_id
_rule _rule
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Rule of importing intraday bank statement assigned to bank'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #B
@VDM.viewType: #BASIC
@Search.searchable: true

define view entity I_BankIntraStaRule
  as select from fclm_brm_ru_asgn
  association [0..1] to I_IntraBkStaRule as _rule on $projection.IntraBkStaRuleExternalID = _rule.IntraBkStaRuleExternalID
{

  key banks         as BankCountry,
  key bankl         as BankInternalID,
      schedule_type as IntraBkStaRuleScheduleType,
      @Search.defaultSearchElement:true
      @Search.fuzzinessThreshold:0.8
      @Search.ranking:#HIGH
      ext_rule_id   as IntraBkStaRuleExternalID,
      _rule
}