I_MaintNotifDetectionCodeGroup

DDL: I_MAINTNOTIFDETECTIONCODEGROUP SQL: IMAINTDETCOGRP Type: view BASIC

Maint Notification Detection Code Group

I_MaintNotifDetectionCodeGroup (Basic)

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

MaintNotifDetectionCodeGroup · Asset Management

I_MaintNotifDetectionCodeGroup is a Basic CDS View (Dimension) that provides data about "Maint Notification Detection Code Group" in SAP S/4HANA. It reads from 1 data source (eam_detcogrp) and exposes 3 fields with key field MaintNotifDetectionCodeGroup. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Maintenance Management
Purpose
This CDS view helps you to get information about the detection method groups which are active and inactive. This CDS view provides the data to answer the following business questions: Which detection method groups are active? Which detection method groups are deactivated? 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 .

Structure
Important Fields Important fields in this view include the following: MaintNotifDetectionCodeGroup IsDeactivated

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessAsset Management
Application ComponentPM-WOC-MN
CapabilitiesData Source for Data Extraction, Data Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities, Analytical Dimension
PackageAsset Management for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
eam_detcogrp eam_detcogrp from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MaintNotifDetectCodeGroupTxt _Text $projection.MaintNotifDetectionCodeGroup = _Text.MaintNotifDetectionCodeGroup

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName IMAINTDETCOGRP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey MaintNotifDetectionCodeGroup view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view
Analytics.dataCategory #DIMENSION view
ObjectModel.resultSet.sizeCategory #XS view
EndUserText.label Maint Notification Detection Code Group view
Metadata.ignorePropagatedAnnotations true view
Analytics.internalName #LOCAL view
ObjectModel.sapObjectNodeType.name MaintNotifDetectionCodeGroup view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY MaintNotifDetectionCodeGroup detectioncodegroup Detection Method Group
IsDeactivated deactivated Deactivate
_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_MaintNotifDetectionCodeGroup.
-- 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: IMAINTDETCOGRP

CREATE VIEW I_MaintNotifDetectionCodeGroup AS
SELECT
  detectioncodegroup AS MaintNotifDetectionCodeGroup,
  deactivated AS IsDeactivated
FROM eam_detcogrp
LEFT OUTER JOIN I_MaintNotifDetectCodeGroupTxt AS _Text ON MaintNotifDetectionCodeGroup = _Text.MaintNotifDetectionCodeGroup  -- association [0..*]
;