Document Delivery Request Check Out
This event hook is triggered when an item is processed from the Document Delivery Stacks Searching form using the Mark Found or Mark Found Scan Now buttons. This will also be triggered if the request is processed via the Mark Found or Mark Found Scan Now buttons on the Document Delivery Processing ribbon of the request form.
Event Hook Name: DocumentDeliveryRequestCheckOut
Input Parameters
TransactionNumber | The transaction number that was processed. |
|---|---|
RequestType | The request type of the processed transaction. |
Example
The following is an example of the syntax used to register for the Lending Request Check Out event hook and has a sample handler to add a note to the processed transaction.
function Init()
RegisterSystemEventHandler("DocumentDeliveryRequestCheckOut",
"DocDelCheckOutHandler");
end
function DocDelCheckOutHandler(transactionProcessedEventArgs)
ExecuteCommand("AddNote", { transactionProcessedEventArgs.TransactionNumber,
"Sample Note" });
end