UFN_RECURRINGGIFT_GETNEXTINSTALLMENTIGNOREPAYMENT
Returns the ID of the next installment due for the specified recurring gift, ignoring the given payment.
Return
Return Type |
---|
uniqueidentifier |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@REVENUEID | uniqueidentifier | IN | |
@PAYMENTID | uniqueidentifier | IN | |
@ASOFDATE | date | IN |
Definition
Copy
CREATE function dbo.UFN_RECURRINGGIFT_GETNEXTINSTALLMENTIGNOREPAYMENT(
@REVENUEID uniqueidentifier,
@PAYMENTID uniqueidentifier,
@ASOFDATE date = null
)
returns uniqueidentifier
as begin
return dbo.UFN_RECURRINGGIFT_GETNEXTINSTALLMENTIGNOREPAYMENT_2(@REVENUEID,@PAYMENTID,@ASOFDATE,null);
end