Home Analyst Portal
Options

Cireson portal :No License found

salihasaliha Member IT Monkey ✭

Hello

we have Cireson portal 8.1.2.2016, an error is displayed in the windows event viewer: "Unable to validate License.Error: No License found"

thank you for assisting me

Answers

  • Options
    Justin_WorkmanJustin_Workman Cireson Support Super IT Monkey ✭✭✭✭✭

    @saliha - Do you have the possibility of updating? I believe the message was thrown erroneously in that version. Here's the workaround from the PR for that issue:

    Run this query against the ServiceManagement database:

    ALTER PROCEDURE [dbo].[spUpdate_Licenses]

    @DashboardLicense nvarchar(1024),

    @AnalystPortalLicense nvarchar(1024),

    @AdvancedRequestOfferingLicense nvarchar(1024),

    @SelfservicePortalLicense nvarchar(1024),

    @TenantId int

    AS

    BEGIN

    SET NOCOUNT ON;


    UPDATE SettingsItem SET Value = @DashboardLicense WHERE [Key] = 'DashboardsKey' AND TenantId = @TenantId;

    UPDATE SettingsItem SET Value = @AnalystPortalLicense WHERE [Key] = 'AnalystPortalKey' AND TenantId = @TenantId;

    UPDATE SettingsItem SET Value = @AdvancedRequestOfferingLicense WHERE [Key] = 'AdvancedRequestOfferingKey' AND TenantId = @TenantId;

    UPDATE SettingsItem SET Value = @SelfServicePortalLicense WHERE [Key] = 'SelfServicePortalKey' AND TenantId = @TenantId;

    END

Sign In or Register to comment.