I_MaintenanceChecklistType

DDL: I_MAINTENANCECHECKLISTTYPE Type: view_entity BASIC

Maintenance Checklist Type

I_MaintenanceChecklistType (Basic)

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

MaintenanceChecklistType · Asset Management

I_MaintenanceChecklistType is a Basic CDS View that provides data about "Maintenance Checklist Type" in SAP S/4HANA. It reads from 1 data source (eam_cl_cu_type) and exposes 5 fields with key field MaintOperationalChecklistType. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Maintenance Management
StatusInactive
Purpose
This CDS view allows you to retrieve the details of a maintenance checklist type. This CDS view provides the data to answer the following business questions: Which are the available maintenance checklist types? What is the description of the maintenance checklist type in different languages? Which maintenance checklist types are deactivated? Which maintenance checklist type contains additional information that is from the search field? 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 .

Prerequisites
Authorizations Users who want to use this CDS view don't need any special authorization.

Structure
Important Fields Important fields in this view include the following: Field Name Description MaintOperationalChecklistType Checklist Type StatusIsInactive Inactive MaintChklstTypeSortFieldText Search Field MaintChecklistTypeAuthznGroup Authorization Group

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessAsset Management
Application ComponentPM
CapabilitiesAnalytical Dimension, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities, Data Source for Data Extraction, Data Source in SQL Select
PackageAsset Management for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view allows you to retrieve the details of a maintenance checklist type.</p> <p>This CDS view provides the data to answer the following business questions:</p> <ul> <li><p>Which are the available maintenance checklist types?</p></li> <li><p>What is the description of the maintenance checklist type in different languages?</p></li> <li><p>Which maintenance checklist types are deactivated?</p></li> <li><p>Which maintenance checklist type contains additional information that is from the search field?</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_cl_cu_type _ChecklistType from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MaintenanceChecklistTypeText _Text _Text.MaintOperationalChecklistType = _ChecklistType.cl_type

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Maintenance Checklist Type view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey MaintOperationalChecklistType view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.sapObjectNodeType.name MaintenanceChecklistType view
Analytics.dataExtraction.enabled true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY MaintOperationalChecklistType eam_cl_cu_type cl_type Checklists: Checklist type at operation
StatusIsInactive eam_cl_cu_type inactive Checklist type: inactive indicator
MaintChklstTypeSortFieldText eam_cl_cu_type sortfeld Search Field
MaintenanceChecklistTypeText Checklist type: Text description
_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_MaintenanceChecklistType.
-- 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_MaintenanceChecklistType AS
SELECT
  _ChecklistType.cl_type AS MaintOperationalChecklistType,
  _ChecklistType.inactive AS StatusIsInactive,
  _ChecklistType.sortfeld AS MaintChklstTypeSortFieldText,
  _Text[1:Language = $session.system_language].MaintenanceChecklistTypeText AS MaintenanceChecklistTypeText
FROM eam_cl_cu_type AS _ChecklistType
LEFT OUTER JOIN I_MaintenanceChecklistTypeText AS _Text ON _Text.MaintOperationalChecklistType = _ChecklistType.cl_type  -- association [0..*]
;