UFN_BBNC_EDUCATIONALHISTORYSTATUS_GETID

Returns the EDUCATIONAL HISTORY STATUS ID for the specified description for Blackbaud Internet Solutions.

Return

Return Type
uniqueidentifier

Parameters

Parameter Parameter Type Mode Description
@DESCRIPTION nvarchar(100) IN

Definition

Copy


            CREATE function dbo.UFN_BBNC_EDUCATIONALHISTORYSTATUS_GETID(@DESCRIPTION nvarchar(100))
            returns uniqueidentifier
            as begin
                return (
                    select ID
                    from dbo.EDUCATIONALHISTORYSTATUS
                    where DESCRIPTION = @DESCRIPTION
                    )
            end