I_MaintCallObjectType
Maintenance Call Object Type
I_MaintCallObjectType is a Composite CDS View that provides data about "Maintenance Call Object Type" in SAP S/4HANA. It reads from 1 data source (I_SAPObjectType) and exposes 2 fields with key field MaintenanceCallObjectType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SAPObjectType | I_SAPObjectType | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_MaintCallObjectTypeText | _Text | _Text.MaintenanceCallObjectType = $projection.MaintenanceCallObjectType |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.sqlViewName | IMNTCALOBJTYP | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Search.searchable | true | view | |
| EndUserText.label | Maintenance Call Object Type | view | |
| ObjectModel.representativeKey | MaintenanceCallObjectType | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MaintenanceCallObjectType | SAPObjectType | ||
| _Text | _Text |
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AbapCatalog.sqlViewName: 'IMNTCALOBJTYP'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
@EndUserText.label: 'Maintenance Call Object Type'
@ObjectModel: {
representativeKey: 'MaintenanceCallObjectType',
usageType: {
dataClass: #MASTER,
serviceQuality: #A,
sizeCategory: #M
}
}
@VDM.viewType: #COMPOSITE
@ObjectModel.resultSet.sizeCategory: #XS
define view I_MaintCallObjectType
as select from I_SAPObjectType
association [0..*] to I_MaintCallObjectTypeText as _Text on _Text.MaintenanceCallObjectType = $projection.MaintenanceCallObjectType
{
@ObjectModel.text.association: '_Text'
@Search: { defaultSearchElement: true, ranking: #HIGH }
key SAPObjectType as MaintenanceCallObjectType,
//Associations
_Text
}
where
SAPObjectType = 'MaintenanceOrder'
or SAPObjectType = 'ServiceEntrySheet'
or SAPObjectType = 'MaintenanceNotification'
or SAPObjectType = 'InspectionLot'
or SAPObjectType = 'ServiceOrder'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SAPOBJECTTYPE"
],
"ASSOCIATED":
[
"I_MAINTCALLOBJECTTYPETEXT"
],
"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