Announcements
Can we count how many times users face license issue?
Session only shows the current users.
But we cannot count how many additional users are trying to open NAV and how many times they are facing license issue?
Is there any tools or method to monitor license issue?
You can create a codeunit to count the actual number of connected session (based on the Active session table) and insert the result in a table like this one :
Countofsessions.RESET;
IF Countofsessions.FINDLAST THEN
Seq:=Countofsessions."Line No"+1
ELSE
Seq :=1;
Countofsessions.INIT;
Countofsessions."Line No":=Seq;
Countofsessions.Date:=TODAY;
Countofsessions.Time:=TIME;
Countofsessions.Number:=ActiveSession.COUNT;
Countofsessions.INSERT;
Then call this Codeunit in NAS to count each 5 minutes for example
Finally you can create report or export data to Excel to make some graphs
André Arnaud de Cal...
294,190
Super User 2025 Season 1
Martin Dráb
232,968
Most Valuable Professional
nmaenpaa
101,158
Moderator