UFN_BBNC_DONATION_GETTRANID
Returns the Blackbaud Internet Solutions transaction id for the specified donation batch row.
Return
Return Type |
---|
int |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN |
Definition
Copy
CREATE function dbo.UFN_BBNC_DONATION_GETTRANID(@ID uniqueidentifier)
returns int
as begin
return (
select BBNCTRANID
from dbo.BATCHBBNCDONATION
where ID = @ID
)
end