lobjf_m

DDL: LOBJF_M SQL: LOBJFM Type: view

Text Verticalization: Matchcode ID LOBJ-F

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

Data Sources (2)

SourceAliasJoin Type
lklah lklah inner
lswor_m lswor_m from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName LOBJFM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Text Verticalization: Matchcode ID LOBJ-F 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
kschl lswor_m kschl Tax Item Type

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 lobjf_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: LOBJFM

CREATE VIEW lobjf_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.kschl AS kschl
FROM lswor_m
INNER JOIN lklah ON /* join condition not captured in parsed metadata */
;