Skip to content

Document Interaction Events

This article describes the events provided by DMS that are related to the document interaction.

Publisher

Codeunit 5492908 "SIM_DMS Event Publisher"

Document Interaction Events

SIMDMS Datagrid Latest Version Interaction

AL
1
2
3
4
[IntegrationEvent(false, false)]
procedure OnBeforePerformDocumentInteractionFunctionInDatagrid(ParamFunctionNameText: Text; TempParamRecordSIMDMSDocumentEntry: Record "SIM_DMS Document Entry" temporary)
begin
end;
AL
1
2
3
4
[IntegrationEvent(false, false)]
procedure OnAfterPerformDocumentInteractionFunctionInDatagrid(ParamFunctionNameText: Text; TempParamRecordSIMDMSDocumentEntry: Record "SIM_DMS Document Entry" temporary)
begin
end;

Raised

This event triggers when interacting with a document in the DMS Datagrid before and after the interaction was performed.

Parameter

Name Type Description
ParamFunctionNameText Text Describes the Type of Action that was Performed for the Document
TempParamRecordSIMDMSDocumentEntry Record "SIM_DMS Document Entry" temporary Includes the All Documents where the Interaction should be performed

SIMDMS Datagrid Version Interaction

AL
1
2
3
4
[IntegrationEvent(false, false)]
procedure OnBeforePerformDocumentVersionInteractionFunctionInDatagrid(ParamFunctionNameText: Text; ParamRecordSIMDMSDocumentEntryVersion: Record "SIM_DMS Document Entry Version")
begin
end;
AL
1
2
3
4
[IntegrationEvent(false, false)]
procedure OnAfterPerformDocumentVersionInteractionFunctionInDatagrid(ParamFunctionNameText: Text; ParamRecordSIMDMSDocumentEntryVersion: Record "SIM_DMS Document Entry Version")
begin
end;

Raised

This event triggers when interacting with a document version in the DMS Datagrid before and after the interaction was performed.

Parameter

Name Type Description
ParamFunctionNameText Text Describes the Type of Action that was Performed for the Document
ParamRecordSIMDMSDocumentEntryVersion Record "SIM_DMS Document Entry Version" Includes Document Version where the Interaction should be performed

Document Entry Interaction

AL
1
2
3
4
[IntegrationEvent(false, false)]
procedure OnBeforePerformDocumentInteractionFunctionInDocumentEntries(ParamFunctionNameText: Text; TempParamRecordSIMDMSDocumentEntry: Record "SIM_DMS Document Entry" temporary)
begin
end;
AL
1
2
3
4
[IntegrationEvent(false, false)]
procedure OnAfterPerformDocumentInteractionFunctionInDocumentEntries(ParamFunctionNameText: Text; TempParamRecordSIMDMSDocumentEntry: Record "SIM_DMS Document Entry" temporary)
begin
end;

Raised

This event triggers when interacting with a document in the DMS Document Entries before and after the interaction was performed.

Parameter

Name Type Description
ParamFunctionNameText Text Describes the Type of Action that was Performed for the Document
TempParamRecordSIMDMSDocumentEntry Record "SIM_DMS Document Entry" temporary Includes Documents where the Interaction should be performed