I_MaintOperationSystCondition

DDL: I_MAINTOPERATIONSYSTCONDITION SQL: IMAINTOPSYSCOND Type: view BASIC

System Condition of Technical Object

I_MaintOperationSystCondition (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Asset Management

I_MaintOperationSystCondition is a Basic CDS View (Dimension) that provides data about "System Condition of Technical Object" in SAP S/4HANA. It reads from 1 data source (t357m) and exposes 3 fields with key field OperationSystemCondition. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Maintenance Management
Data CategoryDimension
Purpose
This CDS view helps you retrieve the system condition of a technical object in general. Possible values are: 0 - Not in operation 1 – In operation This CDS view provides the data to answer the following business questions: Which system condition is marked for influencing the capacity of the production work center? Is a system condition only supported by Plant Maintenance? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations Users who want to use this CDS view don't need any special authorization.

Structure
Important Fields Important fields in this view include the following: Field Name Description OperationSystemCondition System Condition ProdnWrkCtrIsRsrvdByPlntMaint Reservation by PM

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessAsset Management
Application ComponentPM-WOC-MN
CapabilitiesData Source for Defining CDS Entities, Association Target for Defining CDS Entities, Analytical Dimension
PackageAsset Management for SAP S/4HANA Cloud Private Edition
Description This CDS view helps you retrieve the system condition of a technical object in general. Possible values are:<ul> <li><p>0 - Not in operation</p></li> <li><p>1 – In operation</p></li> </ul> <p>This CDS view provides the data to answer the following business questions:</p> <ul> <li><p>Which system condition is marked for influencing the capacity of the production work center?</p></li> <li><p>Is a system condition only supported by Plant Maintenance?</p></li> </ul> <p>To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
t357m t357m from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MaintOperationSystConditionT _Text _Text.OperationSystemCondition = $projection.OperationSystemCondition

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IMAINTOPSYSCOND view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label System Condition of Technical Object view
ObjectModel.representativeKey OperationSystemCondition view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY OperationSystemCondition anlzu System Condition
ProdnWrkCtrIsRsrvdByPlntMaint kapao Production Work Center Reserved by Plant Maintenance
_Text _Text

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_MaintOperationSystCondition.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IMAINTOPSYSCOND

CREATE VIEW I_MaintOperationSystCondition AS
SELECT
  anlzu AS OperationSystemCondition,
  kapao AS ProdnWrkCtrIsRsrvdByPlntMaint
FROM t357m
LEFT OUTER JOIN I_MaintOperationSystConditionT AS _Text ON _Text.OperationSystemCondition = OperationSystemCondition  -- association [0..*]
;