R_InboundDocumentEventLog

DDL: R_INBOUNDDOCUMENTEVENTLOG Type: view_entity

IIP Document Event Notification Proc Log

R_InboundDocumentEventLog is a CDS View that provides data about "IIP Document Event Notification Proc Log" in SAP S/4HANA. It reads from 1 data source (iip_doc_eventlog) and exposes 7 fields with key fields InboundDocumentEventIdentifier, InboundDocEvtProcgExecNmbrVal. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
iip_doc_eventlog iip_doc_eventlog from

Associations (1)

CardinalityTargetAliasCondition
[1] I_DocAIInbDocEvtExecStsTxt _EvtExecStsT $projection.InbDocEvtProcgExecStatusCode = _EvtExecStsT.InbDocEvtProcgExecStatusCode

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label IIP Document Event Notification Proc Log view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY InboundDocumentEventIdentifier doc_event_id
KEY InboundDocEvtProcgExecNmbrVal exec_number
InbDocEvtProcgExecStatusCode exec_status Exec Status
InbDocEventProcgDateTime timestamp UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
InbDocEvtProcgApplLogNmbr lognumber UUID
_event _event
_EvtExecStsT _EvtExecStsT

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 R_InboundDocumentEventLog.
-- 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 R_InboundDocumentEventLog AS
SELECT
  doc_event_id AS InboundDocumentEventIdentifier,
  exec_number AS InboundDocEvtProcgExecNmbrVal,
  exec_status AS InbDocEvtProcgExecStatusCode,
  timestamp AS InbDocEventProcgDateTime,
  lognumber AS InbDocEvtProcgApplLogNmbr
FROM iip_doc_eventlog
LEFT OUTER JOIN I_DocAIInbDocEvtExecStsTxt AS _EvtExecStsT ON InbDocEvtProcgExecStatusCode = _EvtExecStsT.InbDocEvtProcgExecStatusCode  -- association [1]
;