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