Reciprocating Relationship Notes
Comments
-
I'm not aware of any way to reciprocate notes. It's just the relationship type info.1
-
I have a query which pulls out all relationships that don't have the same note on both records, then I take the note from one record and the import ID from the other record, and re-import.4
-
Thanks, JoAnne, appreciate the response. Hopefully, this will conversation will generate a workaround for both of us :-)0
-
Thank you Alan, I will check this workaround out. Would it be possible for you to share the criteria and output fields you have set up? We all know how fun queries can be in setting up :-) Key fields would be great I can play with personalizing.2
-
Alan French , what a wonderful idea for bulk copying Notes between records. Am going to mentally file this idea away for the future.1
-
Faith Murray:
Alan French , what a wonderful idea for bulk copying Notes between records. Am going to mentally file this idea away for the future.Ditto! Alan French, I love how you think outside the box.
0 -
Thank you Faith and Heather! ?
Trevor Snider yes I'm happy to share my query. It's actually something I run in SQL Server so if you're hosted then you might have to do it slightly differently - I haven't found a way within RE to compare one notepad with another. The query's not very pretty but it does the job - the 'replace' functions are to do with stripping out the line breaks in the notepads as I think they were causing me problems in my CSV when reimporting. My SQL skills are pretty basic so there may well be a better way of handling that though! Here it is:
use raisersedge7
select cr2.import_ID as ORImpID, replace(replace(cast(cr.notes as varchar(8000)),char(10),','),char(13),'') as ORNotes from dbo.CONSTIT_RELATIONSHIPS as cr
inner join dbo.CONSTIT_RELATIONSHIPS as cr2
on cr.ID = cr2.RECIPROCAL_ID
where cr.RECIPROCAL_ID is not null and cr.notes is not null and cr2.notes is null0 -
A slight clarification: I said in my first post that the query identifies records that don't have the same note - the code in my previous post actually finds relationships where one record has a note and the other one is blank. I also have a slightly different version of the query which picks up relationships that have notes on both records, but the notes are different. Replace the Where clause on the last line with:
where cr.RECIPROCAL_ID is not null and cr.notes is not null and cr2.notes not like cr.notes
(you may also want to add extra fields in the Select clause for this one, as it's probably not a straightforward case of "export from one record and import onto the other" like it is when one relationship has no note at all)1
Categories
- All Categories
- 6 Blackbaud Community Help
- 213 bbcon®
- 1.4K Blackbaud Altru®
- 400 Blackbaud Award Management™ and Blackbaud Stewardship Management™
- 1.1K Blackbaud CRM™ and Blackbaud Internet Solutions™
- 15 donorCentrics®
- 360 Blackbaud eTapestry®
- 2.6K Blackbaud Financial Edge NXT®
- 655 Blackbaud Grantmaking™
- 576 Blackbaud Education Management Solutions for Higher Education
- 3.2K Blackbaud Education Management Solutions for K-12 Schools
- 939 Blackbaud Luminate Online® and Blackbaud TeamRaiser®
- 84 JustGiving® from Blackbaud®
- 6.6K Blackbaud Raiser's Edge NXT®
- 3.7K SKY Developer
- 248 ResearchPoint™
- 119 Blackbaud Tuition Management™
- 165 Organizational Best Practices
- 241 Member Lounge (Just for Fun)
- 34 Blackbaud Community Challenges
- 34 PowerUp Challenges
- 3 (Open) PowerUp Challenge: Chat for Blackbaud AI
- 3 (Closed) PowerUp Challenge: Data Health
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Product Update Briefing
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Standard Reports+
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Email Marketing
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Gift Management
- 4 (Closed) Raiser's Edge NXT PowerUp Challenge: Event Management
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Home Page
- 4 (Closed) Raiser's Edge NXT PowerUp Challenge: Standard Reports
- 4 (Closed) Raiser's Edge NXT PowerUp Challenge: Query
- 790 Community News
- 2.9K Jobs Board
- 53 Blackbaud SKY® Reporting Announcements
- 47 Blackbaud CRM Higher Ed Product Advisory Group (HE PAG)
- 19 Blackbaud CRM Product Advisory Group (BBCRM PAG)


