I_GhoFuncLocText

DDL: I_GHOFUNCLOCTEXT SQL: IGHOFUNCLOCTEXT Type: view BASIC

Functional Location Text

I_GhoFuncLocText is a Basic CDS View that provides data about "Functional Location Text" in SAP S/4HANA. It reads from 1 data source (iflotx) and exposes 4 fields with key fields FunctionalLocation, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
iflotx iflotx from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_GhoIflot_Db _FunctionalLocation $projection.FunctionalLocation = _FunctionalLocation.FunctionalLocation

Annotations (11)

NameValueLevelField
EndUserText.label Functional Location Text view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IGHOFUNCLOCTEXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey FunctionalLocation view
ObjectModel.dataCategory #TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY FunctionalLocation tplnr Functional loc.
KEY Language spras Off. Language
FunctionalLocationDescription pltxt Description
_FunctionalLocation _FunctionalLocation

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_GhoFuncLocText.
-- 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: IGHOFUNCLOCTEXT

CREATE VIEW I_GhoFuncLocText AS
SELECT
  tplnr AS FunctionalLocation,
  spras AS Language,
  pltxt AS FunctionalLocationDescription
FROM iflotx
LEFT OUTER JOIN I_GhoIflot_Db AS _FunctionalLocation ON FunctionalLocation = _FunctionalLocation.FunctionalLocation  -- association [1..1]
;