UFN_BBNC_GETAPPEALIDFROMMAPID
Returns the appeal ID for the specified integer mapping ID for Blackbaud Internet Solutions.
Return
Return Type |
---|
uniqueidentifier |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | int | IN |
Definition
Copy
CREATE function dbo.UFN_BBNC_GETAPPEALIDFROMMAPID
(
@ID int
)
returns uniqueidentifier
as
begin
return
(
select top 1
APPEALID
from
dbo.BBNCAPPEALIDMAP
where
ID = @ID
)
end