C_MaintNotifLongTextTP
Maintenance Notification Long Text
C_MaintNotifLongTextTP is a Consumption CDS View that provides data about "Maintenance Notification Long Text" in SAP S/4HANA. It reads from 1 data source (I_MaintNotifLongTextTP) and exposes 11 fields with key field MaintenanceNotification. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_MaintNotifLongTextTP | I_MaintNotifLongTextTP | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1] | I_TextObjectPlainLongText | _PlainLongText | _PlainLongText.Language = $projection.Language and _PlainLongText.TextObjectCategory = $projection.TextObjectCategory and _PlainLongText.TextObjectKey = $projection.TextObjectKey and _PlainLongText.TextObjectType = $projection.TextObjectType |
| [1..1] | C_MaintNotificationTP | _MaintNotificationTP | _MaintNotificationTP.MaintenanceNotification = $projection.MaintenanceNotification |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Maintenance Notification Long Text | view | |
| AbapCatalog.sqlViewName | CMAINTNOTIFLTTP | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.transactionalProcessingDelegated | true | view | |
| ObjectModel.createEnabled | true | view | |
| ObjectModel.updateEnabled | true | view | |
| ObjectModel.deleteEnabled | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view |
Fields (11)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MaintenanceNotification | I_MaintNotifLongTextTP | MaintenanceNotification | |
| TextObjectKey | I_MaintNotifLongTextTP | TextObjectKey | ||
| Language | I_MaintNotifLongTextTP | Language | ||
| TextObjectCategory | I_MaintNotifLongTextTP | TextObjectCategory | ||
| TextObjectType | I_MaintNotifLongTextTP | TextObjectType | ||
| PlainLongText | _PlainLongText | PlainLongText | ||
| MaintNotificationLongText | I_MaintNotifLongTextTP | MaintNotificationLongText | ||
| MaintNotifLongTextForEdit | I_MaintNotifLongTextTP | MaintNotifLongTextForEdit | ||
| LongTextIsNotChangeable | I_MaintNotifLongTextTP | LongTextIsNotChangeable | ||
| _MaintNotificationTP | _MaintNotificationTP | |||
| _LongTextIsNotChangeable | _LongTextIsNotChangeable |
@EndUserText.label: 'Maintenance Notification Long Text'
@AbapCatalog.sqlViewName: 'CMAINTNOTIFLTTP'
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #CONSUMPTION
@ObjectModel.transactionalProcessingDelegated:true
@ObjectModel.createEnabled: true
@ObjectModel.updateEnabled: true
@ObjectModel.deleteEnabled: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@AccessControl.personalData.blocking: #('TRANSACTIONAL_DATA')
define view C_MaintNotifLongTextTP
as select from I_MaintNotifLongTextTP
association [1] to I_TextObjectPlainLongText as _PlainLongText on _PlainLongText.Language = $projection.Language
and _PlainLongText.TextObjectCategory = $projection.TextObjectCategory
and _PlainLongText.TextObjectKey = $projection.TextObjectKey
and _PlainLongText.TextObjectType = $projection.TextObjectType
association [1..1] to C_MaintNotificationTP as _MaintNotificationTP on _MaintNotificationTP.MaintenanceNotification = $projection.MaintenanceNotification
{
key I_MaintNotifLongTextTP.MaintenanceNotification,
I_MaintNotifLongTextTP.TextObjectKey,
I_MaintNotifLongTextTP.Language,
I_MaintNotifLongTextTP.TextObjectCategory,
I_MaintNotifLongTextTP.TextObjectType,
@ObjectModel.virtualElement
@ObjectModel.virtualElementCalculatedBy: 'ABAP:CL_EAM_MALFUNC_NOTIF_LTXT_EXIT'
@ObjectModel.readOnly: true
@UI.multiLineText: true
_PlainLongText.PlainLongText,
I_MaintNotifLongTextTP.MaintNotificationLongText,
I_MaintNotifLongTextTP.MaintNotifLongTextForEdit,
I_MaintNotifLongTextTP.LongTextIsNotChangeable,
/* Associations */
@ObjectModel.association.type: [ #TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT ]
_MaintNotificationTP,
_LongTextIsNotChangeable
}
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