Change Log only for specific users?

chrisxx83chrisxx83 Member Posts: 54
Hi
is it possible to active change log only for specific users?
I know that this function is not in standard, but i wonder what modification should be done...
Thanks in advace

Comments

  • kapamaroukapamarou Member Posts: 1,152
    I would add a boolean field in User Setup and then in Codeunit 423 I would do something like this:
    UserSetup.GET;
    IF NOT UserSetup.MyNewField THEN
    EXIT(0);

    Could also be done in Codeunit 1...
  • David_SingletonDavid_Singleton Member Posts: 5,479
    chrisxx83 wrote:
    Hi
    is it possible to active change log only for specific users?
    I know that this function is not in standard, but i wonder what modification should be done...
    Thanks in advace

    Try removing permission to the Log File tables. I am not sure if it will give an error though.
    David Singleton
Sign In or Register to comment.