User Activity
Hello all,
I am trying to investigate a production support issue where I need to know the Access Tokens that were generated a week ago, for this I navigated to Manage Tokens Module. I see some Access token in this modules, but I am unable to see the ...
12-07-2018
I would like to know if there is a way via script to find if the existing OAuth token is still valid or expired ?
Currently we have API calls that fetch the Access token, and we have refresh token grant flow that will get us a new access token when ...
11-21-2018
I have a business rule that is trying to force Logout users using the below script
var gr = new GlideRecord('v_user_session');
gr.addEncodedQuery('user=YOURIDHERE');
gr.query();
while(gr.next()){
gr.locked = true;
}
But the problem is in productio...
Hello experts,
I have gone through other questions in the community on how to create a multiple choice list on the form, but I could not get a clear answer from those posts. A work around would be to create a List type field, but I would like to know...
Hello experts,
For some reason when i open any record (in any table) in Service-now in Form view the page doesn't load completely except the banner. Initially i though there might be an error in one of the Global UI scripts, but I havnt changed any G...