Search for Transactions

Find Transactions which match some or all of the following criteria:

Fill in parameters you wish to search on. The query tool will attempt to find transactions which match ALL of the parameters that are not left blank. Thus the more parameters you enter, the narrower the search since all conditions are ANDed together.
Transaction Date (mm/dd/yyyy) Status
/ / // Dynamically construct a list of statuses from // the STATUSTYPE table in the database cursor = database.cursor("select * from LP_STATUSTYPE where (statustype != 'SETTLING') AND (statustype != 'SETTLED')"); DynSelect("status", 1, false, "", "", cursor, true); cursor.close();
Card Type Amount
// Dynamically construct a list of approved card types from // the CARDTYPE table in the database cursor = database.cursor("select * from LP_CARDTYPE"); DynSelect("cardtype", 1, false, "", "", cursor, true); cursor.close(); $

-OR-


Find a particular transaction:

If you know the unique id for a transaction in the "lpPurchase" table, you may use the query field below to list information on that transaction.
Transaction ID:


Back to Administration