Does anyone know if there is a way to link a constituent’s former address to a particular date? I’m trying to find historical detail on promotions and addresses.
I created a list with a region and a promotion date range, and then ran this through an output set. The detail I get is all based on current address though.
I’m sure this isn’t a common question, but is it possible?
Thanks,
Mark
As you may know, inside the details for each postal address are "Start Date" and "End Date." As I understand it, when you run "Execute an Output Set," if you supply a value for the "Mailing Date" parameter it's supposed to return the address that is/was active on that date, or the primary address if there's no matching address.
However, if your organization is like mine (and everybody else I've talked to about this,) you probably haven't been filling in Start Date and End Date consistently, (if ever!)
Maybe there's an opportunity here for your SQL guru to dig into the audit data as Tom suggests. Perhaps one could script it so that all of your currently inactivated addresses had their start and end dates filled in from the audit data. And then maybe you could then use insert and update triggers to automatically fill in start and end dates as addresses are created and inactivated moving forward?
I haven't tried anything like this myself, but I also would love to hear if you end up with a good solution here.
Mark,
This is a great question. And this is a fairly common type of question around here. We call these “As Of” questions. Things like:
· What was the membership level “as of” the order date?
· What was the address “as of” the contribution?
· What was the board status “as of” the endowment contribution?
· How many tickets had someone purchased in the prior 12 months “as of” a particular order.
· What was the hold status on a seat “as of” a particular date in the past, or a particular number of days before the performance.
The data exists in the system to answer or make a reasonable guess about many of these questions. And we have done a few experiments on these types of things in the past. For example we have solved in several ways the Membership Level question “as of” the order or contribution dates. One way is to do a correlated sub query in your SQL.
However, we have not done the address as of order date for example. This would take looking at the address records as well as the audit history on accounts to make an educated deduction as to the correct value.
If anyone out there has solved this or similar issues. I’d love to have a conversation and compare notes.
--Tom
…
718.724.8135
tbrown@BAM.org
From: Tessitura Development Forum [mailto:forums-development@tessituranetwork.com] On Behalf Of Mark FreySent: Thursday, April 30, 2015 4:27 PMTo: Thomas BrownSubject: [Tessitura Development Forum] historical addresses date-stamped?
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!
Hey Y'all,
Thanks for all the comments, suggestions, definitions, challenges, etc.. It's all good information and I appreciate it very much. I don't think we'll be able to do what we want to do at this time, but there is lots to think about for the future.