Hello,
as the error message says the "IN comparsion" is not supported, at least for scalar variables. You have to transform your coding "... :transaction_type IN ('A','U') ..." to something like "... ( :transaction_type = 'A' or :transaction_type = 'U' ) ...".
Regards,
Florian