(Day 3-4) ServiceNow Scenario-Based Interview Question | Before Query Business Rule | Dynamic Filter

Поділитися
Вставка
  • Опубліковано 8 січ 2025

КОМЕНТАРІ • 39

  • @mhkrishnan
    @mhkrishnan 8 місяців тому +1

    As usual, Great video 🙂
    Thanks for sharing.

  • @subhanipathan-hv3oz
    @subhanipathan-hv3oz 8 місяців тому

    Great explanation sir,thanks to make such clssses free,god bless you 🙏.

  • @jeyapriya8259
    @jeyapriya8259 8 місяців тому

    wwwaiting for your next scenario based interview questions

    • @learnservicenowwithravi
      @learnservicenowwithravi  7 місяців тому

      This week 2 videos will come

    • @kunal_gaud
      @kunal_gaud 7 місяців тому

      ​@@learnservicenowwithravithank you for this...plz mention some links for this also

  • @parasbelorkar7127
    @parasbelorkar7127 8 місяців тому

    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.

  • @PavanKalyan-qc2ln
    @PavanKalyan-qc2ln 8 місяців тому

    Hi bro ,
    Please make a video on the custom variable widgets which will be helpful for both the multirow variable sets for calculations

  • @samreenshaik1108
    @samreenshaik1108 8 місяців тому +3

    Hi ravi, Shabana here please make videos on UI action,event, notification.

  • @PachamatlaRaju_AI
    @PachamatlaRaju_AI 5 місяців тому +1

    Please make video on Service Mapping

  • @gaonkichori4438
    @gaonkichori4438 7 місяців тому

    Please please please 🙏 make the video on troubleshoot in production support issue real sinario base

  • @mastanbabukonduru4159
    @mastanbabukonduru4159 7 місяців тому +1

    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?

  • @ravitentu8267
    @ravitentu8267 3 місяці тому +1

    Hi Ravi,
    you have used Before Query BR in Dynamic ref Qualifier as well right...

  • @baby_videos9746
    @baby_videos9746 5 місяців тому

    Hi Ravi.. When r u planning to bring CSM? Playlist..

  • @djnc2031
    @djnc2031 8 місяців тому

    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)

  • @NeelimaG-p8d
    @NeelimaG-p8d 2 місяці тому

    how to get the group ,to which the current logged in user is belonged to dynamically

  • @Freak512
    @Freak512 8 місяців тому

    But how can we make this dynamic? Lets say iam part of 5 different groups so how it will work?

    • @learnservicenowwithravi
      @learnservicenowwithravi  8 місяців тому

      I have only taken an example of one group.. you can use multiple group .. pass sys_id of multiple group with or statement

    • @sajeedahmed7838
      @sajeedahmed7838 8 місяців тому

      I think we have to use script include to take dynamic sys id of multiple groups.

  • @neeleshsharma1767
    @neeleshsharma1767 7 місяців тому

    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!

  • @mhr0254
    @mhr0254 6 місяців тому

    Hi Ravi may I know ur linkedin ID??

    • @learnservicenowwithravi
      @learnservicenowwithravi  6 місяців тому

      www.linkedin.com/in/ravi-gaurav-a67542aa?

    • @mhr0254
      @mhr0254 6 місяців тому

      @@learnservicenowwithravi thank u Ravi

    • @mhr0254
      @mhr0254 6 місяців тому

      Kindly accept my request.

  • @biharselona
    @biharselona 2 місяці тому

    Is it necessary to use gs.getSession().isInteractive(), what purpose does it serve in context to goal ?

    • @learnservicenowwithravi
      @learnservicenowwithravi  2 місяці тому

      In simplest terms, interactive is a transaction generated from a user session as opposed to a background or system process.

  • @mukeshpulumati728
    @mukeshpulumati728 7 місяців тому

    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());
    }

    • @learnservicenowwithravi
      @learnservicenowwithravi  7 місяців тому

      Check of the user is associated with any department or not and if department is refernce then return sys_idIn