Skip to content

Synchronization Events in Document Central

This article describes the events provided by Document Central related to the Document Entry Synchronization process.

Publisher

Codeunit 5492908 "SIM_DMS Event Publisher"

Synchronization Events

OnAfterListDocumentEntrySynchronizationSuccess

1
2
3
4
[IntegrationEvent(false, false)]
procedure OnAfterListDocumentEntrySynchronizationSuccess(var ParamRecordSIMDMSDocEntrySyncTable: Record "SIM_DMS Doc Entry Sync Table"; var ParamIsHandledBoolean: Boolean)
begin
end;

SIM_DMS Doc Entry Sync Table

During document entry synchronization with an Azure Blob Storage repository, the data is first stored in a separate copy table before it is written to the main document entry table. This table is the SIM_DMS Doc Entry Sync Table.

Raised

This event triggers after the document entry synchronization for a document library has been completed successfully. It allows subscribers to take over the cleanup of synchronization support tables. If ParamIsHandledBoolean is set to true, the default cleanup logic (deletion of synchronization support tables) is skipped.

Important

This Event is only Raised when using an Azure Blob Storage Repository.

Parameter

Name Type Description
ParamRecordSIMDMSDocEntrySyncTable Record "SIM_DMS Doc Entry Sync Table" The document entry synchronization table record, filtered to the current repository, list, and subsite.
ParamIsHandledBoolean Boolean Set to true to indicate that the cleanup has been handled by the subscriber. If true, the default deletion of synchronization support tables is skipped.