I_InboundDocumentEventTP

DDL: I_INBOUNDDOCUMENTEVENTTP Type: view_entity Package: S_APS_IIP_MODEL_NOTIFY

IIP Document Notification Event TP

I_InboundDocumentEventTP is a CDS View that provides data about "IIP Document Notification Event TP" in SAP S/4HANA. It reads from 1 data source (R_InboundDocumentEvent) and exposes 10 fields with key field InboundDocumentEventIdentifier. Part of development package S_APS_IIP_MODEL_NOTIFY.

Data Sources (1)

SourceAliasJoin Type
R_InboundDocumentEvent R_InboundDocumentEvent projection

Annotations (3)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label IIP Document Notification Event TP view
Metadata.ignorePropagatedAnnotations true view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY InboundDocumentEventIdentifier InboundDocumentEventIdentifier
InboundDocumentIdentifier InboundDocumentIdentifier Snapshot ID
InboundDocumentSchemaRegnID InboundDocumentSchemaRegnID
InboundDocumentStatus InboundDocumentStatus Status
InboundDocumentEventStatus InboundDocumentEventStatus Event Status
InbDocEvtProcgLtstExecNmbrVal InbDocEvtProcgLtstExecNmbrVal
InbDocEvtProcgRetryRmngValue InbDocEvtProcgRetryRmngValue
InboundDocEvtProcNotifyID InboundDocEvtProcNotifyID
CreatedAtDateTime CreatedAtDateTime Created On
LastChangeDateTime LastChangeDateTime Timestamp

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_InboundDocumentEventTP.
-- 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 I_InboundDocumentEventTP AS
SELECT
  InboundDocumentEventIdentifier,
  InboundDocumentIdentifier,
  InboundDocumentSchemaRegnID,
  InboundDocumentStatus,
  InboundDocumentEventStatus,
  InbDocEvtProcgLtstExecNmbrVal,
  InbDocEvtProcgRetryRmngValue,
  InboundDocEvtProcNotifyID,
  CreatedAtDateTime,
  LastChangeDateTime
FROM R_InboundDocumentEvent
;