I_FunctionalLocationLabel

DDL: I_FUNCTIONALLOCATIONLABEL Type: view COMPOSITE

Functional Location Label

I_FunctionalLocationLabel (Composite)

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

Asset Management

I_FunctionalLocationLabel is a Composite CDS View (Dimension) that provides data about "Functional Location Label" in SAP S/4HANA. It reads from 1 data source (I_FunctionalLocation) and exposes 5 fields with key field FunctionalLocation. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Maintenance Management
Data CategoryDimension
Purpose
This CDS view helps to retrieve the records of a functional location label. This CDS view provides the data to answer the following business questions: What is the label of the functional location? Does the functional location have an active labeling system? 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 FunctionalLocation Functional Location FunctionalLocationLabelName Functional Location Label FunctionalLocLabelingSyst Labelling System FuncnlLocUserLabelName Functional Location Label FuncnlLocPrimaryLabelName Functional Location Label

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessAsset Management
Application ComponentPM-EQM-FL
CapabilitiesData Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities, Analytical Dimension
PackageAsset Management for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view helps to retrieve the records of a functional location label. </p> <p>This CDS view provides the data to answer the following business questions:</p> <ul> <li><p>What is the label of the functional location?</p></li> <li><p>Does the functional location have an active labeling system?</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
I_FunctionalLocation I_FunctionalLocation from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_FuncLocationLabelSearch _FuncLocationLabelSearch $projection.FunctionalLocation = _FuncLocationLabelSearch.FunctionalLocation and $projection.FunctionalLocationLabelName = _FuncLocationLabelSearch.FunctionalLocationLabelName and $projection.FunctionalLocLabelingSyst = _FuncLocationLabelSearch.FunctionalLocLabelingSyst and ( _FuncLocationLabelSearch.FunctionalLocLabelIsActive is not initial or ( _FuncLocationLabelSearch.FunctionalLocLabelIsActive is initial and _FuncLocationLabelSearch.FunctionalLocLabelingSyst is initial ) )

Annotations (11)

NameValueLevelField
EndUserText.label Functional Location Label view
Analytics.dataCategory #DIMENSION view
VDM.viewType #COMPOSITE view
AbapCatalog.sqlViewName IFUNCLOCLABEL view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey FunctionalLocation view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY FunctionalLocation I_FunctionalLocation FunctionalLocation Functional Location
FuncnlLocUserLabelName UserLabel FunctionalLocationLabelName Functional Location Label
FuncnlLocPrimaryLabelName PrimaryLabel FunctionalLocationLabelName Functional Location Label
_FuncLocationLabelSearch _FuncLocationLabelSearch
_FunctionalLocationText I_FunctionalLocation _FunctionalLocationText

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_FunctionalLocationLabel.
-- 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_FunctionalLocationLabel AS
SELECT
  I_FunctionalLocation.FunctionalLocation AS FunctionalLocation,
  UserLabel.FunctionalLocationLabelName AS FuncnlLocUserLabelName,
  PrimaryLabel.FunctionalLocationLabelName AS FuncnlLocPrimaryLabelName,
  I_FunctionalLocation._FunctionalLocationText AS _FunctionalLocationText
FROM I_FunctionalLocation
LEFT OUTER JOIN I_FuncLocationLabelSearch AS _FuncLocationLabelSearch ON FunctionalLocation = _FuncLocationLabelSearch.FunctionalLocation AND FunctionalLocationLabelName = _FuncLocationLabelSearch.FunctionalLocationLabelName AND FunctionalLocLabelingSyst = _FuncLocationLabelSearch.FunctionalLocLabelingSyst AND ( _FuncLocationLabelSearch.FunctionalLocLabelIsActive is not initial OR ( _FuncLocationLabelSearch.FunctionalLocLabelIsActive is initial AND _FuncLocationLabelSearch.FunctionalLocLabelingSyst is initial ) )  -- association [0..1]
;