I_NotificationType
Notification Type
I_NotificationType is a Basic CDS View that provides data about "Notification Type" in SAP S/4HANA. It reads from 1 data source (tq80) and exposes 13 fields with key field NotificationType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tq80 | tq80 | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | INOTIFTYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| EndUserText.label | Notification Type | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.representativeKey | NotificationType | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (13)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | NotificationType | qmart | ||
| NumberRange | qmnuk | |||
| NotificationOrigin | herkz | |||
| NotifPartnerFuncCustomer | ||||
| NotifPartnerFuncContactPerson | ||||
| NotifPrtnFuncImplementingDept | ||||
| NotifPartnerFuncSupplier | ||||
| NotifPartnerFuncManufacturer | ||||
| NotifPartnerRoleResponsible | ||||
| NotifPartnerFuncAuthor | ||||
| NotifPartnerFuncTask | ||||
| NotifPartnerFuncApprover | ||||
| _NotificationTypeName | _NotificationTypeName |
@AbapCatalog.sqlViewName: 'INOTIFTYPE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@EndUserText.label: 'Notification Type'
@ObjectModel:{
usageType:{
dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #S
},
representativeKey: 'NotificationType'
}
@Metadata.ignorePropagatedAnnotations: true
define view I_NotificationType as select from tq80
association[0..*] to I_NotificationTypeName as _NotificationTypeName on $projection.NotificationType = _NotificationTypeName.NotificationType
{
@ObjectModel.text.association: '_NotificationTypeName'
key qmart as NotificationType,
qmnuk as NumberRange,
herkz as NotificationOrigin,
cast( parvw_kund as vdm_q_parvw_kund preserving type ) as NotifPartnerFuncCustomer,
cast( parvw_ap as vdm_q_parvw_ap preserving type ) as NotifPartnerFuncContactPerson,
cast( parvw_int as vdm_q_parvw_int preserving type ) as NotifPrtnFuncImplementingDept,
cast( parvw_lief as vdm_q_parvw_lief preserving type ) as NotifPartnerFuncSupplier,
cast( parvw_her as vdm_q_parvw_her preserving type ) as NotifPartnerFuncManufacturer,
cast( parvw_vera as vdm_q_parvw_vera preserving type ) as NotifPartnerRoleResponsible,
cast( parvw_auto as vdm_q_parvw_auto preserving type ) as NotifPartnerFuncAuthor,
cast( parvw_qmsm as vdm_q_parvw_qmsm preserving type ) as NotifPartnerFuncTask,
// cast( parvw_page as vdm_q_parvw_page preserving type ) as NotifPartnerFuncPaging,
cast( parvw_geh as vdm_q_parvw_geh preserving type ) as NotifPartnerFuncApprover,
_NotificationTypeName
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TQ80"
],
"ASSOCIATED":
[
"I_NOTIFICATIONTYPENAME"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"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