I_MaintOrderTypeControlParam

DDL: I_MAINTORDERTYPECONTROLPARAM SQL: IORDCNTRLPARAM Type: view BASIC

Maintenance Order Type Control Parameters

I_MaintOrderTypeControlParam is a Basic CDS View that provides data about "Maintenance Order Type Control Parameters" in SAP S/4HANA. It reads from 1 data source (t350) and exposes 7 fields with key field OrderType.

Data Sources (1)

SourceAliasJoin Type
t350 t350 from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName IORDCNTRLPARAM view
EndUserText.label Maintenance Order Type Control Parameters view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY OrderType t350 auart
NotificationType t350 qmart
MaintOrderRespPartnerFunction t350 parvw_vera
MaintPriorityType t350 artpr
RefTimeForOrderCompletion t350 bezzt_ord
MaintOrdTypeHasActvPhaseModel t350 eams_ime_active
MaintOrderTypeIsService t350 service
@AbapCatalog.sqlViewName: 'IORDCNTRLPARAM'
@EndUserText.label: 'Maintenance Order Type Control Parameters'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck:#CHECK

@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S

define view I_MaintOrderTypeControlParam
  as select from t350
{
  key t350.auart           as OrderType,

      t350.qmart           as NotificationType,
      t350.parvw_vera      as MaintOrderRespPartnerFunction,
      t350.artpr           as MaintPriorityType,
      t350.bezzt_ord       as RefTimeForOrderCompletion,
      t350.eams_ime_active as MaintOrdTypeHasActvPhaseModel,
      t350.service         as MaintOrderTypeIsService
}