I_BankIntraStaRule

DDL: I_BANKINTRASTARULE SQL: IIBANKINTRASTARU Type: view BASIC

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.

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 (10)

NameValueLevelField
AbapCatalog.sqlViewName IIBANKINTRASTARU view
AbapCatalog.compiler.compareFilter true view
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
ClientHandling.algorithm #SESSION_VARIABLE 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
@AbapCatalog.sqlViewName: 'IIBANKINTRASTARU'
@AbapCatalog.compiler.compareFilter: true
@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
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@Search.searchable: true

define view 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
}