UFN_RECURRINGGIFTAMENDMENT_PREVIOUSPAYMENTMETHODCODE_GETDESCRIPTION
Return
Return Type |
---|
nvarchar(27) |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | tinyint | IN |
Definition
Copy
/*
Generated by Blackbaud AppFx Platform
Date: 5/3/2024 2:16:45 PM
Assembly Version: Blackbaud.AppFx.Platform.SqlClr, Version=4.0.3700.0, Culture=neutral, PublicKeyToken=null
Copyright Blackbaud
*/
CREATE FUNCTION dbo.UFN_RECURRINGGIFTAMENDMENT_PREVIOUSPAYMENTMETHODCODE_GETDESCRIPTION(@ID tinyint)
RETURNS nvarchar(27) WITH EXECUTE AS CALLER
AS
begin
return case @ID
when 0 then 'Cash'
when 1 then 'Check'
when 2 then 'Credit card - automatic'
when 3 then 'Direct debit - automatic'
when 9 then 'None'
when 10 then 'Other'
when 11 then 'Standing order'
when 98 then 'Credit card - last 4 digits'
when 99 then 'Not applicable'
when 101 then 'PayPal'
when 102 then 'Venmo'
end
end