I_MaintOrdConfMessageTP
Basic View for Maintenance Order Confirmation Messages
I_MaintOrdConfMessageTP is a Transactional CDS View that provides data about "Basic View for Maintenance Order Confirmation Messages" in SAP S/4HANA. It reads from 1 data source (I_MaintenanceOrderConfTP) and exposes 15 fields with key fields MaintOrderConf, MaintOrderConfCntrValue, MaintenanceOrder, MaintenanceOrderOperation, MaintenanceOrderSubOperation. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_MaintenanceOrderConfTP | I_MaintenanceOrderConfTP | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_MaintenanceOrderConfTP | _MaintenanceOrderConfTP | $projection.MaintOrderConf = _MaintenanceOrderConfTP.MaintOrderConf and $projection.MaintOrderConfCntrValue = _MaintenanceOrderConfTP.MaintOrderConfCntrValue |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IORDRCONFMSGS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.writeDraftPersistence | MAINTORDCONFMS_D | view | |
| ObjectModel.draftEnabled | true | view | |
| ObjectModel.createEnabled | true | view | |
| ObjectModel.updateEnabled | true | view | |
| ObjectModel.deleteEnabled | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Basic View for Maintenance Order Confirmation Messages | view |
Fields (15)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MaintOrderConf | I_MaintenanceOrderConfTP | MaintOrderConf | |
| KEY | MaintOrderConfCntrValue | I_MaintenanceOrderConfTP | MaintOrderConfCntrValue | |
| KEY | MaintenanceOrder | |||
| KEY | MaintenanceOrderOperation | |||
| KEY | MaintenanceOrderSubOperation | |||
| SystemMessageType | ||||
| SystemMessageIdentification | ||||
| SystemMessageNumber | ||||
| SystemMessageVariable1 | ||||
| SystemMessageVariable2 | ||||
| SystemMessageVariable3 | ||||
| SystemMessageVariable4 | ||||
| SystemMessageText | ||||
| EnteredByUser | ||||
| _MaintenanceOrderConfTP | _MaintenanceOrderConfTP |
@AbapCatalog.sqlViewName: 'IORDRCONFMSGS'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.viewType: #TRANSACTIONAL
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.writeDraftPersistence: 'MAINTORDCONFMS_D'
@ObjectModel.draftEnabled: true
@ObjectModel.createEnabled: true
@ObjectModel.updateEnabled: true
@ObjectModel.deleteEnabled: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Basic View for Maintenance Order Confirmation Messages'
define view I_MaintOrdConfMessageTP
as select from I_MaintenanceOrderConfTP
association [1..1] to I_MaintenanceOrderConfTP as _MaintenanceOrderConfTP on $projection.MaintOrderConf = _MaintenanceOrderConfTP.MaintOrderConf
and $projection.MaintOrderConfCntrValue = _MaintenanceOrderConfTP.MaintOrderConfCntrValue
{
key I_MaintenanceOrderConfTP.MaintOrderConf,
key I_MaintenanceOrderConfTP.MaintOrderConfCntrValue,
key cast('' as aufnr) as MaintenanceOrder,
key cast('' as vornr) as MaintenanceOrderOperation,
key cast('' as vornr) as MaintenanceOrderSubOperation,
cast('' as msgty) as SystemMessageType,
cast('' as msgid) as SystemMessageIdentification,
cast('' as msgnr) as SystemMessageNumber,
cast('' as msgv1) as SystemMessageVariable1,
cast('' as msgv2) as SystemMessageVariable2,
cast('' as msgv3) as SystemMessageVariable3,
cast('' as msgv4) as SystemMessageVariable4,
cast ('' as abap.char( 220 )) as SystemMessageText,
cast('' as ru_ernam) as EnteredByUser,
//Associations
@ObjectModel.association.type: [ #TO_COMPOSITION_ROOT, #TO_COMPOSITION_PARENT ]
_MaintenanceOrderConfTP
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_MAINTENANCEORDERCONFTP"
],
"ASSOCIATED":
[
"I_MAINTENANCEORDERCONFTP"
],
"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