A_BankAccount
API for Bank Account
A_BankAccount is a Basic CDS View that provides data about "API for Bank Account" in SAP S/4HANA. It reads from 1 data source (I_BankAccount) and exposes 7 fields with key field BankAccountInternalID. Part of development package FINS_FIS_API.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_BankAccount | I_BankAccount | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | API for Bank Account | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | ABANKACCOUNT | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BankAccountInternalID | BankAccountInternalID | ||
| BankAccount | BankAccountNumber | |||
| BankAccountCurrency | BankAccountCurrency | |||
| BankCountry | BankCountry | |||
| Bank | Bank | |||
| CompanyCode | CompanyCode | |||
| BankAccountDescription |
@EndUserText.label: 'API for Bank Account'
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'ABANKACCOUNT'
@AccessControl.authorizationCheck:#CHECK
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #C
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
//A-view annotations
@AbapCatalog.compiler.compareFilter: true
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
define view A_BankAccount as select from I_BankAccount {
key BankAccountInternalID,
BankAccountNumber as BankAccount,
BankAccountCurrency,
BankCountry,
Bank,
CompanyCode,
_Text[1:Language = $session.system_language].BankAccountDescription
}
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