P_OAInstceWrkInstrnDocInfoRecd

DDL: P_OAINSTCEWRKINSTRNDOCINFORECD Type: view_entity COMPOSITE

OA Instance WI Document Info Record

P_OAInstceWrkInstrnDocInfoRecd is a Composite CDS View that provides data about "OA Instance WI Document Info Record" in SAP S/4HANA. It reads from 2 data sources (I_DocumentInfoRecordDetail, I_DocumentInfoRecordDocObjLnk) and exposes 7 fields with key fields DocumentInfoRecordDocType, DocumentInfoRecordDocNumber, DocumentInfoRecordDocVersion, DocumentInfoRecordDocPart, LinkedSAPObject.

Data Sources (2)

SourceAliasJoin Type
I_DocumentInfoRecordDetail Document inner
I_DocumentInfoRecordDocObjLnk ObjLink from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label OA Instance WI Document Info Record view
VDM.private true view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY DocumentInfoRecordDocType I_DocumentInfoRecordDocObjLnk DocumentInfoRecordDocType Document Type
KEY DocumentInfoRecordDocNumber I_DocumentInfoRecordDocObjLnk DocumentInfoRecordDocNumber Document
KEY DocumentInfoRecordDocVersion I_DocumentInfoRecordDocObjLnk DocumentInfoRecordDocVersion Doc. Version
KEY DocumentInfoRecordDocPart I_DocumentInfoRecordDocObjLnk DocumentInfoRecordDocPart Document Part
KEY LinkedSAPObject I_DocumentInfoRecordDocObjLnk LinkedSAPObject Object
KEY LinkedSAPObjectKey I_DocumentInfoRecordDocObjLnk LinkedSAPObjectKey SAP Object Key
DocInfoRecdIsMarkedForDeletion I_DocumentInfoRecordDetail DocInfoRecdIsMarkedForDeletion Deletion ind.

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 P_OAInstceWrkInstrnDocInfoRecd.
-- 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.

CREATE VIEW P_OAInstceWrkInstrnDocInfoRecd 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,
  Document.DocInfoRecdIsMarkedForDeletion AS DocInfoRecdIsMarkedForDeletion
FROM I_DocumentInfoRecordDocObjLnk AS ObjLink
INNER JOIN I_DocumentInfoRecordDetail AS Document ON /* join condition not captured in parsed metadata */
;