Report Name: List of Pending Books Requested/Suggested for purchase Purpose: This will provide list of books which is suggested by various users and not yet approved. It contains information about suggester name, His ID, Status, Author, Title, Year, Publisher, ISBN, Quantity, Currency, Price, Total price and Budget head. Status: Complete tested on Koha 16.11.07 Note: You may replace 'ASKED' with Available, Ordered etc. status from last line (WHERE STATUS LIKE 'ASKED') of this query to get the report accordingly. SELECT bb.surname 'Suggested By', bb.cardnumber 'Member ID', r.STATUS, r.author 'Author', r.title 'Title', r.copyrightdate 'Year', r.publishercode 'Publisher', r.isbn 'ISBN', r.quantity 'Quantity',r.currency 'Currency', r.price 'Price', r.total 'Total Price', b.budget_code 'Department' FROM suggestions r LEFT JOIN aqbudgets b ON r.budgetid=b.budget_id LEFT JOIN borrowers bb ON r.suggestedby=bb.borrowernumber WHERE STATUS LIKE 'ASKED'