I_FinanceNotificationTypeText

DDL: I_FINANCENOTIFICATIONTYPETEXT Type: view_entity BASIC Package: FBTI_FIN_NOTIFICATION_BO_TYPE

Finance Notification Type - Text

I_FinanceNotificationTypeText is a Basic CDS View that provides data about "Finance Notification Type - Text" in SAP S/4HANA. It reads from 1 data source (ffne_botypet) and exposes 5 fields with key fields Language, FinanceNotificationType. It has 2 associations to related views. Part of development package FBTI_FIN_NOTIFICATION_BO_TYPE.

Data Sources (1)

SourceAliasJoin Type
ffne_botypet ffne_botypet from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_FinanceNotificationType _FinanceNotificationType $projection.FinanceNotificationType = _FinanceNotificationType.FinanceNotificationType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Finance Notification Type - Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey FinanceNotificationType view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
Analytics.technicalName IFINANCENOTIFTYPET view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language langu
KEY FinanceNotificationType bo_type
FinanceNotificationTypeText bo_type_name
_Language _Language
_FinanceNotificationType _FinanceNotificationType
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Finance Notification Type - Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory:#TEXT
@ObjectModel.representativeKey: 'FinanceNotificationType'
@VDM.viewType:#BASIC
@ObjectModel.usageType:{
  serviceQuality: #A,
  sizeCategory: #S,
  dataClass: #CUSTOMIZING
}
@Search.searchable: true
@Analytics.technicalName: 'IFINANCENOTIFTYPET'
define view entity I_FinanceNotificationTypeText
  as select from ffne_botypet
  association [1..1] to I_FinanceNotificationType as _FinanceNotificationType on $projection.FinanceNotificationType = _FinanceNotificationType.FinanceNotificationType
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key langu        as Language,
    @ObjectModel.foreignKey.association: '_FinanceNotificationType'
    @ObjectModel.text.element:['FinanceNotificationTypeText'] 
      @Search:{ defaultSearchElement: true,
                ranking:#HIGH,
                fuzzinessThreshold:0.8 } 
  key bo_type      as FinanceNotificationType,
      @Semantics.text: true
      bo_type_name as FinanceNotificationTypeText,
      _Language,
      @ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT] 
      _FinanceNotificationType
}