I_MaintNotifDetectionCode

DDL: I_MAINTNOTIFDETECTIONCODE SQL: IMAINTDETCODE Type: view BASIC

Maintenance Notification Detection Code

I_MaintNotifDetectionCode (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_MaintNotifDetectionCode is a Basic CDS View (Dimension) that provides data about "Maintenance Notification Detection Code" in SAP S/4HANA. It reads from 1 data source (eam_dtctncode) and exposes 3 fields with key field MaintNotifDetectionCode. 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 methods which are active and inactive. This CDS view provides the data to answer the following business questions: Which detection methods are active? Which detection methods 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: MaintNotifDetectionCode IsDeactivated

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 Defining CDS Entities, Data Source for Data Extraction, Analytical Dimension, Association Target for Defining CDS Entities
PackageAsset Management for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
eam_dtctncode eam_dtctncode from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MaintNotifDetectionCodeText _Text $projection.MaintNotifDetectionCode = _Text.MaintNotifDetectionCode

Annotations (19)

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

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY MaintNotifDetectionCode eam_dtctncode detectioncode Detection Method
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_MaintNotifDetectionCode.
-- 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: IMAINTDETCODE

CREATE VIEW I_MaintNotifDetectionCode AS
SELECT
  eam_dtctncode.detectioncode AS MaintNotifDetectionCode,
  deactivated AS IsDeactivated
FROM eam_dtctncode
LEFT OUTER JOIN I_MaintNotifDetectionCodeText AS _Text ON MaintNotifDetectionCode = _Text.MaintNotifDetectionCode  -- association [0..*]
;