I_MaintNotifRejectionReasonTxt

DDL: I_MAINTNOTIFREJECTIONREASONTXT SQL: IMAINTNOTREJTEXT Type: view BASIC

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.

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 (13)

NameValueLevelField
AbapCatalog.sqlViewName IMAINTNOTREJTEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Maintenance Notif Rejection Reason Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey MaintNotifRejectionReasonCode view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A 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
@AbapCatalog.sqlViewName: 'IMAINTNOTREJTEXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@EndUserText.label: 'Maintenance Notif Rejection Reason Text'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
  dataCategory: #TEXT,
  representativeKey: 'MaintNotifRejectionReasonCode',
  semanticKey:  [ 'MaintNotifRejectionReasonCode' ],
   usageType: {
    dataClass: #CUSTOMIZING,
    sizeCategory: #S,
    serviceQuality: #A
  }
}
@Metadata.ignorePropagatedAnnotations
@Search.searchable: true
define view 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


}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"EAM_REASONCODE_T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_MAINTNOTIFREJECTIONREASON"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/