I_DocInfoRecdObjLinkProduct

DDL: I_DOCINFORECDOBJLINKPRODUCT SQL: IPRODOBJLNK Type: view BASIC

Document Info Record Object Link Product

I_DocInfoRecdObjLinkProduct is a Basic CDS View that provides data about "Document Info Record Object Link Product" in SAP S/4HANA. It reads from 1 data source (I_DocumentInfoRecordObjectLink) and exposes 8 fields with key fields DocumentInfoRecordDocType, DocumentInfoRecordDocNumber, DocumentInfoRecordDocVersion, DocumentInfoRecordDocPart, LinkedSAPObject. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_DocumentInfoRecordObjectLink ObjLink from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Product _Product $projection.LinkedSAPObjectKey = _Product.Product

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IPRODOBJLNK view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Document Info Record Object Link Product 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

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY DocumentInfoRecordDocType I_DocumentInfoRecordObjectLink DocumentInfoRecordDocType Document Type
KEY DocumentInfoRecordDocNumber I_DocumentInfoRecordObjectLink DocumentInfoRecordDocNumber Document
KEY DocumentInfoRecordDocVersion I_DocumentInfoRecordObjectLink DocumentInfoRecordDocVersion Doc. Version
KEY DocumentInfoRecordDocPart I_DocumentInfoRecordObjectLink DocumentInfoRecordDocPart Document Part
KEY LinkedSAPObject I_DocumentInfoRecordObjectLink LinkedSAPObject Object
KEY LinkedSAPObjectKey I_DocumentInfoRecordObjectLink LinkedSAPObjectKey SAP Object Key
KEY DocObjectLinkCounter I_DocumentInfoRecordObjectLink DocObjectLinkCounter Obj.Ctr
_Product _Product

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_DocInfoRecdObjLinkProduct.
-- 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: IPRODOBJLNK

CREATE VIEW I_DocInfoRecdObjLinkProduct AS
SELECT
  ObjLink.DocumentInfoRecordDocType AS DocumentInfoRecordDocType,
  ObjLink.DocumentInfoRecordDocNumber AS DocumentInfoRecordDocNumber,
  ObjLink.DocumentInfoRecordDocVersion AS DocumentInfoRecordDocVersion,
  ObjLink.DocumentInfoRecordDocPart AS DocumentInfoRecordDocPart,
  ObjLink.LinkedSAPObject AS LinkedSAPObject,
  ObjLink.LinkedSAPObjectKey AS LinkedSAPObjectKey,
  ObjLink.DocObjectLinkCounter AS DocObjectLinkCounter
FROM I_DocumentInfoRecordObjectLink AS ObjLink
LEFT OUTER JOIN I_Product AS _Product ON LinkedSAPObjectKey = _Product.Product  -- association [0..1]
;