I_BankAccountTextRev
Bank Account description with Revisions
I_BankAccountTextRev is a Basic CDS View that provides data about "Bank Account description with Revisions" in SAP S/4HANA. It reads from 1 data source (fclm_bam_amd_t) and exposes 5 fields with key fields BankAccountInternalID, BankAccountRevision, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| fclm_bam_amd_t | fclm_bam_amd_t | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| AbapCatalog.sqlViewName | IFIBANKACCTTREV | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Bank Account description with Revisions | 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 (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BankAccountInternalID | acc_id | ||
| KEY | BankAccountRevision | revision | ||
| KEY | Language | langu | ||
| BankAccountDescription | description | |||
| _Language | _Language |
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY //#NOT_REQUIRED //Inserted by VDM CDS Suite Plugin
@AbapCatalog.sqlViewName: 'IFIBANKACCTTREV'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@EndUserText.label: 'Bank Account description with Revisions'
@ObjectModel.representativeKey: 'BankAccountInternalID'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #A
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_BankAccountTextRev 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,
@ObjectModel.foreignKey.association: null
key revision as BankAccountRevision,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language : true
key langu as Language,
@Semantics.text : true
description as BankAccountDescription,
// @ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT]
_Language
}
where deleted_flag <> 'X'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FCLM_BAM_AMD_T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"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