Skip Navigation LinksALVAO 11.2Admin guideCustom modifications and extensionsService Desk customizations and extensionsTicket priority (deprecated) Skip Navigation Links.


Skip Navigation LinksALVAO 11.2 / Admin guide / Custom modifications and extensions / Service Desk customizations and extensions / Ticket priority (deprecated)

Ticket priority (deprecated)

Ticket priorities are defined in the tColumnValue table.

You can change the priority names using the following SQL script, where you set the new priority name (@newValue) and the weight of the priority you are changing (@priority 1-5):

DECLARE @newValue varchar(30) = N'lowest';
DECLARE @priority int = 1;

UPDATE 
	tColumnValue
SET 
	mColumnValue = @newValue,
	ColumnValueShort = @newValue
WHERE
	liColumnId = (SELECT iColumnId FROM tColumn WHERE sTable = 'tHdTicket' AND sColumn = 'Priority') AND 
	nOrder = @priority
Note:
Edit and run the script for each priority that is changed.

 

Did not find what you were looking for? Ask our technical support team.