I_FunctionalLocLabelingSystTxt

DDL: I_FUNCTIONALLOCLABELINGSYSTTXT SQL: IFLOCALTSYSTEXT Type: view BASIC

Functional Location Labeling System Text

I_FunctionalLocLabelingSystTxt is a Basic CDS View that provides data about "Functional Location Labeling System Text" in SAP S/4HANA. It reads from 1 data source (ifloalt_t) and exposes 5 fields with key fields FunctionalLocLabelingSyst, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
ifloalt_t ifloalt_t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_FunctionalLocLabelingSyst _FunctionalLocLabelingSyst _FunctionalLocLabelingSyst.FunctionalLocLabelingSyst = $projection.FunctionalLocLabelingSyst
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

NameValueLevelField
EndUserText.label Functional Location Labeling System Text view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName IFLOCALTSYSTEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey FunctionalLocLabelingSyst view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY FunctionalLocLabelingSyst alkey Labeling system
KEY Language spras Off. Language
FunctionalLocLabelingSystDesc altxt Description
_Language _Language
_FunctionalLocLabelingSyst _FunctionalLocLabelingSyst

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_FunctionalLocLabelingSystTxt.
-- 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: IFLOCALTSYSTEXT

CREATE VIEW I_FunctionalLocLabelingSystTxt AS
SELECT
  alkey AS FunctionalLocLabelingSyst,
  spras AS Language,
  altxt AS FunctionalLocLabelingSystDesc
FROM ifloalt_t
LEFT OUTER JOIN I_FunctionalLocLabelingSyst AS _FunctionalLocLabelingSyst ON _FunctionalLocLabelingSyst.FunctionalLocLabelingSyst = FunctionalLocLabelingSyst  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;