(Day 6)ServiceNow Business Rule | Display Business Rule | Real Time Scenario | Interview Questions

Поделиться
HTML-код
  • Опубликовано: 5 окт 2024
  • Hi RUclips Family,
    In this video you will Learn about all the Basic of Display Servicenow the business rule concept.
    If you guys enjoyed it, make sure to Like👍 , Comment💬 and Subscribe❤️
    I am Ravi Gaurav. I am Expert in ServiceNow . Welcome to my youtube channel.
    ServiceNow Business Rule | Display Business Rule | Real Time Scenario | Interview Questions -Part 5
    ServiceNow Devlopment PlayList:- • (English)ServiceNow De...
    _________________________________________
    Copyright Disclaimer :
    All Rights to VideoLabel Co. & No Copyright infringement intended
    _________________________________________
    In this Video you will find Server Side Scripting.
    --------------------------------------------------------------------
    Below Drive will fetch you necessary Documents going forward.
    Drive:- drive.google.c...
    Whatsapp Group Link :-chat.whatsapp.....
    ------------------------------------------------------------------------------------------------------------
    LEARNING IS FUN :)
    ------------------------------------------------------------------------------------------------------------
    ------------------------------------------------------------------------------------------------------------
    ServiceNow Real Time Scenarios:-
    • ServiceNow Real Time S...
    ServiceNow Development Scripting :-
    • (English)Learn Service...
    ServiceNow Basic Till Advance in Hindi/English Playlist:-
    • (Hindi Series) -- Lear...
    Learn ServiceNow Admin From Zero in English-Version
    • (English)Learn Service...
    New Tech Exploration:
    • New Tech Exploration
    -------------------------------------------------------------------------------------------
    Other Social Media Links:-
    RUclips - / @learnservicenowwithravi
    Instagram - / i_am_royal_rg
    Linkedin - / ravi-gaurav-a67542aa
    -----------------------------------------------------------------------------------------------------------
    servicenow developer
    Real Time Scenarios
    Scripting Example
    business rules
    business rule in servicenow
    business rules for success
    business rules servicenow
    Fix Script
    Servicenow Development
    servicenow scripting
    after business rule in servicenow
    async business rule in servicenow
    async business rule example
    async business rule example servicenow
    after and async business rule
    servicenow scripting practice questions
    servicenow scripting documentation
    servicenow scripting course
    servicenow scripting fundamentals
    Baisc of Servicenow Scripting
    business rules
    business rule in servicenow example
    business rule in servicenow
    catalog workflow servicenow
    catalog ui policy servicenow
    user criteria servicenow
    user criteria
    update set in servicenow
    update set in servicenow best practices
    update set interview questions in servicenow
    servicenow update set
    servicenow update set tutorial
    backout update set servicenow
    servicenow retrieve update set
    moving update sets servicenow
    servicenow user creation
    servicenow user criteria
    servicenow catalog item creation
    servicenow catalog
    servicenow service catalog
    polaris servicenow
    servicenow workflow demo
    servicenow workflow catalog item
    servicenow next experience unified navigation activity
    servicenow next experience ui
    next experience ui servicenow
    next experience servicenow
    next experience unified navigation activity simulator
    next experience unified navigation
    next experience user interface
    servicenow interface overview
    servicenow ui
    servicenow demo
    servicenow developer interview questions and answers
    servicenow developer career
    servicenow dev program
    servicenow developer interview questions
    servicenow admin roles and responsibilities
    servicenow administrator interview questions and answers
    servicenow administrator interview questions and answers
    servicenow ticketing tool
    servicenow interview questions
    servicenow admin roles and responsibilities
    servicenow script
    servicenow scripting interview questions
    servicenow script debugger
    servicenow itsm
    servicenow demo
    service catalog activity in servicenow
    service catalog
    service catalogue in servicenow
    service catalog variables in servicenow
    #servicenow #servicenowdeveloper #youtube #subscribe

