lobjg_m

DDL: LOBJG_M SQL: LOBJGM Type: view Package: CLVL

Text Verticalization: Matchcode ID LOBJ-G

lobjg_m is a CDS View that provides data about "Text Verticalization: Matchcode ID LOBJ-G" in SAP S/4HANA. It reads from 2 data sources (lklah, lswor_m) and exposes 6 fields with key fields clint, spras, klpos. Part of development package CLVL.

Data Sources (2)

SourceAliasJoin Type
lklah lklah inner
lswor_m lswor_m from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName LOBJGM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Text Verticalization: Matchcode ID LOBJ-G view
AccessControl.authorizationCheck #NOT_ALLOWED view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY clint
KEY spras lswor_m spras Off. Language
KEY klpos lswor_m klpos Item number
klart lklah klart Class Type
class lklah class User Group
kschg lswor_m kschg Keyword

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 lobjg_m.
-- 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: LOBJGM

CREATE VIEW lobjg_m AS
SELECT
  cast ( lklah.clint as clint preserving type ) AS clint,
  lswor_m.spras AS spras,
  lswor_m.klpos AS klpos,
  lklah.klart AS klart,
  lklah.class AS class,
  lswor_m.kschg AS kschg
FROM lswor_m
INNER JOIN lklah ON /* join condition not captured in parsed metadata */
;