Lending Request Check Out

Lending Request Check Out

This event hook is triggered when an item is processed from the Lending Update 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 Lending Processing ribbon of the request form.

Event Hook Name: LendingRequestCheckOut

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("LendingRequestCheckOut", "CheckedInHandler"); end function CheckedInHandler(transactionProcessedEventArgs) ExecuteCommand("AddNote", { transactionProcessedEventArgs.TransactionNumber, "Sample Note" }); end