Report on Microsoft Dynamics NAV 2016

Ro_ck_NaVRo_ck_NaV Member Posts: 2
Hello Everyone,

I'm a student currently doing my internship at an IT consulting company and I have to develop a new report on the system.

Is there a posibility to track the number of user logged on per day via a report on NAV 2016??

If yes, grateful if you can guide me through the steps to do so.

Thank you :)


Best Answer

Answers

  • Ro_ck_NaVRo_ck_NaV Member Posts: 2
    Hello Shai,
    yeah but I also need to track the users based on their license.
    and also need to record the maximum number of users that were logged per day

    thank you for your assistance :)
  • krikikriki Member, Moderator Posts: 9,096
    [Topic moved from 'NAV/Navision Classic Client' forum to 'NAV Three Tier' forum]

    Regards,Alain Krikilion
    No PM,please use the forum. || May the <SOLVED>-attribute be in your title!


  • ShaiHuludShaiHulud Member Posts: 228
    edited 2020-06-30
    Ro_ck_NaV wrote: »
    Hello Shai,
    yeah but I also need to track the users based on their license.
    and also need to record the maximum number of users that were logged per day

    thank you for your assistance :)

    What exactly do you mean by "track the users based on their license"?

    Knowing how many users were logged in at a specific day is easy using the "User Time Register" table:
    CLEAR(UserTimeRegister);
    UserTimeRegister.SETRANGE(Date, MyDate);
    MESSAGE('%1 users had logged in on %2', UserTimeRegister.COUNT, MyDate);
    
Sign In or Register to comment.