SADL_V_AUnit_Language

DDL: SADL_V_AUNIT_LANGUAGES SQL: SADLVLANG Type: view

Languages for local unit tests

SADL_V_AUnit_Language is a CDS View that provides data about "Languages for local unit tests" in SAP S/4HANA. It reads from 1 data source (t002) and exposes 4 fields with key field spras.

Data Sources (1)

SourceAliasJoin Type
t002 t002 from

Annotations (2)

NameValueLevelField
AbapCatalog.sqlViewName SADLVLANG view
EndUserText.label Languages for local unit tests view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY spras t002 spras Off. Language
laspez t002 laspez Lang. specific.
lahq t002 lahq Degree Translated
laiso t002 laiso Language Code

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 SADL_V_AUnit_Language.
-- 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: SADLVLANG

CREATE VIEW SADL_V_AUnit_Language AS
SELECT
  t002.spras AS spras,
  t002.laspez AS laspez,
  t002.lahq AS lahq,
  t002.laiso AS laiso
FROM t002
;