'How can I add a banner to a ServiceNow ticket to remind technicians to record time taken on solving the ticket?

Or is there a way to stop technicians moving on until this area has been recorded?

Thanks!



Solution 1:[1]

Create a client script which is of type onLoad.

function onLoad() { 
   gs.addInfoMessage("Please record the time taken to solve the ticket");
}

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Sunil B N