I_DocInfoRecdBusObjAttachCntnt

DDL: I_DOCINFORECDBUSOBJATTACHCNTNT SQL: ICVDOCBUSOBJATCN Type: view COMPOSITE

DIR Business Object Attachment Content

I_DocInfoRecdBusObjAttachCntnt is a Composite CDS View that provides data about "DIR Business Object Attachment Content" 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 I_DocumentInfoRecordObjectLink from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_DocInfoRecordAttchsWithCntnt _DocInfoRecordAttchsWithCntnt $projection.DocumentInfoRecordDocType = _DocInfoRecordAttchsWithCntnt.DocumentInfoRecordDocType and $projection.DocumentInfoRecordDocNumber = _DocInfoRecordAttchsWithCntnt.DocumentInfoRecordDocNumber and $projection.DocumentInfoRecordDocVersion = _DocInfoRecordAttchsWithCntnt.DocumentInfoRecordDocVersion and $projection.DocumentInfoRecordDocPart = _DocInfoRecordAttchsWithCntnt.DocumentInfoRecordDocPart and _DocInfoRecordAttchsWithCntnt.Language = $session.system_language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ICVDOCBUSOBJATCN view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
EndUserText.label DIR Business Object Attachment Content view

Fields (8)

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

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_DocInfoRecdBusObjAttachCntnt.
-- 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: ICVDOCBUSOBJATCN

CREATE VIEW I_DocInfoRecdBusObjAttachCntnt AS
SELECT
  DocumentInfoRecordDocType,
  DocumentInfoRecordDocNumber,
  DocumentInfoRecordDocVersion,
  DocumentInfoRecordDocPart,
  LinkedSAPObject,
  LinkedSAPObjectKey,
  DocObjectLinkCounter
FROM I_DocumentInfoRecordObjectLink
LEFT OUTER JOIN I_DocInfoRecordAttchsWithCntnt AS _DocInfoRecordAttchsWithCntnt ON DocumentInfoRecordDocType = _DocInfoRecordAttchsWithCntnt.DocumentInfoRecordDocType AND DocumentInfoRecordDocNumber = _DocInfoRecordAttchsWithCntnt.DocumentInfoRecordDocNumber AND DocumentInfoRecordDocVersion = _DocInfoRecordAttchsWithCntnt.DocumentInfoRecordDocVersion AND DocumentInfoRecordDocPart = _DocInfoRecordAttchsWithCntnt.DocumentInfoRecordDocPart AND _DocInfoRecordAttchsWithCntnt.Language = $session.system_language  -- association [0..*]
;