I_MaintCallObjectType

DDL: I_MAINTCALLOBJECTTYPE SQL: IMNTCALOBJTYP Type: view COMPOSITE

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)

SourceAliasJoin Type
I_SAPObjectType I_SAPObjectType from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MaintCallObjectTypeText _Text _Text.MaintenanceCallObjectType = $projection.MaintenanceCallObjectType

Annotations (13)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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'