C_ContractAccountCatValueHelp

DDL: C_CONTRACTACCOUNTCATVALUEHELP SQL: CCTRACCCATVH Type: view CONSUMPTION

Vertragskontotyp Wertehilfe

C_ContractAccountCatValueHelp is a Consumption CDS View that provides data about "Vertragskontotyp Wertehilfe" in SAP S/4HANA. It reads from 2 data sources (I_CAApplicationArea, I_ContractAccountCategory) and exposes 2 fields with key field ContractAccountCategory.

Data Sources (2)

SourceAliasJoin Type
I_CAApplicationArea _CAApplArea inner
I_ContractAccountCategory _Category from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CCTRACCCATVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Vertragskontotyp Wertehilfe view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey ContractAccountCategory view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view
Search.searchable true view
Consumption.ranked true view
VDM.viewType #CONSUMPTION view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ContractAccountCategory I_ContractAccountCategory ContractAccountCategory Kategorie
ContractAccountCategoryName Bezeichnung
@AbapCatalog.sqlViewName: 'CCTRACCCATVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Vertragskontotyp Wertehilfe'
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.representativeKey: 'ContractAccountCategory'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #C
@Search.searchable: true
@Consumption.ranked: true
@VDM.viewType: #CONSUMPTION
define view C_ContractAccountCatValueHelp
  as select from I_ContractAccountCategory as _Category
    inner join   I_CAApplicationArea       as _CAApplArea on  _Category.CAApplicationArea           = _CAApplArea.CAApplicationArea
                                                          and _CAApplArea.CAApplicationAreaIsActive = 'X'
{
      @EndUserText.label: 'Kategorie'
      @Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #HIGH }
      @ObjectModel.text.element: 'ContractAccountCategoryName'
  key _Category.ContractAccountCategory,
      @EndUserText.label: 'Bezeichnung'
      @Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #LOW }
      @Semantics.text: true
      _Category._Text[1:Language = $session.system_language].ContractAccountCategoryName

}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CAAPPLICATIONAREA",
"I_CONTRACTACCOUNTCATEGORY",
"I_CONTRACTACCOUNTCATEGORYTEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/