Performance Custom Tab for Concessions Sales

Hello!!

I was wondering if anyone has used a performance custom tab to track concessions sales from that performance to be included in budgets/reporting/analytics? I am not at all familiar with creating datawindows in Infomaker and would love to see if someone has already done something like this before reaching out for Consulting help.

Many thanks!!

Parents
  • Hi Dan.

    I've not used a custom tab for Performances, but I've done quite a few for Constituents using SSRS (I'm staying well away from Infomaker!). I've just done a small test of showing the Perf Code of the selected Performance on a Custom tab (which worked) so let me know if I can be of any help...

    Steve

  • Hi Steve, 

    Thanks for offering to help. I am not familiar with SSRS either, but it may work.  I believe I just need a simple datawindow created to house the concessions sales total.  It would only require 1 editable field labeled "concessions sales".  Does this make sense? 

    If it's not too much trouble, I am also struggling with the proper SQL code to use for a flex header element that will display an icon if the constituent's emarket restriction is set to "verify email".  It seems like it shouldn't be too difficult, but again I am a novice with SQL.

    Thank you!!

    Dan

  • Dan,

    A few questions:

    • Who would be entering the concession sales information and would they have access to Ticketing Setup, or just Season Manager?
    • Should data-entry be limited to a select group of Users?
    • Should viewing the data on-screen be restricted to a group of Users or be generally visible?

    Regarding the Flex Header code:

    SELECT '.' FROM T_CUSTOMER AS tcust WITH (NOLOCK) WHERE tcust.customer_no = @customer_no AND tcust.emarket_ind = 3

    Use the above as the SQL Code for a Flex Header Element in TR_FLEX_HEADER_ELEMENT, and add that element to the relevant Flex Header  record in TR_FLEX_HEADER, changing the value of "emarket_ind" to the value of "Verify Email" in your system (check TR_EMRKT_IND for the list of values). See the Tessitura Help system for more info on Flex Headers (under Constituent Navigator).

    Icons will be displayed if the SQL attached to their position returns data. See the Help System "Flex Header Recipe Book" for more info.

Reply
  • Dan,

    A few questions:

    • Who would be entering the concession sales information and would they have access to Ticketing Setup, or just Season Manager?
    • Should data-entry be limited to a select group of Users?
    • Should viewing the data on-screen be restricted to a group of Users or be generally visible?

    Regarding the Flex Header code:

    SELECT '.' FROM T_CUSTOMER AS tcust WITH (NOLOCK) WHERE tcust.customer_no = @customer_no AND tcust.emarket_ind = 3

    Use the above as the SQL Code for a Flex Header Element in TR_FLEX_HEADER_ELEMENT, and add that element to the relevant Flex Header  record in TR_FLEX_HEADER, changing the value of "emarket_ind" to the value of "Verify Email" in your system (check TR_EMRKT_IND for the list of values). See the Tessitura Help system for more info on Flex Headers (under Constituent Navigator).

    Icons will be displayed if the SQL attached to their position returns data. See the Help System "Flex Header Recipe Book" for more info.

Children