I_MaintenanceOrderType
Fetching maint order type with cat 30
I_MaintenanceOrderType is a Basic CDS View that provides data about "Fetching maint order type with cat 30" in SAP S/4HANA. It reads from 1 data source (I_OrderType) and exposes 2 fields with key field MaintenanceOrderType. Part of development package ODATA_EAM_ORD_MAN.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_OrderType | I_OrderType | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Fetching maint order type with cat 30 | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | MaintenanceOrderType | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| Search.searchable | true | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MaintenanceOrderType | I_OrderType | OrderType | |
| MaintenanceOrderTypeName | Order Type Text |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Fetching maint order type with cat 30'
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'MaintenanceOrderType'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #S
@Search.searchable: true
@ObjectModel.resultSet.sizeCategory: #XS
define view entity I_MaintenanceOrderType
as select from I_OrderType
{
@Search: { defaultSearchElement: true, ranking: #HIGH }
@ObjectModel.text.element: [ 'MaintenanceOrderTypeName' ]
key I_OrderType.OrderType as MaintenanceOrderType,
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
@EndUserText.label: 'Order Type Text'
@Semantics.text
I_OrderType._Text[1:Language = $session.system_language].OrderTypeName as MaintenanceOrderTypeName
}
where
I_OrderType.OrderCategory = '30' //Maintenance Order
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