P_Labeltypetext

DDL: P_LABELTYPETEXT SQL: P_labeltype_text Type: view BASIC

P_Labeltypetext is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (t6wl5) and exposes 2 fields with key fields labeltype, Language.

Data Sources (1)

SourceAliasJoin Type
t6wl5 t6wl5 from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName P_labeltype_text view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
VDM.private true view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY labeltype etiar Label type
KEY Language t6wl5 spras Off. Language

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 P_Labeltypetext.
-- 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: P_labeltype_text

CREATE VIEW P_Labeltypetext AS
SELECT
  etiar AS labeltype,
  t6wl5.spras AS Language
FROM t6wl5
;