I_NotifCauseCodeText
Notification Cause Code - Text
I_NotifCauseCodeText is a Basic CDS View that provides data about "Notification Cause Code - Text" in SAP S/4HANA. It reads from 1 data source (qpct) and exposes 9 fields with key fields NotificationCauseCodeCatalog, NotificationCauseCodeGroup, NotificationCauseCode, Language. It has 3 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| qpct | qpct | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_NotifCauseCodeCatalog | _NotifCauseCodeCatalog | $projection.NotificationCauseCodeCatalog = _NotifCauseCodeCatalog.NotificationCauseCodeCatalog |
| [1..1] | I_NotifCauseCodeGroup | _NotifCauseCodeGroup | $projection.NotificationCauseCodeCatalog = _NotifCauseCodeGroup.NotificationCauseCodeCatalog and $projection.NotificationCauseCodeGroup = _NotifCauseCodeGroup.NotificationCauseCodeGroup |
| [1..1] | I_NotifCauseCode | _NotifCauseCode | $projection.NotificationCauseCodeCatalog = _NotifCauseCode.NotificationCauseCodeCatalog and $projection.NotificationCauseCodeGroup = _NotifCauseCode.NotificationCauseCodeGroup and $projection.NotificationCauseCode = _NotifCauseCode.NotificationCauseCode association[1..1] to I_Language as _Language on $projection.Language = _Language.Language |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | INOTIFCAUCDTXT | 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.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | NotificationCauseCode | view | |
| EndUserText.label | Notification Cause Code - Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | NotificationCauseCodeCatalog | katalogart | ||
| KEY | NotificationCauseCodeGroup | codegruppe | ||
| KEY | NotificationCauseCode | code | ||
| KEY | Language | sprache | ||
| NotificationCauseCodeText | kurztext | |||
| _NotifCauseCodeCatalog | _NotifCauseCodeCatalog | |||
| _NotifCauseCodeGroup | _NotifCauseCodeGroup | |||
| _NotifCauseCode | _NotifCauseCode | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'INOTIFCAUCDTXT'
@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
},
dataCategory: #TEXT,
representativeKey: 'NotificationCauseCode'
}
@EndUserText.label: 'Notification Cause Code - Text'
@Metadata.ignorePropagatedAnnotations: true
define view I_NotifCauseCodeText as select from qpct
association [1..1] to I_NotifCauseCodeCatalog as _NotifCauseCodeCatalog on $projection.NotificationCauseCodeCatalog = _NotifCauseCodeCatalog.NotificationCauseCodeCatalog
association [1..1] to I_NotifCauseCodeGroup as _NotifCauseCodeGroup on $projection.NotificationCauseCodeCatalog = _NotifCauseCodeGroup.NotificationCauseCodeCatalog and
$projection.NotificationCauseCodeGroup = _NotifCauseCodeGroup.NotificationCauseCodeGroup
association [1..1] to I_NotifCauseCode as _NotifCauseCode on $projection.NotificationCauseCodeCatalog = _NotifCauseCode.NotificationCauseCodeCatalog and
$projection.NotificationCauseCodeGroup = _NotifCauseCode.NotificationCauseCodeGroup and
$projection.NotificationCauseCode = _NotifCauseCode.NotificationCauseCode
association[1..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_NotifCauseCodeCatalog'
key katalogart as NotificationCauseCodeCatalog,
@ObjectModel.foreignKey.association: '_NotifCauseCodeGroup'
key codegruppe as NotificationCauseCodeGroup,
@ObjectModel:{
foreignKey.association: '_NotifCauseCode'
}
key code as NotificationCauseCode,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key sprache as Language,
@Semantics.text: true
kurztext as NotificationCauseCodeText,
_NotifCauseCodeCatalog,
_NotifCauseCodeGroup,
_NotifCauseCode,
_Language
} where qpct.version = '000001'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"QPCT"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_NOTIFCAUSECODE",
"I_NOTIFCAUSECODECATALOG",
"I_NOTIFCAUSECODEGROUP"
],
"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