Lending Request Check In

Lending Request Check In

This event hook is triggered when an item is processed from the Lending Returns batch processing form.

Event Hook Name: LendingRequestCheckIn

Input Parameters

TransactionNumberThe transaction number that was processed.
RequestTypeThe request type of the processed transaction.

Example

The following is an example of the syntax used to register for the Lending Request Check In event hook and has a sample handler to route the processed transaction to a special queue.

function Init()
RegisterSystemEventHandler("LendingRequestCheckIn", "CheckedInHandler");
end

function CheckedInHandler(transactionProcessedEventArgs)
ExecuteCommand("Route", { transactionProcessedEventArgs.TransactionNumber, 
"Awaiting Special Return Handling" });
end