Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I made use of dynamic data reduction to restrict access to content (filter rows) based on your roles / user.
section access;
LOAD * inline [
ACCESS, USERID,REDUCTION, OMIT
USER, AD_DOMAIN\ADMIN,*,
USER, AD_DOMAIN\A,1,
USER, AD_DOMAIN\B, 2,NUM
USER, AD_DOMAIN\C, 3, ALPHA
];
This way (explicit access to each user in "every script") is not convenient for us. Will this work the same way if I replace the inline script with some external database / file mapping?
In short, Yes
Yes it works only after I sign out and sign in to hub. I did data load as well. I am not sure if there is a better way. Doing this every time is frustrating. Anyways thanks it works at least for now.