I_MaintNotifDetectionCodeText

DDL: I_MAINTNOTIFDETECTIONCODETEXT SQL: IMAINTDETCOTEXT Type: view BASIC

Maintenance Notif Detection Code - Text

I_MaintNotifDetectionCodeText (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_MaintNotifDetectionCodeText is a Basic CDS View that provides data about "Maintenance Notif Detection Code - Text" in SAP S/4HANA. It reads from 1 data source (eam_dtctncode_t) and exposes 3 fields with key fields MaintNotifDetectionCode, Language.

SAP Help Documentation

CategoryCDS Views for Maintenance Management
Purpose
This CDS view helps you to get the description of a detection method. This CDS view provides the data to answer the following business questions: What is the description of the detection method? What is the description of a detection method in all languages? 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 Language MaintNotifDetectionCodeText

View on SAP Help Portal →

SAP API Hub

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

Documentation

Data Sources (1)

SourceAliasJoin Type
eam_dtctncode_t eam_dtctncode_t from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IMAINTDETCOTEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Maintenance Notif Detection Code - Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey MaintNotifDetectionCode view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY MaintNotifDetectionCode eam_dtctncode_t detectioncode Detection Method
KEY Language language Report Text Language
MaintNotifDetectionCodeText eam_dtctncode_t detectioncodetext Detection Method Description

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_MaintNotifDetectionCodeText.
-- 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: IMAINTDETCOTEXT

CREATE VIEW I_MaintNotifDetectionCodeText AS
SELECT
  eam_dtctncode_t.detectioncode AS MaintNotifDetectionCode,
  Language,
  eam_dtctncode_t.detectioncodetext AS MaintNotifDetectionCodeText
FROM eam_dtctncode_t
;