Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To enable the Call Number Display System for a specific NexSigns license (This process will be upgraded in the future, watch ticket here

Jira Legacy
serverSystem JIRA
serverId5ea3a9a8-87a3-396c-87f3-6358fc4e7ae3
keyPRODUCT-160
)

...

Copy and paste the following code into the New Query Window

Code Block
languagesql
themeRDark
titleSQL: Enable/Disable Call Number Display System
linenumberstrue
collapsetrue
USE [CloudVariables]
DECLARE @NewLicenseKey nvarchar(max);
DECLARE @RemoveLicenseKey nvarchar(max);


/****** Enter license key below to enable or disable the Call Number Display System */
SET @NewLicenseKey		= '';	/* <----- Enable */
SET @RemoveLicenseKey	= '';	/* <----- Disable */



UPDATE	dbo.GlobalVariable
SET	Value = Replace(Value + ',' + @NewLicenseKey, ',,', '')
WHERE Name = 'TMP_CALL_NUMBER_SYSTEM_ACTIVE_LKEY';


UPDATE	dbo.GlobalVariable
SET	Value = Replace(Replace(Value, @RemoveLicenseKey, ''), ',,', '')
WHERE Name = 'TMP_CALL_NUMBER_SYSTEM_ACTIVE_LKEY';

...

, please contact Kuusoft Technical Support Team.

Setting up the Call Number Display Channel

To set up call number display (Eventually, it will be controlled through dedicated UI instead of CustomCode channel. Watch ticket here 

Jira Legacy
serverSystem JIRA
serverId5ea3a9a8-87a3-396c-87f3-6358fc4e7ae3
keyPRODUCT-161
)

  1. Login to OnePass (For more information, see How to access OnePass)
  2. Click on Application and select NexSigns 2.0
  3. Locate the NexSigns license with the Call Number Display System enabled and Click Start Action
  4. Click on Manage Channel
  5. Click on Create New Channel
  6. Enter a meaningful Channel Name and Description. Select CustomCode for Channel Type. When finished, Click Continue
  7. In the custom code field, enter the following KML code

    Code Block
    themeRDark
    titleKML for Call Number Display System
    call_number_system_viewer()


  8. Click Save to complete set up the Call Number Display channel
  9. You can then connect the Screen Layout Container to the newly created channel and have the Call Number Display running.

...