Notices



Reply
 
LinkBack Thread Tools Display Modes

Old 02-05-2008, 05:06 PM   #1 (permalink)
Junior Member

RachelDixon's Avatar

Join Date: Feb 2008
Location: Colorado Springs
Posts: 28
Rep Power: 0 RachelDixon is on a distinguished road

Blackbaud Products
- Raiser's Edge (RE)
- NetCommunity (BBNC)
- API/VBA

Acessing Installment Schedule

I am very new to using the API with vb.net. I am trying to access pledge installment schedules in my program.

I need to be able to access the installment schedule for a set of individuals in my query, so that I can calculate the total funds for a specified period of time.

Does anyone have any experience with doing this sort of thing. I would greatly appreciate all the help I can get
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote

Old 02-20-2008, 12:34 AM   #2 (permalink)
Junior Member

Join Date: Feb 2008
Posts: 2
Rep Power: 0 davidd70 is on a distinguished road

Blackbaud Products
- Raiser's Edge (RE)
- API/VBA

vb.net example

Dim oGift AsNew CGift
Dim oPlegde AsNew CGifts
Dim oFilter As CGiftsFilter
' find pledge
Dim RE7 As REAPI = New REAPI()
If RE7.Init("WRE11111", "supervisor", "admin", ) Then
Dim goREServices AsNew REServices
goREServices.Init(RE7.SessionContext)
oPlegde.Init(RE7.SessionContext, TopViewFilter_Gift.tvf_Gift_UseFilterObject)
oFilter = oPlegde.FilterObject
oFilter.ConstitRecordID = 596
oFilter.UsePledgeBalance =
True
oFilter.AppealIDs.Add(13, CStr(13))
oFilter.GiftTypes.Add(8,
"Pledge")
oFilter.DateRange = EBBDateTypes.bbDATE_MONTHTODATE
If oPlegde.Count > 0 Then
ForEach oGift In oPlegde
MsgBox(oGift.Fields(EGiftFields.GIFT_fld_Amount))
Next
EndIf
EndIf
'cycle through installments
Dim oInstallment As CInstallment
ForEach oInstallment In oGift.Installments
MsgBox(oInstallment.Fields(EInstallmentFields.INSTALLMENT_fld_Amount))
MsgBox(oInstallment.Fields(EInstallmentFields.INSTALLMENT_fld_Date))
Next
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Tags
installment schedule


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


Cheap Gas - Debt Consolidation - Mobile Phone - Arizona Landscaping
All times are GMT -6. The time now is 01:58 AM.

Miscellaneous


Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Integrated by BBpixel Team 2008 :: jvbPlugin R1012.364.1

SEO by vBSEO 3.2.0 Copyright 2008 Blackbaud User SocietyAd Management by RedTyger
Inactive Reminders By Icora Web Design

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64