Select Page

News, Updates, & Resources

Servicenow certified application developer exam

I just passed the CAD exam. And honestly, it was one of the coolest certifications I have taken. It foncuses on the areas: 1 - Access conrol 2 - scoped applications and access 3 other stuff

How can we allow a watchlist user to view a RITM?

We can do that using the ACL script bellow: var u = gs.getUserID(); answer = current.watch_list.toString().indexOf(u) >=0; //checks for watchlist user to be same as logged in user if so allow the read access

How to perform a dynamic contains (me) search on a Watchlist?

The answer is simple: // use that code : javascript:gs.getUserID()