I_BankAccountTypeText
Bank Account Type
I_BankAccountTypeText is a Basic CDS View (Dimension) that provides data about "Bank Account Type" in SAP S/4HANA. It reads from 1 data source (fclm_bam_ac_typt) and exposes 4 fields with key fields BankAccountType, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| fclm_bam_ac_typt | fclm_bam_ac_typt | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | IFIBANKACCOUNTTT | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | BankAccountType | view | |
| EndUserText.label | Bank Account Type | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.allowExtensions | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BankAccountType | acc_type_id | ||
| KEY | Language | langu | ||
| BankAccountTypeText | acc_type_desc | Bank Account Type Description | ||
| _Language | _Language |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'IFIBANKACCOUNTTT'
@Analytics.dataCategory: #DIMENSION
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'BankAccountType'
@EndUserText.label: 'Bank Account Type'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.allowExtensions:true
define view I_BankAccountTypeText as select from fclm_bam_ac_typt
association[0..1] to I_Language as _Language on $projection.Language = _Language.Language {
key acc_type_id as BankAccountType,
@Semantics.language
key langu as Language,
@Semantics.text
@EndUserText.label: 'Bank Account Type Description'
acc_type_desc as BankAccountTypeText,
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FCLM_BAM_AC_TYPT"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"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