I_MaintenanceObjectLinkText

DDL: I_MAINTENANCEOBJECTLINKTEXT SQL: IMAINTOBJLNKTEXT Type: view BASIC

Object Link Text

I_MaintenanceObjectLinkText is a Basic CDS View that provides data about "Object Link Text" in SAP S/4HANA. It reads from 1 data source (inetx) and exposes 7 fields with key fields ObjectLink, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
inetx inetx from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_MaintenanceObjectLink _ObjectLink _ObjectLink.ObjectLink = $projection.ObjectLink
[0..1] I_Language _Language _Language.Language = $projection.Language

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IMAINTOBJLNKTEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Object Link Text view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.representativeKey ObjectLink view
Metadata.ignorePropagatedAnnotations true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ObjectLink kante Path
KEY Language spras Off. Language
ObjectLinkDescription kanxt Description
ObjectLinkHasLongText kzltx More text
IsPrimaryLanguage kzmla Primary lang.
_ObjectLink _ObjectLink
_Language _Language

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_MaintenanceObjectLinkText.
-- 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: IMAINTOBJLNKTEXT

CREATE VIEW I_MaintenanceObjectLinkText AS
SELECT
  kante AS ObjectLink,
  spras AS Language,
  kanxt AS ObjectLinkDescription,
  kzltx AS ObjectLinkHasLongText,
  kzmla AS IsPrimaryLanguage
FROM inetx
LEFT OUTER JOIN I_MaintenanceObjectLink AS _ObjectLink ON _ObjectLink.ObjectLink = ObjectLink  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON _Language.Language = Language  -- association [0..1]
;