Hello,
We are looking for a report in tessitura that will show us the price types and money sold for an entire run of a show. Essentially, the same report as the Performance Sales by PT Category report, but a report that totals all events together rather than breaking down the numbers for each individual event. Does anyone know of a report that works in this area, or have a custom report they would be willing to share?
Thanks!
I don't suppose you have Tstats, do you?
We don’t actually, we are planning to get it in the future but probably not for a year or so.
From: Tessitura Ticketing Forum [mailto:forums-ticketing@tessituranetwork.com] On Behalf Of Amanda Freeman Sent: Wednesday, May 26, 2010 1:52 PM To: Brendan Martin Subject: Re: [Tessitura Ticketing Forum] Need a sales report
From: Brendan Martin <bounce-brendanmartin3558@tessituranetwork.com> Sent: 5/26/2010 1:41:05 PM
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!
Hi Brendan,
Good day.
I have a quick script to create a table of sales-everything.
then what you need to do is picking up the items you want to have.
====
---pick up other info link to t_sub_lineitem tableSELECT TOP (1000) a.description, b.sli_no, b.fee_amt, b.due_amt, b.paid_amt, b.pkg_no, b.perf_no, b.sli_status, b.seat_no, b.create_dt, c.prod_season_no, b.batch_no, b.order_no, b.price_typeINTO [#LT_SUB_LINEITEM_NEW]FROM TR_PRICE_TYPE AS a INNER JOINT_SUB_LINEITEM AS b ON a.id = b.price_type INNER JOINT_PERF AS c ON b.perf_no = c.perf_no
--pick up other info link to t_sli_detail tableSELECT A.description AS PRICE_TYPE_DESCRIPTION, A.sli_no, A.fee_amt, A.pkg_no, A.perf_no, A.sli_status, A.seat_no, A.create_dt AS sub_lineitem_create_dt, A.prod_season_no, A.batch_no, A.order_no, A.price_type, B.detail_sli_no, B.pmap_no, B.due_amt, B.paid_amt, B.campaign_no, B.create_dt AS sli_Detail_create_dt, C.gl_hold_no, E.id AS SEASON_id, E.description AS SEASON_description, F.customer_no, F.order_dt, D.perf_status, C.price_categoryINTO [#LT_SLI_DETAIL_NEW]FROM [#LT_SUB_LINEITEM_NEW] AS A INNER JOINT_SLI_DETAIL AS B ON A.sli_no = B.sli_no INNER JOINT_PMAP AS C ON B.pmap_no = C.pmap_no INNER JOINT_PERF AS D ON A.perf_no = D.perf_no INNER JOINTR_SEASON AS E ON D.season = E.id INNER JOINT_ORDER AS F ON A.order_no = F.order_no
---count the items you are interested in.select * from #LT_SLI_DETAIL_NEW
drop table #LT_SUB_LINEITEM_NEWdrop table #LT_SLI_DETAIL_NEW
you can copy and paste into a sql script window to check out whether it has all the fields.
have fun
Ben