I_BankAcctApplAccountVH

DDL: I_BANKACCTAPPLACCOUNTVH Type: view_entity BASIC Package: FCLM_BAOR

Application Created Bank Accounts

I_BankAcctApplAccountVH is a Basic CDS View that provides data about "Application Created Bank Accounts" in SAP S/4HANA. It reads from 1 data source (fclm_bam_amd) and exposes 4 fields with key fields BankAccountInternalID, BankAccountRevision. Part of development package FCLM_BAOR.

Data Sources (1)

SourceAliasJoin Type
fclm_bam_amd account from

Annotations (9)

NameValueLevelField
VDM.viewType #BASIC view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
Consumption.ranked true view
Search.searchable true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Application Created Bank Accounts view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BankAccountInternalID fclm_bam_amd acc_id
KEY BankAccountRevision fclm_bam_amd revision
BankAccountNumber fclm_bam_amd acc_num
BankAccountDescription desc description
@VDM.viewType: #BASIC
@ObjectModel: {
  dataCategory: #VALUE_HELP,
  usageType: { dataClass: #MASTER,
               serviceQuality: #A,
               sizeCategory: #M
  }
}
@Consumption.ranked: true
@Search.searchable: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Application Created Bank Accounts'
define view entity I_BankAcctApplAccountVH
  as select from            fclm_bam_amd   as account
    left outer to many join fclm_bam_amd_t as desc on  account.acc_id    =  desc.acc_id
                                                   and account.revision  =  desc.revision
                                                   and desc.langu        = $session.system_language
                                                   and desc.deleted_flag <> 'X'
{
        @Search: {defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #LOW}
        @UI.lineItem: [
        { position: 3, importance: #HIGH }
        ]
  key   account.acc_id   as BankAccountInternalID,
        @UI.hidden: true
  key   account.revision as BankAccountRevision,
        @UI.lineItem: [
        { position: 1, importance: #HIGH }
        ]
        @Search: {defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #HIGH}
        account.acc_num  as BankAccountNumber,
        @UI.lineItem: [
        { position: 2, importance: #HIGH }
        ]
        @Search: {defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #LOW}
        desc.description as BankAccountDescription
}
where
      account.revision        =  '0000'
  and account.open_request_id is not initial