E_Bank
Bank Extension
E_Bank is a Extension CDS View that provides data about "Bank Extension" in SAP S/4HANA. It reads from 1 data source (bnka) and exposes 2 fields with key fields BankCountry, BankInternalID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| bnka | Bank | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| EndUserText.label | Bank Extension | view | |
| VDM.viewType | #EXTENSION | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| AbapCatalog.extensibility.extensible | true | view | |
| AbapCatalog.extensibility.elementSuffix | BNK | view | |
| AbapCatalog.extensibility.allowNewDatasources | false | view | |
| AbapCatalog.extensibility.quota.maximumFields | 500 | view | |
| AbapCatalog.extensibility.quota.maximumBytes | 5000 | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BankCountry | banks | ||
| KEY | BankInternalID | bankl |
@AbapCatalog.viewEnhancementCategory: [#PROJECTION_LIST]
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'Bank Extension'
@VDM.viewType: #EXTENSION
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #C
@AbapCatalog.extensibility: {
extensible: true,
elementSuffix: 'BNK',
allowNewDatasources: false,
dataSources: ['Bank'],
quota: {
maximumFields: 500,
maximumBytes: 5000
}
}
define view entity E_Bank
as select from bnka as Bank
{
key banks as BankCountry,
key bankl as BankInternalID
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"BNKA"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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