I_BankStmntStsText
Interface view for Bank Statement status description
I_BankStmntStsText is a Basic CDS View that provides data about "Interface view for Bank Statement status description" in SAP S/4HANA. It reads from 1 data source (dd07v) and exposes 3 fields with key fields BankStatementStatus, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07v | dd07v | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBSTMTSTATTXT | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | BankStatementStatus | view | |
| EndUserText.label | Interface view for Bank Statement status description | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Search.searchable | false | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BankStatementStatus | domvalue_l | ||
| KEY | Language | dd07v | ddlanguage | |
| BankStatementStatusName |
@AbapCatalog.sqlViewName: 'IBSTMTSTATTXT'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'BankStatementStatus'
@EndUserText.label: 'Interface view for Bank Statement status description'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@Search.searchable: false
define view I_BankStmntStsText
as select from dd07v
{
@Search.defaultSearchElement: false
key domvalue_l as BankStatementStatus,
@Semantics.language: true
key dd07v.ddlanguage as Language,
@Semantics.text: true
@Search.defaultSearchElement: false
@UI.hidden: true
cast ( ddtext as farp_bs_stat_desc ) as BankStatementStatusName
}
where
domname = 'FARP_ASTAT_EB_SL'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07V"
],
"ASSOCIATED":
[],
"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