Hi Ravi. Thanks for the great explanation. My request is - Please make a video on the same scenario with the user being a member of multiple groups. Also, not using a sysid of a particular group but every group to which the logged in user is a member of.
Can you explain or show an Use Case as Like In incident table if we have an field called department. if we select the dapartment field is HR then the caller field should only get the users belogs to HR Department only. With out using Referance qualifier?
Hi, can we create application modules for user(Shubham) like "Assigned to me" and "Assigned to my group" when click on assigned to me it will show INC assigned to Shubham and when clicked on assigned my group it will show INC landed in Shubham's group which he is part of (e.g Database)
Hi Bro, I am using the same script but its not filtering out the users, Can we please check the below script, help me with the error in it. In Script Include: dname: function() { var gr = new GlideRecord('sys_user'); gr.addQuery('sys_id', gs.getUserID()); gr.query; if (gr.next()) { return 'department' + '=' + gr.department.toString(); } }, I have tried in back ground script I dont see any output of the department id var x = new GlideRecord('sys_user'); x.addQuery('sys_id','6816f79cc0a8016401c5a33be04be441'); x.query; if (x.next()) { gs.print( "department"+"="+x.department.toString()); }
As usual, Great video 🙂
Thanks for sharing.
So nice of you
Great explanation sir,thanks to make such clssses free,god bless you 🙏.
So nice of you
wwwaiting for your next scenario based interview questions
This week 2 videos will come
@@learnservicenowwithravithank you for this...plz mention some links for this also
Hi Ravi.
Thanks for the great explanation.
My request is - Please make a video on the same scenario with the user being a member of multiple groups. Also, not using a sysid of a particular group but every group to which the logged in user is a member of.
Sure I will
Hi bro ,
Please make a video on the custom variable widgets which will be helpful for both the multirow variable sets for calculations
Hi ravi, Shabana here please make videos on UI action,event, notification.
Yes bro make a video on events and email scripts
Few videos are alreadybthere check the playlist
Please make video on Service Mapping
Please please please 🙏 make the video on troubleshoot in production support issue real sinario base
Can you explain or show an Use Case as Like In incident table if we have an field called department. if we select the dapartment field is HR then the caller field should only get the users belogs to HR Department only. With out using Referance qualifier?
Its in part 5 video you can check
we can use dependent value I guess
Hi Ravi,
you have used Before Query BR in Dynamic ref Qualifier as well right...
Yes, correct
Hi Ravi.. When r u planning to bring CSM? Playlist..
As soon as possible
Hi, can we create application modules for user(Shubham) like "Assigned to me" and "Assigned to my group" when click on assigned to me it will show INC assigned to Shubham and when clicked on assigned my group it will show INC landed in Shubham's group which he is part of (e.g Database)
Yes you can do..
how to get the group ,to which the current logged in user is belonged to dynamically
Glide to sys user group table
But how can we make this dynamic? Lets say iam part of 5 different groups so how it will work?
I have only taken an example of one group.. you can use multiple group .. pass sys_id of multiple group with or statement
I think we have to use script include to take dynamic sys id of multiple groups.
Hello Ravi I need help in building a small app using AES from ServiceNow. I am willing to pay also. Please let me know if you can help. Thanks!
Thanks for reaching out to me… but I hardly got time …
Hi Ravi may I know ur linkedin ID??
www.linkedin.com/in/ravi-gaurav-a67542aa?
@@learnservicenowwithravi thank u Ravi
Kindly accept my request.
Is it necessary to use gs.getSession().isInteractive(), what purpose does it serve in context to goal ?
In simplest terms, interactive is a transaction generated from a user session as opposed to a background or system process.
Hi Bro, I am using the same script but its not filtering out the users, Can we please check the below script, help me with the error in it.
In Script Include:
dname: function() {
var gr = new GlideRecord('sys_user');
gr.addQuery('sys_id', gs.getUserID());
gr.query;
if (gr.next()) {
return 'department' + '=' + gr.department.toString();
}
},
I have tried in back ground script I dont see any output of the department id
var x = new GlideRecord('sys_user');
x.addQuery('sys_id','6816f79cc0a8016401c5a33be04be441');
x.query;
if (x.next()) {
gs.print( "department"+"="+x.department.toString());
}
Check of the user is associated with any department or not and if department is refernce then return sys_idIn