I_MaintenancePlanCatParam

DDL: I_MAINTENANCEPLANCATPARAM SQL: IMAINTPLNCAT Type: view BASIC Package: IPRM

Maintenance Plan Category Parameter

I_MaintenancePlanCatParam is a Basic CDS View that provides data about "Maintenance Plan Category Parameter" in SAP S/4HANA. It reads from 1 data source (t399w) and exposes 13 fields with key field MaintenancePlanCategory. It has 1 association to related views. It is exposed through 2 OData services (UI_MAINTENANCE_PLAN, UI_MAINTENANCEITEM). It is used in 2 Fiori applications: Manage Maintenance Plans, Manage Maintenance Items. Part of development package IPRM.

Data Sources (1)

SourceAliasJoin Type
t399w t399w from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MaintenancePlanCatParamT _Text _Text.MaintenancePlanCategory = $projection.MaintenancePlanCategory

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName IMAINTPLNCAT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Maintenance Plan Category Parameter view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
AbapCatalog.preserveKey true view
ObjectModel.representativeKey MaintenancePlanCategory view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.semanticKey MaintenancePlanCategory view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.sapObjectNodeType.name MaintenancePlanCategory view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view

OData Services (2)

ServiceBindingVersionContractRelease
UI_MAINTENANCE_PLAN UI_MAINTENANCE_PLAN V2 C1 NOT_RELEASED
UI_MAINTENANCEITEM UI_MAINTENANCEITEM V2 C1 NOT_RELEASED

Fiori Apps (2)

App IDApp NameTypeDescription
F5325 Manage Maintenance Plans Transactional An application to Manage Maintenance Plans, provides and comprehensive maintenance plan view including general data, scheduling information, assigned Maintenance Items, as well as review Maintenance calls, create new maintenance plan, edit existing maintenance plan.
F5356 Manage Maintenance Items Transactional An application to Manage Maintenance Items, provides and comprehensive Maintenance Item view, create new Maintenance Item, edit existing Maintenance Item.

Manage Maintenance Plans

Business Role: Maintenance Planner

With the Manage Maintenance Plans app, you as a maintenance planner can view, create, change, schedule, activate, and delete maintenance plans.

Manage Maintenance Items

Business Role: Maintenance Planner

With the Manage Maintenance Items app, you as a maintenance planner can manage maintenance items. You can create maintenance items, decide how to evaluate final due date for a maintenance item, assign maintenance item to a maintenance plan, view details of a maintenance item, view status of an equipment or a functional location within a maintenance item, and so on.

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY MaintenancePlanCategory t399w mptyp
MaintenancePlanCallObject t399w call_type
MaintPlanExternalRangeCode t399w wpext
MaintPlanInternalRangeCode t399w wpint
MaintPlanIncludeScreenCatCode t399w dynnr
OrderCategoryScreenTypeCode t399w screenty
MaintPlanHasContract t399w mpcontract
MaintCallDteHasSeparateCompltn t399w mpconfdate
ChangeDocumentCreationIsActive t399w mpchanged
MaintPlnSchedgRelIsToBeChgDocd t399w chdoc_rcal
MaintItemCausesAreDisplayed t399w show_urkat
MaintItemReasonsAreDisplayed t399w show_rekat
_Text _Text
@AbapCatalog.sqlViewName: 'IMAINTPLNCAT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Maintenance Plan Category Parameter'
@ObjectModel: {
   usageType.serviceQuality: #B,
   usageType.sizeCategory: #M,
   usageType.dataClass: #ORGANIZATIONAL
}
@AbapCatalog.preserveKey:true
@ObjectModel.representativeKey: 'MaintenancePlanCategory'
@ObjectModel.resultSet.sizeCategory: #XS

@ObjectModel.semanticKey: 'MaintenancePlanCategory'
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API

@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.supportedCapabilities:[ #CDS_MODELING_ASSOCIATION_TARGET, #CDS_MODELING_DATA_SOURCE, #VALUE_HELP_PROVIDER, #EXTRACTION_DATA_SOURCE]
@ObjectModel.sapObjectNodeType.name: 'MaintenancePlanCategory'
@Analytics: {
    dataExtraction: { 
        enabled: true,
        delta.changeDataCapture: {
              automatic: true
        }
    }
}

define view I_MaintenancePlanCatParam
  as select from t399w

  association [0..*] to I_MaintenancePlanCatParamT as _Text on _Text.MaintenancePlanCategory = $projection.MaintenancePlanCategory

{
      @ObjectModel.text.association: '_Text'
  key t399w.mptyp      as MaintenancePlanCategory,

      t399w.call_type  as MaintenancePlanCallObject,
      t399w.wpext      as MaintPlanExternalRangeCode,
      t399w.wpint      as MaintPlanInternalRangeCode,
      t399w.dynnr      as MaintPlanIncludeScreenCatCode,
      t399w.screenty   as OrderCategoryScreenTypeCode,
      t399w.mpcontract as MaintPlanHasContract,
      t399w.mpconfdate as MaintCallDteHasSeparateCompltn,
      t399w.mpchanged  as ChangeDocumentCreationIsActive,
      t399w.chdoc_rcal as MaintPlnSchedgRelIsToBeChgDocd,
      t399w.show_urkat as MaintItemCausesAreDisplayed,
      t399w.show_rekat as MaintItemReasonsAreDisplayed,
      // Propagate association(s)

      _Text
}