UFN_BATCHCONSTITUENTUPDATEPHONES_ROWORIGINCODE_GETDESCRIPTION

Return

Return Type
nvarchar(129)

Parameters

Parameter Parameter Type Mode Description
@ID tinyint IN

Definition

Copy
/*
Generated by Blackbaud AppFx Platform
Date:  9/30/2015 12:58:02 AM
Assembly Version:  Blackbaud.AppFx.Platform.SqlClr, Version=4.0.153.0, Culture=neutral, PublicKeyToken=null
Copyright Blackbaud
*/
CREATE FUNCTION dbo.UFN_BATCHCONSTITUENTUPDATEPHONES_ROWORIGINCODE_GETDESCRIPTION(@ID tinyint)
RETURNS nvarchar(129) WITH EXECUTE AS CALLER
AS
begin

    return case @ID
        when 0 then 'Unspecified'
        when 1 then 'Included in the collection field XML at time of batch save'
        when 2 then 'Automatically included by the system during import or matching to correspond to an existing contact row linked to the constituent'    
    end

end