I_MaintNotifDetectCodeGroupTxt

DDL: I_MAINTNOTIFDETECTCODEGROUPTXT SQL: IMAINTDETGRPTEXT Type: view BASIC

Maint Notif Detection Code Grp - Text

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

SAP Help Documentation

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

View on SAP Help Portal →

SAP API Hub

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

Documentation

Data Sources (1)

SourceAliasJoin Type
eam_detcogrp_t eam_detcogrp_t from

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName IMAINTDETGRPTEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Maint Notif Detection Code Grp - Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey MaintNotifDetectionCodeGroup view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT 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
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY MaintNotifDetectionCodeGroup detectioncodegroup Detection Method Group
KEY Language language Report Text Language
MaintNotifDetectionCodeGrpTxt eam_detcogrp_t detectioncodegrouptext Detection Method Group 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_MaintNotifDetectCodeGroupTxt.
-- 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: IMAINTDETGRPTEXT

CREATE VIEW I_MaintNotifDetectCodeGroupTxt AS
SELECT
  detectioncodegroup AS MaintNotifDetectionCodeGroup,
  Language,
  eam_detcogrp_t.detectioncodegrouptext AS MaintNotifDetectionCodeGrpTxt
FROM eam_detcogrp_t
;