I_LocationAnalyticsText

DDL: I_LOCATIONANALYTICSTEXT Type: view COMPOSITE

Location - Text

I_LocationAnalyticsText (Composite)

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

Supply Chain

I_LocationAnalyticsText is a Composite CDS View that provides data about "Location - Text" in SAP S/4HANA. It reads from 1 data source (I_LocationText) and exposes 6 fields with key fields Location, Language. It has 2 associations to related views.

SAP API Hub

StateC1
Line of BusinessSupply Chain
Application ComponentTM-MD-TN-LOC
CapabilitiesData Source for Data Extraction, Language-Dependent Text, Data Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities
PackageSupply Chain for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_LocationText I_LocationText from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_LocationAnalytics _Location $projection.LocationUUID = _Location.LocationUUID and $projection.Location = _Location.Location

Annotations (17)

NameValueLevelField
EndUserText.label Location - Text view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.sqlViewName ILOCANATEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #NOT_ALLOWED view
AbapCatalog.preserveKey true view
ObjectModel.representativeKey Location view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #TEXT view
VDM.viewType #COMPOSITE view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Location _Location Location Location
KEY Language Language Report Text Language
LocationDescription LocationDescription Location Description
LocationUUID LocationUUID Internal Location Number (Customer, Supplier, or Plant)
_Language _Language
_Location _Location

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_LocationAnalyticsText.
-- 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_LocationAnalyticsText AS
SELECT
  _Location.Location AS Location,
  Language,
  LocationDescription,
  LocationUUID
FROM I_LocationText
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_LocationAnalytics AS _Location ON LocationUUID = _Location.LocationUUID AND Location = _Location.Location  -- association [1..1]
;