Question
Is it possible to prevent batch/document deletion on the Scanning station?
Answer
It is possible with the scripted event "On batch, document or page deleting" applied to a custom batch type:
https://help.abbyy.com/en-us/flexicapture/12/scanning_station/events/
The following script sample could be used.
Workspace.Result.Succeeded = false;
Workspace.Result.ErrorMessage = "Prohibited";
This script should be adjusted according to the process requirements.
Comments
0 comments
Please sign in to leave a comment.