Hello all,
I have looked in the forums and cannot find what I'm looking for and hopefully someone can help.
We're looking for a report for scanned tickets for when they were scanned and pricetypes.
If anyone has as ideas or reports on how to find this out rather than going through each order individually that would be great.
Thanks
Meagan Keam
EPCOR Centre for the Performing Arts
Calgary, AB
The Attendance by Performance report can group by Price Type. Select Price Type from the Group By parameter. You can optionally show constituent level detail by choosing Yes for Show Constituent Detail.
From: Tessitura Ticketing Forum [mailto:forums-ticketing@tessituranetwork.com] On Behalf Of Meagan KeamSent: Thursday, September 30, 2010 2:21 PMTo: Ryan CrepsSubject: [Tessitura Ticketing Forum] N-Scan Attendance reports
This message was sent automatically to you by www.tessituranetwork.com because you subscribed to the Tessitura Ticketing Forum. You may reply to this message to post to the Ticketing forum or visit the site to search, read and post to the forums. In the interest of keeping the forum posts from becoming cluttered, we encourage you to delete previous message text from your reply before sending. Thank you!
There is no standard report that will tell you the date and time when a ticket was scanned.
There is a standard report that will break out attendance figures by price type, though. See the Attendance by Performance report.
Kevin Sheehan
Documentation & Learning Resources Specialist
Tessitura Network
1 888 643 5778 ext 329 Office
ksheehan@tessituranetwork.com
Thanks Guys
I totally forgot about that report and that will do great for the pricetypes but we really more need the time of attendance. We're trying to track when everyone typically goes into the theatre and whether they're the comps or paid tickets.
While there isn't a canned report that will give you the exact time of attendance ticket by ticket, there is a table, LT_NSCAN_ATTENDANCE, that records every scan, in and out, successful or otherwise, of every ticket. You could write a report against that table (cross-referencing it to T_SUB_LINEITEM and T_ORDER as needed for more detail) to know at what time which tickets were scanned for what performance.
Hi Meagan,
Good day.
We are reviewing our attendance report too.
but at last I found out, it could be a problem, as I don't know what is the right records in the Tessitura.
In Tessitura, only one stored procedure is doing insert/update attendance info into database.
It is LRP_NSCAN_TICKET_INFO. (line421-498 have the detail of insert/update)
Simple enough.
The problem is this stored procedure insert/update three different tables.
so we have three copies of data can be used.
they are
1, t_order_seat_hist (event_code=22)
2, Tx_perf_seat (every seat_status is 13, and available_ind=0 will show green on the map)
3, LT_Nscan_attendance (ticket_ok='Y')
70% of our two-years records match up with each other in these three tables.
I believe your system can have the same problem.
So before you create some reports, I think maybe you need to do this job too. check out the records.
Make sure data is clean.
for the report itself, it is very simple, you just need to link LT_Nscan_attendance to t_sub_lineitem with sli_no where ticket_ok='y' ( if you regard the LT_Nscan_attendance is the right table.)
BTW, canned report is using t_order_seat_hist table. on seast map, it is using tx_perf_seat table.
SELECT TOP (100) a.ticket_no, a.customer_no, a.perf_no, a.pkg_no, a.seat_no, a.entrance, a.sli_no, a.user_id, a.status, a.error_text, a.update_dt, a.online_mode, a.update_mode, a.ticket_ok, a.ticket_msg, a.ticket_updated, a.exit_mode, a.exit_logged, a.exit_dt, a.scan_str, a.perf_str, a.user_entrance, a.device_name, b.li_seq_no, b.unseatable_code, b.fee_amt, b.fee_parent_sli_no, b.due_amt, b.paid_amt, b.price_type, b.cancel_ind, b.sr_ind, b.created_by, b.create_dt, b.create_loc, b.last_updated_by, b.last_update_dt, b.comp_code, b.sli_status, b.zone_no, b.sli_status_code, b.batch_no, b.mir_lock, b.ret_parent_sli_no, b.order_noFROM LT_NSCAN_ATTENDANCE AS a LEFT OUTER JOINT_SUB_LINEITEM AS b ON a.sli_no = b.sli_noWHERE (a.ticket_ok = 'y')
have fun.
Ben
Thanks. I'm going to pass that one along to our database guy.
Meagan