I_MaintNotifRejectionReasonTxt
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)
| Source | Alias | Join Type |
|---|---|---|
| eam_reasoncode_t | eam_reasoncode_t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_MaintNotifRejectionReason | _MaintNotifRejection | $projection.MaintNotifRejectionReasonCode = _MaintNotifRejection.MaintNotifRejectionReasonCode |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA