I_TechObjIsEquipOrFuncnlLoc

DDL: I_TECHOBJISEQUIPORFUNCNLLOC SQL: ITECHOBJISEQORFL Type: view BASIC

Technical Object is Equi or Func Loc

I_TechObjIsEquipOrFuncnlLoc (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_TechObjIsEquipOrFuncnlLoc is a Basic CDS View (Dimension) that provides data about "Technical Object is Equi or Func Loc" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field TechObjIsEquipOrFuncnlLoc. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Maintenance Management
Data CategoryDIMENSION
Purpose
This CDS view is designed to provide a dimension for categorizing technical objects as either equipment or functional locations. It extracts and casts values from a domain that specifies the type of technical object, allowing for the differentiation between these two categories. This CDS view provides the data to answer the following business questions: What are the types of technical objects available in the system, specifically distinguishing between equipment and functional locations? How can technical objects be categorized for reporting and analysis purposes within asset management? What is the textual representation of each technical object type for user interface display? 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: Field Name Description TECHOBJISEQUIPORFUNCNLLOC Technical Object Type

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessAsset Management
Application ComponentPM-EQM-EQ
CapabilitiesData Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities
PackageAsset Management for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_TechObjIsEquipOrFuncnlLocT _Text $projection.TechObjIsEquipOrFuncnlLoc = _Text.TechObjIsEquipOrFuncnlLoc

Annotations (12)

NameValueLevelField
EndUserText.label Technical Object is Equi or Func Loc view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ITECHOBJISEQORFL view
ObjectModel.representativeKey TechObjIsEquipOrFuncnlLoc view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY TechObjIsEquipOrFuncnlLoc Technical Object Type
_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_TechObjIsEquipOrFuncnlLoc.
-- 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: ITECHOBJISEQORFL

CREATE VIEW I_TechObjIsEquipOrFuncnlLoc AS
SELECT
  cast( dd07l.domvalue_l as eams_tec_obj_type_value ) AS TechObjIsEquipOrFuncnlLoc
FROM dd07l
LEFT OUTER JOIN I_TechObjIsEquipOrFuncnlLocT AS _Text ON TechObjIsEquipOrFuncnlLoc = _Text.TechObjIsEquipOrFuncnlLoc  -- association [0..*]
;