I_LglCntntMNotesObjTypes

DDL: I_LGLCNTNTMNOTESOBJTYPES SQL: ILCMNTOBJTYPES Type: view BASIC

Object Types and Desc. related to Notes

I_LglCntntMNotesObjTypes is a Basic CDS View that provides data about "Object Types and Desc. related to Notes" in SAP S/4HANA. It reads from 2 data sources (dd07l, dd07t) and exposes 2 fields with key field LglCntntMObjType.

Data Sources (2)

SourceAliasJoin Type
dd07l dd07l from
dd07t dd07t inner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ILCMNTOBJTYPES view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter 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 Object Types and Desc. related to Notes view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY LglCntntMObjType
LglCntntMObjTypeDesc 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_LglCntntMNotesObjTypes.
-- 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: ILCMNTOBJTYPES

CREATE VIEW I_LglCntntMNotesObjTypes AS
SELECT
  cast( dd07t.domvalue_l as lcm_note_object_type) AS LglCntntMObjType,
  dd07t.ddtext AS LglCntntMObjTypeDesc
FROM dd07l
INNER JOIN dd07t ON /* join condition not captured in parsed metadata */
;