Комментарии • 60

  • @learnservicenowwithravi
    @learnservicenowwithravi  Год назад +2

    Correcting The Script !!!
    (function executeRule(current, previous /*null when async*/) {
    var previousManager=previous.assignment_group.manager;
    var x=new GlideRecord('u_manager_details');
    x.addQuery('u_manager_name',previousManager);
    x.query();
    if(x.next()){
    x.u_manager_name=current.assignment_group.manager.getDisplayValue();
    x.update();
    }
    gs.addInfoMessage("The current Assignment group manager is "+current.assignment_group.manager.getDisplayValue());
    })(current, previous);

    • @ramuchava19
      @ramuchava19 8 месяцев назад

      I have a doubt as I have seen many videos that Do not use current.update() before BR. But you are using that x.update.Can you please give clarification on this.....

    • @prasadkumar5707
      @prasadkumar5707 6 месяцев назад

      Brother.., You're really amazing. I have never seen ever like this kind of teaching you have amazing stuff👌👌

    • @CricketHighligts-hits
      @CricketHighligts-hits 4 месяца назад

      this code is not working. not going inside the if condition.

  • @hiranmayeemohanta5308
    @hiranmayeemohanta5308 2 дня назад

    Hi Ravi...the way u r teaching scripting, I think everyone will love coding. Finally I found best teacher to clear our basic concept in scripting. Stay blessed always👍

  • @blah2blah65
    @blah2blah65 Год назад +3

    For "Demo Business Rule Manager Details" BRs you may want to make them "after" because otherwise if the incident insert or update transactions fail later in processing, you will end up with bad data in u_manager_details. I would make them async because I don't need to delay the interface load while I wait on u_manager_details transactions.

  • @kumudsingh5784
    @kumudsingh5784 Год назад +2

    Badhiya

  • @sanjuadhikary4652
    @sanjuadhikary4652 Год назад +1

    Finally got a perfect teacher to learn snow.

  • @imastercast
    @imastercast 11 месяцев назад +2

    Many thanks for the passion and enthusiasm in your teaching style. Did everything exactly like you explained but the insert fails to work on the u_manager_details table. I'm using the Vancouver release. Any explanation for this?

  • @ramuchava19
    @ramuchava19 Год назад +1

    Waiting bro, please upload every day

    • @learnservicenowwithravi
      @learnservicenowwithravi  Год назад +2

      Its Difficult everyday.. But in a week sure 3-4 videos I will bring

    • @ajitkondekar5954
      @ajitkondekar5954 Год назад

      @@learnservicenowwithravi but now in a week you are uploading only one video

  • @bheemarajuvagu3525
    @bheemarajuvagu3525 Год назад +1

    Simply super 😊

  • @ramuchava19
    @ramuchava19 8 месяцев назад

    👏

  • @kavyabethi8546
    @kavyabethi8546 Год назад

    the way ur explaing is too good upload more videos related ITSM and GRC

  • @vengadesha-y9b
    @vengadesha-y9b 11 месяцев назад +1

    Hi Ravi , In before Videos you said current.update() is not good practice. but we are using here . so we can use the update method inside the block like if , while condition ? please clarify

  • @bheemarajuvagu3525
    @bheemarajuvagu3525 Год назад +1

    Hi @Ravi
    Need
    1. Discovery
    2. Service Mapping
    Videos

  • @mhkrishnan
    @mhkrishnan Год назад

    As usual, great video. 😀
    i think, the video title is not match with content, it is before business rule, but not Display business rule. Please check it and change the title please. Ignore me if i am wrong.
    Thanks for the video. 😀👍

    • @learnservicenowwithravi
      @learnservicenowwithravi  Год назад

      Thanks for feedback and suggestions..In the beginning I used display business rule and after I use real time scenarios..

  • @zeeshankhan-ci5iv
    @zeeshankhan-ci5iv Месяц назад

    Hi Ravi, What is the diff between Business rule under admin and BR under system definition?

  • @abhayagarwal1847
    @abhayagarwal1847 9 месяцев назад

    Hi Ravi, Thanks for this videos
    To fulfill this requirement of the scenario, cant we use a single business rule i.e. demo business rule manager details by checking the insert and update checkbox and add same condition in the BR to insert the record over two separate BRs for insert and update.

    • @learnservicenowwithravi
      @learnservicenowwithravi  9 месяцев назад

      Try it .. there could be potential possibilities if there are two tables then I would have used

  • @vengadesha-y9b
    @vengadesha-y9b 11 месяцев назад +1

    Also Why we need Business Rule ..can't we do it in one Business rule ? can you please tell me the use of 2 BR ?

    • @learnservicenowwithravi
      @learnservicenowwithravi  11 месяцев назад

      Please join the group of mine.. and ask there it will be easy to get the response

  • @Somnath_Snow
    @Somnath_Snow 7 месяцев назад

    All good . but the manager table is not updating when a new assignment group is selected in the incident table

  • @saurabhdhiman5690
    @saurabhdhiman5690 10 месяцев назад

    Hi Ravi
    I had one doubt here at 12:20, you said we need to check the previous manager. I wanted to know why we are checking for the previous manager?

  • @saigeetha6926
    @saigeetha6926 3 месяца назад

    hi,
    if a user added to group then manager will have to get an email like ,a new user is added to group.
    how can we achieve this by using after business rule

  • @mochansolanki735
    @mochansolanki735 10 месяцев назад

    Taking 'after' condition below code is not working-u_profile is a customer field pointing sys_user.Table is incident
    (function executeRule(current, previous /*null when async*/ ) {
    if (current.u_profile == current.caller_id) {
    var gr = new GlideRecord('sys_user');
    gr.addQuery('sys_id', current.u_profile);
    gr.query();
    while (gr.next()) {

    current.short_description =gr.email;
    gs.addInfoMessage('Email of the user: -' +gr.email);
    }
    }

  • @Dolly24522
    @Dolly24522 7 месяцев назад

    How do you create that watermark field in incident table?

  • @ajaybasavaraj2849
    @ajaybasavaraj2849 24 дня назад

    After update in incident table it is not updating in manager table? I am facing this issue please help me with it

    • @learnservicenowwithravi
      @learnservicenowwithravi  23 дня назад

      Your script??

    • @ajaybasavaraj2849
      @ajaybasavaraj2849 22 дня назад

      (function executeRule (current, previous /*null when async*/ ) {
      var previousManager = previous.assignment_group.manager;
      var x = newGlideRecord('u_manager_details');
      x.addQuery('u_manager_name', previousManager);
      x.query();
      if (x.query()) {
      x.u_manager_name = current.assignment_group.manager.getDisplayValue();
      x.update();
      I
      }
      gs.addInfoMessage('The Current assignment group manager is + current.assignment_group.manager. getDisplayValue());

  • @nuhakhangr8
    @nuhakhangr8 9 месяцев назад

    TIL how to insert a new record in the manager table
    and also how to update the manager name in the manager table

    • @learnservicenowwithravi
      @learnservicenowwithravi  9 месяцев назад +1

      if you more number of data by Using import set add the new record to manager
      or
      individual data can be directly loaded to the tabel

    • @nuhakhangr8
      @nuhakhangr8 9 месяцев назад

      @@learnservicenowwithravi interesting 🤔

  • @ramachandrareddydondeti7675
    @ramachandrareddydondeti7675 Месяц назад

    Group link not working

  • @sachinsolapure7737
    @sachinsolapure7737 5 месяцев назад

    Bro plese go slowly plese

  • @joyKarmakar-n2d
    @joyKarmakar-n2d 8 месяцев назад

    ruclips.net/video/JFwu0KsYy4w/видео.html

  • @tubosunakinbo1165
    @tubosunakinbo1165 4 месяца назад +2

    I treid it but got the sys_id which is the current assignmenta8f98bb0eb32010045e1a5115206fe3a,what can i add to make the name show instead of the ID.Please

  • @sal-ju7bl
    @sal-ju7bl 6 месяцев назад

    I watched most of your videos and they are easily understandable this one i did not get it. specially from the table. u_manger_details. i would say its better to use table whatever already exist in sn and zooming where you typing would increase the video quality, just a suggestion.thanks

    • @learnservicenowwithravi
      @learnservicenowwithravi  5 месяцев назад

      Thanks for the suggestion.. I don’t edit the videos so its raw footage.. I will keep in my mind

  • @jonasappau9555
    @jonasappau9555 10 месяцев назад +1

    Hi @Ravi what’s the WhatsApp number for me to join the group cos when I click on the link it doesn’t take me directly to the group even though I have WhatsApp installed