I_LglCntntMVersionText

DDL: I_LGLCNTNTMVERSIONTEXT SQL: ILCMVERTXT Type: view BASIC

Version Text

I_LglCntntMVersionText is a Basic CDS View that provides data about "Version Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 2 fields with key field LglCntntMVersionTypeCode.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ILCMVERTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
EndUserText.label Version Text view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY LglCntntMVersionTypeCode
LglCntntMVersionTypeText dd07t ddtext Short text

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_LglCntntMVersionText.
-- 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: ILCMVERTXT

CREATE VIEW I_LglCntntMVersionText AS
SELECT
  cast( dd07t.domvalue_l as lcm_version_text ) AS LglCntntMVersionTypeCode,
  dd07t.ddtext AS LglCntntMVersionTypeText
FROM dd07t
;