I_BankWithBankAccountCount
Count number for bank accounts
I_BankWithBankAccountCount is a Composite CDS View that provides data about "Count number for bank accounts" in SAP S/4HANA. It reads from 1 data source (I_BankAccountBasicData) and exposes 3 fields.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_BankAccountBasicData | I_BankAccountBasicData | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBKWTACCCNT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.viewType | #COMPOSITE | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Count number for bank accounts | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| BankCountry | BankCountry | |||
| BankInternalID | Bank | |||
| NumberOfBankAccounts | Account Count |
@AbapCatalog.sqlViewName: 'IBKWTACCCNT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck:#MANDATORY
@ObjectModel.usageType:{
serviceQuality: #D,
sizeCategory: #L,
dataClass: #MASTER
}
@VDM.viewType: #COMPOSITE
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Count number for bank accounts'
define view I_BankWithBankAccountCount as select from I_BankAccountBasicData
{
BankCountry,
Bank as BankInternalID,
@EndUserText.label: 'Account Count'
count( * ) as NumberOfBankAccounts
}
where
BankAccountStatus = '28' or //opened at bank
BankAccountStatus = '02' or //active
BankAccountStatus = '10' or //to be closed
BankAccountStatus= '09' //Marked for Closing
group by
BankCountry,
Bank
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