UFN_BBNC_PRODUCTISUK

Returns true if and only if the UK product is unlocked on this installation.

Return

Return Type
bit

Definition

Copy


            create function dbo.UFN_BBNC_PRODUCTISUK()
            returns bit 
            as
            begin
                declare @UK uniqueidentifier;
                set @UK = '9568A6C2-F7AA-45fd-8F54-21FE9654EE2D'

                declare @R bit;
                set @R = 0;

                exec dbo.USP_INSTALLEDPRODUCTS_PRODUCTIS @UK, @R output;

                select @R = coalesce(@R, 0);

                return @R;
            end