I_NotifCauseCodeGroup
Notification Cause Code Group
I_NotifCauseCodeGroup is a Basic CDS View that provides data about "Notification Cause Code Group" in SAP S/4HANA. It reads from 1 data source (qpgr) and exposes 5 fields with key fields NotificationCauseCodeCatalog, NotificationCauseCodeGroup. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| qpgr | qpgr | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_NotifCauseCodeCatalog | _NotifCauseCodeCatalog | $projection.NotificationCauseCodeCatalog = _NotifCauseCodeCatalog.NotificationCauseCodeCatalog |
| [0..*] | I_NotifCauseCodeGroupText | _NotifCauseCodeGroupText | $projection.NotificationCauseCodeCatalog = _NotifCauseCodeGroupText.NotificationCauseCodeCatalog and $projection.NotificationCauseCodeGroup = _NotifCauseCodeGroupText.NotificationCauseCodeGroup |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | INOTIFCAUCDGR | 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 | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.representativeKey | NotificationCauseCodeGroup | view | |
| EndUserText.label | Notification Cause Code Group | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | NotificationCauseCodeCatalog | katalogart | ||
| KEY | NotificationCauseCodeGroup | codegruppe | ||
| CodeGroupStatus | status | |||
| _NotifCauseCodeCatalog | _NotifCauseCodeCatalog | |||
| _NotifCauseCodeGroupText | _NotifCauseCodeGroupText |
@AbapCatalog.sqlViewName: 'INOTIFCAUCDGR'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@ObjectModel:{
usageType:{
dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #S
},
representativeKey: 'NotificationCauseCodeGroup'
}
@EndUserText.label: 'Notification Cause Code Group'
define view I_NotifCauseCodeGroup as select from qpgr
association [0..1] to I_NotifCauseCodeCatalog as _NotifCauseCodeCatalog on $projection.NotificationCauseCodeCatalog = _NotifCauseCodeCatalog.NotificationCauseCodeCatalog
association [0..*] to I_NotifCauseCodeGroupText as _NotifCauseCodeGroupText on $projection.NotificationCauseCodeCatalog = _NotifCauseCodeGroupText.NotificationCauseCodeCatalog and
$projection.NotificationCauseCodeGroup = _NotifCauseCodeGroupText.NotificationCauseCodeGroup
{
@ObjectModel.foreignKey.association: '_NotifCauseCodeCatalog'
key katalogart as NotificationCauseCodeCatalog,
@ObjectModel.text.association: '_NotifCauseCodeGroupText'
key codegruppe as NotificationCauseCodeGroup,
// DB field has three values, but field shall be indicator
@Semantics.booleanIndicator: true
case qpgr.inaktiv
when ' ' then cast( ' ' as vdm_qm_codegroupisinactive preserving type )
else cast( 'X' as vdm_qm_codegroupisinactive preserving type )
end as CodeGroupIsInactive,
status as CodeGroupStatus,
_NotifCauseCodeCatalog,
_NotifCauseCodeGroupText
}
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