I_DocumentInfoRecordDocObjLnk

DDL: I_DOCUMENTINFORECORDDOCOBJLNK SQL: ICVOBJDOCLNK Type: view BASIC

Document info record object link details

I_DocumentInfoRecordDocObjLnk is a Basic CDS View that provides data about "Document info record object link details" in SAP S/4HANA. It reads from 1 data source (drad) and exposes 6 fields with key fields DocumentInfoRecordDocNumber, DocumentInfoRecordDocType, DocumentInfoRecordDocVersion, DocumentInfoRecordDocPart, LinkedSAPObject.

Data Sources (1)

SourceAliasJoin Type
drad drad from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICVOBJDOCLNK view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
EndUserText.label Document info record object link details view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY DocumentInfoRecordDocNumber doknr Document
KEY DocumentInfoRecordDocType dokar SW Document Type
KEY DocumentInfoRecordDocVersion dokvr Doc. Version
KEY DocumentInfoRecordDocPart doktl Document Part
KEY LinkedSAPObject dokob Object
KEY LinkedSAPObjectKey objky Relation (Key)

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_DocumentInfoRecordDocObjLnk.
-- 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: ICVOBJDOCLNK

CREATE VIEW I_DocumentInfoRecordDocObjLnk AS
SELECT
  doknr AS DocumentInfoRecordDocNumber,
  dokar AS DocumentInfoRecordDocType,
  dokvr AS DocumentInfoRecordDocVersion,
  doktl AS DocumentInfoRecordDocPart,
  dokob AS LinkedSAPObject,
  objky AS LinkedSAPObjectKey
FROM drad
;