Note: Once a gift's post status has been set to Posted the post status cannot be changed
Public Sub PostGift()
Dim oGift As CGift
Dim oGiftID As Long
oGiftID = 1842 'System record id for the gift that needs to be posted
Set oGift = New CGift
oGift.Init REApplication.SessionContext
oGift.Load oGiftID
If oGift.Fields(GIFT_fld_Post_Status) <> "Posted" Then
With oGift
.Fields(GIFT_fld_Post_Status) = "Posted"
.Fields(GIFT_fld_Post_Date) = Date
.Save
End With
Else
MsgBox "Can't change the post status on a gift that is Posted."
End If
oGift.CloseDown
Set oGift = Nothing
End Sub
Disclaimer: We provide programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes you are familiar with Microsoft Visual Basic and the tools used to create and debug procedures. Our Customer Support can help explain the functionality of a particular procedure, but we will not modify, or assist you with modifying, these examples to provide additional functionality. If you are interested in learning more about the VBA and API modules, contact your account manager.