I_CshBkCatWithSEPAValueHelp
Cash Bank Category with SEPA
I_CshBkCatWithSEPAValueHelp is a Composite CDS View that provides data about "Cash Bank Category with SEPA" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field BankCategory.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | l | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Cash Bank Category with SEPA | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.representativeKey | BankCategory | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view | |
| VDM.viewType | #COMPOSITE | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BankCategory | Bank Category | ||
| DomainValue | dd07l | domvalue_l | ||
| BankCategoryDescription |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Cash Bank Category with SEPA'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: { usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #MASTER },
dataCategory: #VALUE_HELP,
representativeKey: 'BankCategory',
resultSet: { sizeCategory: #XS } }
@Search.searchable: true
@Consumption.ranked:true
@VDM: { viewType: #COMPOSITE }
define view entity I_CshBkCatWithSEPAValueHelp as select from dd07l as l
left outer to one join dd07t as t on t.domvalue_l = l.domvalue_l
and t.domname = l.domname
and t.ddlanguage = $session.system_language
{
@UI.textArrangement: #TEXT_LAST
@ObjectModel.text.element: ['BankCategoryDescription']
@EndUserText.label: 'Bank Category'
key cast( l.domvalue_l as bf_bank_category ) as BankCategory,
@Analytics.hidden:true
@Consumption.hidden: true
@Search.ranking:#HIGH
@Search.defaultSearchElement: true
l.domvalue_l as DomainValue,
@Semantics.text: true
cast ( t.ddtext as bf_bank_category_desc preserving type ) as BankCategoryDescription
}
where
l.domname = 'FCLM_BANK_CATEGORY'
and l.as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L",
"DD07T"
],
"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