I_DocumentInfoRecordObjLinkT

DDL: I_DOCUMENTINFORECORDOBJLINKT SQL: ICVDOCOBJLINKT Type: view BASIC

Document Info Record Object Link Text

I_DocumentInfoRecordObjLinkT is a Basic CDS View that provides data about "Document Info Record Object Link Text" in SAP S/4HANA. It reads from 1 data source (tdwot) and exposes 6 fields with key fields Language, LinkedSAPObject. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tdwot tdwot from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_DocumentInfoRecordObjLinkVH _ObjLink $projection.LinkedSAPObject = _ObjLink.LinkedSAPObject
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ICVDOCOBJLINKT view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Document Info Record Object Link Text view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ClientHandling.type #INHERITED view
ObjectModel.representativeKey LinkedSAPObject view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language tdwot langu Primary lang.
KEY LinkedSAPObject tdwot dokob Object
ObjectDescription tdwot ktxt Object Desc.
ObjectType tdwot objab Abbreviation
_Language _Language
_ObjLink _ObjLink

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_DocumentInfoRecordObjLinkT.
-- 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: ICVDOCOBJLINKT

CREATE VIEW I_DocumentInfoRecordObjLinkT AS
SELECT
  tdwot.langu AS Language,
  tdwot.dokob AS LinkedSAPObject,
  tdwot.ktxt AS ObjectDescription,
  tdwot.objab AS ObjectType
FROM tdwot
LEFT OUTER JOIN I_DocumentInfoRecordObjLinkVH AS _ObjLink ON LinkedSAPObject = _ObjLink.LinkedSAPObject  -- association [0..*]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;