I_CshBkCatWithSEPAValueHelp

DDL: I_CSHBKCATWITHSEPAVALUEHELP Type: view_entity COMPOSITE

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)

SourceAliasJoin Type
dd07l l from

Annotations (12)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/