I am going to start using Order Type Details to capture e-mail address' at our Admissions Booth. We are a General Admission museum, so we do not associate an order with a client. There is no canned report to get get this information. I know it is being stored in the Orders table in SQL. Does anyone know how I can pull this information out from the backend? I would like to pull by date and the specific Order Type Detail that I create. Any help would be greatly appreciated. Thanks.
John
Hey John,
If you are capturing it on the transaction level (as opposed to the ticket level with different sets of details based on price type), this query should get you started:
select * from Orders where ordOpenDate between 'date1here' and 'date2here'
Nicholai