I_MaintNotifRejectionReasonTxt

DDL: I_MAINTNOTIFREJECTIONREASONTXT Type: view_entity BASIC Package: VDM_EAM_NTF

Maintenance Notif Rejection Reason Text

I_MaintNotifRejectionReasonTxt is a Basic CDS View that provides data about "Maintenance Notif Rejection Reason Text" in SAP S/4HANA. It reads from 1 data source (eam_reasoncode_t) and exposes 5 fields with key fields MaintNotifRejectionReasonCode, Language. It has 2 associations to related views. Part of development package VDM_EAM_NTF.

Data Sources (1)

SourceAliasJoin Type
eam_reasoncode_t eam_reasoncode_t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_MaintNotifRejectionReason _MaintNotifRejection $projection.MaintNotifRejectionReasonCode = _MaintNotifRejection.MaintNotifRejectionReasonCode
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (10)

NameValueLevelField
EndUserText.label Maintenance Notif Rejection Reason Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey MaintNotifRejectionReasonCode view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
Analytics.technicalName IMAINTNOTREJTEXT view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY MaintNotifRejectionReasonCode eam_reasoncode_t notifrejectionreasoncode
KEY Language eam_reasoncode_t language
MaintNotifRejectionRsnCodeTxt Maint Notification Rejection Reason
_MaintNotifRejection _MaintNotifRejection
_Language _Language
@EndUserText.label: 'Maintenance Notif Rejection Reason Text'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
  dataCategory: #TEXT,
  representativeKey: 'MaintNotifRejectionReasonCode',
  semanticKey:  [ 'MaintNotifRejectionReasonCode' ],
   usageType: {
    dataClass: #CUSTOMIZING,
    sizeCategory: #S,
    serviceQuality: #A
  }
}
@Analytics.technicalName: 'IMAINTNOTREJTEXT'
@Metadata.ignorePropagatedAnnotations
@Search.searchable: true
define view entity I_MaintNotifRejectionReasonTxt
  as select from eam_reasoncode_t
  association [0..1] to I_MaintNotifRejectionReason as _MaintNotifRejection on $projection.MaintNotifRejectionReasonCode = _MaintNotifRejection.MaintNotifRejectionReasonCode
  association [0..1] to I_Language                  as _Language            on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_MaintNotifRejection'
      @ObjectModel.text.element: ['MaintNotifRejectionRsnCodeTxt']
  key eam_reasoncode_t.notifrejectionreasoncode                                                       as MaintNotifRejectionReasonCode,

      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key eam_reasoncode_t.language                                                                       as Language,

      @Semantics.text: true
      @EndUserText.label: 'Maint Notification Rejection Reason'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      cast( eam_reasoncode_t.notifrejectionreasoncodetext as eam_rejreasoncode_text preserving type ) as MaintNotifRejectionRsnCodeTxt,
      // Propagate association

      _MaintNotifRejection,
      _Language


}