I_MaintNotifDetectionCodeText

DDL: I_MAINTNOTIFDETECTIONCODETEXT Type: view_entity BASIC Package: VDM_EAM_NTF

Maintenance Notif Detection Code - Text

I_MaintNotifDetectionCodeText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public 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. Part of development package VDM_EAM_NTF.

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

CategoryBasic
StateC1
Line of BusinessAsset Management
Application ComponentPM-WOC-MN-2CL
CapabilitiesData Source for Data Extraction,Data Source in SQL Select,Association Target for Defining CDS Entities,Data Source for Defining CDS Entities,Language-Dependent Text
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageAsset Management for SAP S/4HANA Cloud Public Edition
Description <p>This CDS view helps you to get the description of a detection method.</p> <p>This CDS view provides the data to answer the following business questions:</p> <ul> <li> <p>What is the description of the detection method?</p> </li> <li> <p>What is the description of a detection method in all languages?</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
eam_dtctncode_t eam_dtctncode_t from

Annotations (12)

NameValueLevelField
EndUserText.label Maintenance Notif Detection Code - Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED 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.technicalName IMAINTDETCOTEXT 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.

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