USP_BBNC_PRODUCTISUK
Returns true if and only if the UK product is unlocked on this installation.
Definition
Copy
CREATE PROCEDURE USP_BBNC_PRODUCTISUK
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);
select @R as 'isUK'
END