CUAN_LANGUAGE_SEARCH

DDL: CUAN_LANGUAGE_SEARCH Type: view_entity

Language Search

CUAN_LANGUAGE_SEARCH is a CDS View that provides data about "Language Search" in SAP S/4HANA. It reads from 1 data source (t002) and exposes 5 fields with key field laiso.

Data Sources (1)

SourceAliasJoin Type
t002 t002 from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Language Search view
ObjectModel.representativeKey laiso view
Analytics.technicalName CUAN_LANGUAGE_S view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY laiso t002 laiso Language Code
sptxt t002t sptxt Name
lainst t002c lainst Installable
spras t002 spras Off. Language
mandt

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 CUAN_LANGUAGE_SEARCH.
-- 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 CUAN_LANGUAGE_SEARCH AS
SELECT
  t002.laiso AS laiso,
  t002t.sptxt AS sptxt,
  t002c.lainst AS lainst,
  t002.spras AS spras,
  $session.client AS mandt
FROM t002
;