I_BankAccountText
Bank Account Description
I_BankAccountText is a Basic CDS View that provides data about "Bank Account Description" in SAP S/4HANA. It reads from 1 data source (fclm_bam_amd_t) and exposes 4 fields with key fields BankAccountInternalID, Language. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| fclm_bam_amd_t | fclm_bam_amd_t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| AbapCatalog.sqlViewName | IFIBANKACCOUNTT | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Bank Account Description | view | |
| ObjectModel.representativeKey | BankAccountInternalID | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BankAccountInternalID | acc_id | ||
| KEY | Language | langu | ||
| BankAccountDescription | description | |||
| _Language | _Language |
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@AbapCatalog.sqlViewName: 'IFIBANKACCOUNTT'
@AbapCatalog.preserveKey: true
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@EndUserText.label: 'Bank Account Description'
@ObjectModel.representativeKey: 'BankAccountInternalID'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #A
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.supportedCapabilities: [#SQL_DATA_SOURCE,
#CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET,
#LANGUAGE_DEPENDENT_TEXT]
define view I_BankAccountText
as select from fclm_bam_amd_t
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key acc_id as BankAccountInternalID,
@Semantics.language
@ObjectModel.foreignKey.association: '_Language'
key langu as Language,
@Semantics.text
description as BankAccountDescription,
_Language
}
where
revision = '0000'
and deleted_flag <> 'X'
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