Research Notes

I'm wondering if anyone knows/has designed a report that prints out Research/Notes by Note Type?

 

 

Parents
  • The Full Bio report does this already. Just select only “Notes” from the Sections parameter.

     

    From: Tessitura Development Forum [mailto:forums-development@tessituranetwork.com] On Behalf Of Melissa Harty
    Sent: Friday, June 04, 2010 12:46 AM
    To: Ryan Creps
    Subject: [Tessitura Development Forum] Research Notes

     

    I'm wondering if anyone knows/has designed a report that prints out Research/Notes by Note Type?

     

     




    This message was sent automatically to you by www.tessituranetwork.com because you subscribed to the Tessitura Development Forum. You may reply to this message to post to the Development 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!

  • Ryan, thanks fo the info. I got the notes to print by getting into the system tables like you suggested. I am trying though to use the Full Bio report to just print a specific note type only. Is that possible or is there a different "canned" report that we could use for that purpose?

    Thanks!

  • Hey George,

    Not sure if this is helpful or not. We're working on a massive clean up of notes imported from our old ticketing system. In order to isolate these notes I've just been using pulling the info from SQL Server Management Studio using this script:

    select n.customer_no,e.notes from TX_CUST_NOTES n
    join TX_CUST_NOTES_EXT e on e.cust_notes_no=n.cust_notes_no
    where n.note_type=<enter note type number here>

    This gives you every customer and the note details for a specified note type.
    But if you're looking for a specific list of people you could easily add a list element in there:

    select n.customer_no,e.notes from TX_CUST_NOTES n
    join TX_CUST_NOTES_EXT e on e.cust_notes_no=n.cust_notes_no
    join T_LIST_CONTENTS l on l.customer_no=n.customer_no
    where n.note_type=<enter note type number here>
    and l.list_no=<enter list number here>

    I don't know of a report that will run for a specific type of note so this is the work around I've found.

    Hope it helps!

Reply
  • Hey George,

    Not sure if this is helpful or not. We're working on a massive clean up of notes imported from our old ticketing system. In order to isolate these notes I've just been using pulling the info from SQL Server Management Studio using this script:

    select n.customer_no,e.notes from TX_CUST_NOTES n
    join TX_CUST_NOTES_EXT e on e.cust_notes_no=n.cust_notes_no
    where n.note_type=<enter note type number here>

    This gives you every customer and the note details for a specified note type.
    But if you're looking for a specific list of people you could easily add a list element in there:

    select n.customer_no,e.notes from TX_CUST_NOTES n
    join TX_CUST_NOTES_EXT e on e.cust_notes_no=n.cust_notes_no
    join T_LIST_CONTENTS l on l.customer_no=n.customer_no
    where n.note_type=<enter note type number here>
    and l.list_no=<enter list number here>

    I don't know of a report that will run for a specific type of note so this is the work around I've found.

    Hope it helps!

Children
No Data