I_MaintNotifDetectionGroupCode

DDL: I_MAINTNOTIFDETECTIONGROUPCODE SQL: IMAINTDETGRCODE Type: view BASIC

Maintenance Notification Dtctn Grp Code

I_MaintNotifDetectionGroupCode (Basic)

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

MaintNotifDetectionCode · Asset Management

I_MaintNotifDetectionGroupCode is a Basic CDS View (Dimension) that provides data about "Maintenance Notification Dtctn Grp Code" in SAP S/4HANA. It reads from 1 data source (eam_detgrpcode) and exposes 8 fields with key fields MaintNotifDetectionCodeGroup, MaintNotifDetectionCode. It has 4 associations to related views.

SAP Help Documentation

CategoryCDS Views for Maintenance Management
Purpose
This CDS view helps you retrieve which detection methods are assigned to which detection method groups. This CDS view provides the data to answer the following business questions: Which detection method is assigned to the detection method group? 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 MaintNotifDetectionCode MaintNotifDetectionCodeText MaintNotifDetectionCodeGrpTxt

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessAsset Management
Application ComponentPM-WOC-MN
CapabilitiesData Source in SQL Select, Data Source for Data Extraction, 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_detgrpcode eam_detgrpcode from

Associations (4)

CardinalityTargetAliasCondition
[0..1] I_MaintNotifDetectionCode _DetectionCode $projection.MaintNotifDetectionCode = _DetectionCode.MaintNotifDetectionCode
[0..1] I_MaintNotifDetectionCodeGroup _DetectionCodeGroup $projection.MaintNotifDetectionCodeGroup = _DetectionCodeGroup.MaintNotifDetectionCodeGroup
[0..*] I_MaintNotifDetectionCodeText _DetectionCodeText $projection.MaintNotifDetectionCode = _DetectionCodeText.MaintNotifDetectionCode
[0..*] I_MaintNotifDetectCodeGroupTxt _DetectionCodeGroupText $projection.MaintNotifDetectionCodeGroup = _DetectionCodeGroupText.MaintNotifDetectionCodeGroup

Annotations (19)

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

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY MaintNotifDetectionCodeGroup eam_detgrpcode detectioncodegroup Detection Method Group
KEY MaintNotifDetectionCode eam_detgrpcode detectioncode Detection Method
MaintNotifDetectionCodeText Detection Method Description
MaintNotifDetectionCodeGrpTxt Detection Method Group Description
_DetectionCode _DetectionCode
_DetectionCodeGroup _DetectionCodeGroup
_DetectionCodeText _DetectionCodeText
_DetectionCodeGroupText _DetectionCodeGroupText

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_MaintNotifDetectionGroupCode.
-- 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: IMAINTDETGRCODE

CREATE VIEW I_MaintNotifDetectionGroupCode AS
SELECT
  eam_detgrpcode.detectioncodegroup AS MaintNotifDetectionCodeGroup,
  eam_detgrpcode.detectioncode AS MaintNotifDetectionCode,
  _DetectionCodeText[1:Language=$session.system_language].MaintNotifDetectionCodeText AS MaintNotifDetectionCodeText,
  _DetectionCodeGroupText[1:Language=$session.system_language].MaintNotifDetectionCodeGrpTxt AS MaintNotifDetectionCodeGrpTxt
FROM eam_detgrpcode
LEFT OUTER JOIN I_MaintNotifDetectionCode AS _DetectionCode ON MaintNotifDetectionCode = _DetectionCode.MaintNotifDetectionCode  -- association [0..1]
LEFT OUTER JOIN I_MaintNotifDetectionCodeGroup AS _DetectionCodeGroup ON MaintNotifDetectionCodeGroup = _DetectionCodeGroup.MaintNotifDetectionCodeGroup  -- association [0..1]
LEFT OUTER JOIN I_MaintNotifDetectionCodeText AS _DetectionCodeText ON MaintNotifDetectionCode = _DetectionCodeText.MaintNotifDetectionCode  -- association [0..*]
LEFT OUTER JOIN I_MaintNotifDetectCodeGroupTxt AS _DetectionCodeGroupText ON MaintNotifDetectionCodeGroup = _DetectionCodeGroupText.MaintNotifDetectionCodeGroup  -- association [0..*]
;