Skip to content

Document Creation Events

This article describes the events provided by DI related to the Document Creation processes.

Publisher

Codeunit 5673066 "SIM_DI Event Publisher"

Document Creation

OnBeforeInboundDocumentIsInserted

1
2
3
4
[IntegrationEvent(false, false)]
procedure OnBeforeInboundDocumentIsInserted(var ParamRecordSIMDIInboundDocument: Record "SIM_DI Inbound Document")
begin
end;

Raised

This event is triggered right before the Document Inbound is inserted into the table during the creation process.

Parameter

Name Type Description
ParamRecordSIMDIInboundDocument Record "SIM_DI Inbound Document" The Document That is inserted into the Inbound list.

OnAfterInboundDocumentIsInserted

1
2
3
4
[IntegrationEvent(false, false)]
procedure OnAfterInboundDocumentIsInserted(ParamRecordSIMDIInboundDocument: Record "SIM_DI Inbound Document")
begin
end;

Raised

This event is triggered right after the Document Inbound was inserted into the table during the creation process.

Parameter

Name Type Description
ParamRecordSIMDIInboundDocument Record "SIM_DI Inbound Document" The Document That is inserted into the Inbound list.