Hello,
My apologies if this issue has been addressed, I wasn't able to find a similar post using keyword searches.
We would love to start running reports based on Membership Details, but the Amount column is not reliable. Often we have to deactivate memberships that were incorrectly set up and reenter them, in which case the Member Amount of their reentered membership is $0. Also, for reasons that we can't explain, the Membership window does not always show up in the contribution editor: where is usually is there's a blank blue square.
Has anyone had a simliar problem? How can these memberships be fixed so that they represent the correct amount pledged for their member level? Can this be done without updating them directly in the tables. And if we did do that, would other areas be negatively affected?
Any ideas would be greatly appreciated. Thank you!
Kelly
I don't usual use the amount columns in the membership record, but calc them on the fly from the contributions linked to the membership. For example:
select m.customer_no, m.cust_memb_no, sum(cont_amt), sum(recd_amt)from tx_cust_membership mjoin tx_cont_memb cm on m.cust_memb_no = cm.cust_memb_nojoin t_contribution c on cm.cont_ref_no = c.ref_nogroup by m.customer_no, m.cust_memb_no
This does require that all your memberships are 'backed up' by contributions.
Hope this helps,
David
This is really helpful David, thank you!
- K
-----Original Message----- From: Tessitura Technical Forum [mailto:forums-technical@tessituranetwork.com] On Behalf Of David Woodall Sent: Tuesday, September 22, 2009 3:12 PM To: Kelly Haydon Subject: Re: [Tessitura Technical Forum] Membership Amount column not reliable I don't usual use the amount columns in the membership record, but calc them on the fly from the contributions linked to the membership. For example: select m.customer_no, m.cust_memb_no, sum(cont_amt), sum(recd_amt) from tx_cust_membership m join tx_cont_memb cm on m.cust_memb_no = cm.cust_memb_no join t_contribution c on cm.cont_ref_no = c.ref_no group by m.customer_no, m.cust_memb_no This does require that all your memberships are 'backed up' by contributions. Hope this helps, David From: Kelly Haydon <bounce-kellyhaydon1641@tessituranetwork.com> Sent: 9/22/2009 1:42:06 PM Hello, My apologies if this issue has been addressed, I wasn't able to find a similar post using keyword searches. We would love to start running reports based on Membership Details, but the Amount column is not reliable. Often we have to deactivate memberships that were incorrectly set up and reenter them, in which case the Member Amount of their reentered membership is $0. Also, for reasons that we can't explain, the Membership window does not always show up in the contribution editor: where is usually is there's a blank blue square. Has anyone had a simliar problem? How can these memberships be fixed so that they represent the correct amount pledged for their member level? Can this be done without updating them directly in the tables. And if we did do that, would other areas be negatively affected? Any ideas would be greatly appreciated. Thank you! Kelly This message was sent automatically to you by www.tessituranetwork.com because you subscribed to the Tessitura Technical Forum. You may reply to this message to post to the Technical 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!
select m.customer_no, m.cust_memb_no, sum(cont_amt), sum(recd_amt) from tx_cust_membership m join tx_cont_memb cm on m.cust_memb_no = cm.cust_memb_no join t_contribution c on cm.cont_ref_no = c.ref_no group by m.customer_no, m.cust_memb_no
From: Kelly Haydon <bounce-kellyhaydon1641@tessituranetwork.com> Sent: 9/22/2009 1:42:06 PM
This message was sent automatically to you by www.tessituranetwork.com because you subscribed to the Tessitura Technical Forum. You may reply to this message to post to the Technical 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!