I_FunctionalLocLabelingSyst

DDL: I_FUNCTIONALLOCLABELINGSYST SQL: IFLOCALTSYS Type: view BASIC

Functional Location Labeling System

I_FunctionalLocLabelingSyst is a Basic CDS View (Dimension) that provides data about "Functional Location Labeling System" in SAP S/4HANA. It reads from 1 data source (ifloalt) and exposes 3 fields with key field FunctionalLocLabelingSyst. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
ifloalt ifloalt from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_FunctionalLocLabelingSystTxt _Text $projection.FunctionalLocLabelingSyst = _Text.FunctionalLocLabelingSyst

Annotations (11)

NameValueLevelField
EndUserText.label Functional Location Labeling System view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName IFLOCALTSYS view
ObjectModel.representativeKey FunctionalLocLabelingSyst view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY FunctionalLocLabelingSyst ifloalt alkey Labeling system
FuncnlLocLabelIsPrimaryLabel ifloalt prkey Primary
_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_FunctionalLocLabelingSyst.
-- 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: IFLOCALTSYS

CREATE VIEW I_FunctionalLocLabelingSyst AS
SELECT
  ifloalt.alkey AS FunctionalLocLabelingSyst,
  ifloalt.prkey AS FuncnlLocLabelIsPrimaryLabel
FROM ifloalt
LEFT OUTER JOIN I_FunctionalLocLabelingSystTxt AS _Text ON FunctionalLocLabelingSyst = _Text.FunctionalLocLabelingSyst  -- association [0..*]
;