C_LglTransAccLvlEditValHelp

DDL: C_LGLTRANSACCLVLEDITVALHELP SQL: CLTACCLVLEDITVH Type: view CONSUMPTION Package: ODATA_LCM_LT

Legal Transaction Access Level

C_LglTransAccLvlEditValHelp is a Consumption CDS View that provides data about "Legal Transaction Access Level" in SAP S/4HANA. It reads from 2 data sources (I_LglCntntMAccessLvl, I_LglCntntMProfile) and exposes 4 fields with key fields LglCntntMAccessLvl, LglCntntMProfile. It has 1 association to related views. Part of development package ODATA_LCM_LT.

Data Sources (2)

SourceAliasJoin Type
I_LglCntntMAccessLvl I_LglCntntMAccessLvl cross
I_LglCntntMProfile I_LglCntntMProfile from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_LglCntntMProfile _LglCntntMProfile $projection.LglCntntMProfile = _LglCntntMProfile.LglCntntMProfile

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CLTACCLVLEDITVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey LglCntntMAccessLvl view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Legal Transaction Access Level view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY LglCntntMAccessLvl LglCntntMAccessLvl Access Level
KEY LglCntntMProfile I_LglCntntMProfile LglCntntMProfile Profile
LglCntntMAccessLvlName Access Level Description
_LglCntntMProfile _LglCntntMProfile

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 C_LglTransAccLvlEditValHelp.
-- 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: CLTACCLVLEDITVH

CREATE VIEW C_LglTransAccLvlEditValHelp AS
SELECT
  LglCntntMAccessLvl,
  I_LglCntntMProfile.LglCntntMProfile AS LglCntntMProfile,
  I_LglCntntMAccessLvl._Text[1: Language = $session.system_language].LglCntntMAccessLvlName AS LglCntntMAccessLvlName
FROM I_LglCntntMProfile
CROSS JOIN I_LglCntntMAccessLvl
LEFT OUTER JOIN I_LglCntntMProfile AS _LglCntntMProfile ON LglCntntMProfile = _LglCntntMProfile.LglCntntMProfile  -- association [1..1]
;