I_BankAcctApplAccountVH
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)
| Source | Alias | Join Type |
|---|---|---|
| fclm_bam_amd | account | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
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