Querying BBMS processing fees within CRM
Hello,
Has anyone found a way to pull BBMS processing fees from with CRM? either by a query, Infinity SDK, or within DB itself? I'm assisting a customer who would like to charge the fee to the department that received the revenue at the time of the payment/gift/revenue transaction.
If not, ideas on how you accomplish getting this information to your Finance department?
Kind Regards,
Heather
Comments
-
@Heather Templeton
Wake Forest would also like this functionality to facilitate auto-reconciliation in Workday finance. BBMS deposits net of fees necessitate us sending the fee data to Workday. This is currently a manual process due to the limitation you describe.1 -
@Heather Templeton The fees are are only pulled into the database when you run the reconciliation process.
You might find this query useful. On average, our transactions have fees about 7 days after the gift is added.
-- select avg(age) FROM (
select
ft.CALCULATEDUSERDEFINEDID as REVENUEID,
fee.dateadded,
fee.datechanged,
datediff(day, fee.dateadded,fee.datechanged) as AGE,
fee.fee,
rpm.AMOUNT,
credittypecode.DESCRIPTION as CARDTYPE,
case when rpm.amount > 0 then CAST(fee.fee / rpm.amount * 100 as decimal(18,2))
else null end as PCT
from
CREDITCARDPAYMENTMETHODDETAIL fee
inner join CREDITTYPECODE on fee.CREDITTYPECODEID=CREDITTYPECODE.ID
inner join REVENUEPAYMENTMETHOD rpm on fee.id=rpm.id
inner join FINANCIALTRANSACTION ft on rpm.REVENUEID=ft.id
where
fee.fee > 0.00
and ft.DATEADDED > '2024-07-01'--) X
0 -
@Wesley Waters the reconciliation process discussed ab does populate the fees so you can pull it out via a customization
0 -
@Rick Root do you have any issues where two revenue transactions are attached to only one BBMS transaction and therefore the fee is only one one revenue transaction?
0 -
@Heather Templeton
Thank you, I am aware of that. The recon process comes from the disbursement and BBMS fastest turn time is 3 days post donation. We are required to feed to finance day after, meaning we need the fee data no later than the day after the donation has been made.1 -
@Rick Root do you have any issues where two revenue transactions are attached to only one BBMS transaction and therefore the fee is only one one revenue transaction?
not that I've ever seen.
1
Categories
- All Categories
- 6 Blackbaud Community Help
- 208 bbcon®
- 1.4K Blackbaud Altru®
- 394 Blackbaud Award Management™ and Blackbaud Stewardship Management™
- 1.1K Blackbaud CRM™ and Blackbaud Internet Solutions™
- 15 donorCentrics®
- 358 Blackbaud eTapestry®
- 2.5K Blackbaud Financial Edge NXT®
- 646 Blackbaud Grantmaking™
- 562 Blackbaud Education Management Solutions for Higher Education
- 3.2K Blackbaud Education Management Solutions for K-12 Schools
- 934 Blackbaud Luminate Online® and Blackbaud TeamRaiser®
- 84 JustGiving® from Blackbaud®
- 6.4K Blackbaud Raiser's Edge NXT®
- 3.6K SKY Developer
- 242 ResearchPoint™
- 118 Blackbaud Tuition Management™
- 165 Organizational Best Practices
- 238 The Tap (Just for Fun)
- 33 Blackbaud Community Challenges
- 28 PowerUp Challenges
- 3 (Open) 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
- 779 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)

