C_BankFeeCompnMethVH

DDL: C_BANKFEECOMPNMETHVH Type: view CONSUMPTION

Bank Fee : Value Help for Cmpst Mtd

C_BankFeeCompnMethVH is a Consumption CDS View that provides data about "Bank Fee : Value Help for Cmpst Mtd" in SAP S/4HANA. It reads from 1 data source (I_DomainFixedValueText) and exposes 2 fields with key field CompensationMethod.

Data Sources (1)

SourceAliasJoin Type
I_DomainFixedValueText CompensationMethod from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CBFCOMPNMETHVH view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
EndUserText.label Bank Fee : Value Help for Cmpst Mtd view
Search.searchable true view
Consumption.ranked true view
ObjectModel.dataCategory #VALUE_HELP view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CompensationMethod DomainValue
BankFeeCompnMethTxt DomainText
@AbapCatalog: {
  sqlViewName: 'CBFCOMPNMETHVH',
  compiler.compareFilter: true
}

@ClientHandling: {
  algorithm: #SESSION_VARIABLE
}

@ObjectModel: {
  usageType: {
    serviceQuality: #B,
    sizeCategory:   #S,
    dataClass:      #CUSTOMIZING
  }
}

@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #CONSUMPTION
@EndUserText.label: 'Bank Fee : Value Help for Cmpst Mtd'
@Search.searchable: true
@Consumption.ranked: true
@ObjectModel.dataCategory: #VALUE_HELP
define view C_BankFeeCompnMethVH
  as select from I_DomainFixedValueText as CompensationMethod
{

      @UI.lineItem: [
      { position: 1, importance: #HIGH}
      ]
    
      @ObjectModel: {
        text.element:  [ 'BankFeeCompnMethTxt' ]
      }
      @Search: {
        defaultSearchElement: true,
        ranking: #HIGH,
        fuzzinessThreshold: 0.8
      }
      @EndUserText: {
     label:     'Compensation Method',
     quickInfo: 'Compensation Method'
  }
  key DomainValue                                 as CompensationMethod,

      @Semantics.text: true
      @UI.lineItem: [
      { position: 2, importance: #HIGH}
      ]     
      @Search: {
        defaultSearchElement: true,
        ranking: #LOW,
        fuzzinessThreshold: 0.8
      }      
      @EndUserText: {
        label:     'Comp. Meth. Name',
        quickInfo: 'Compensation Method Name'
      }
      DomainText  as BankFeeCompnMethTxt
}
where
  SAPDataDictionaryDomain = 'FCLM_BRM_COMPSTN_MTD'
  and CompensationMethod.Language          = $session.system_language;
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_DOMAINFIXEDVALUETEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/