Resolved! adding roles to user
This is the script for adding roles to the user, which I copied from wiki. Can anyone explain what is accumulated_roles here and why we convert this to string?var gr = new GlideRecord("sys_user");gr.query(); while(gr.next()) { if (gr.accumulated_r...
