(Day 9)Script Include | Auto-Populate | Uses of GlideAjax | Real Time Scenarios

Поділитися
Вставка
  • Опубліковано 15 жов 2024

КОМЕНТАРІ • 51

  • @sivavani1188
    @sivavani1188 Місяць тому

    Thanks for this script include session with real time scenario. Very well explained each and every line. The way you explains in every video is awesome. Thankyou once again....

  • @srinivasanveeraraghavan6900
    @srinivasanveeraraghavan6900 2 місяці тому +1

    Great, you are such a great Mentor.

  • @teja._.
    @teja._. 5 місяців тому +1

    Thanks a lot for this session I really understood a lot about script include .your sessions are very clear .

  • @MukeshSingh-od4nh
    @MukeshSingh-od4nh 5 місяців тому

    Wow! This is great! Thank you for sharing your expertise with us in a very easy way.

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

    Good explanation keep going 👍👍

  • @karanb.m5836
    @karanb.m5836 4 місяці тому

    Thanks for this script include session with real time scenario it was helpful in understanding the concepts in depth 😊

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

    Thank you sir!! I have been looking into your videos since from last few days and your explanation is simply superb, (particulary the scripting part) i don't have an background on scripting, but the way that you have explained is simply super and it makes my Service Now scripting life easy as compared to earlier!!!!☺

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

      Thanks for this great feedback man😃

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

      @@learnservicenowwithravi
      Haha!! I'm woman 🤭

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

      @@akhilayedoti i am sorry .. your user name seems to be not telling your gender😅😅

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

      @@learnservicenowwithravi
      It's Okie, NP😊

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

      Clear cut explanation, thank you sir

  • @SomaSekhar-xv1zt
    @SomaSekhar-xv1zt 5 місяців тому

    You are a servicenow Master
    God bless you!!

  • @AsifAha
    @AsifAha 3 місяці тому

    Very nice explanation.

  • @AbhishekPandey-pp1lz
    @AbhishekPandey-pp1lz Рік тому

    Thanks for sharing knowledge @Ravi
    Great initiative.

  • @99-thanmaikapilavai99
    @99-thanmaikapilavai99 Рік тому +1

    Nice ,Do shorts also

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

    Hello Ravi when i am trying to save the Script Include it throws me this error"Unable to find UI Action with name 'undefined' on table 'sys_script_include'" can you please help as i am stuck on this part.

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

      Share your code

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

      @@learnservicenowwithravi var GetEmailID = Class.create();
      GetEmailID.prototype = Object.extendsObject(AbstractAjaxProcessor, {
      getEmail: function(){
      test=this.getParameter('sysparm_value');
      var x=new GlideRecord('sys_user');
      x.addQuery('sys_id',test);
      x.query();
      if(x.next()){
      return x.email();
      }
      },
      type: 'GetEmailID'
      });

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

      @@learnservicenowwithravi and client side script is "function onChange(control, oldValue, newValue, isLoading, isTemplate) {
      if (isLoading || newValue === '') {
      return;
      }
      var callerDetails=g_form.getValue('caller_id');
      var ga=new GlideAjax('GetEmailID');
      ga.addParam('sysparm_name','getEmail');
      ga.addParam('sysparm_value','callerDetails');
      ga.getXML(getresult);
      function getresult(response){
      var answer= response.responseXML.documentElement.getAttribute('answer');
      g_form.setValue('u_caller_email',answer);
      }
      }"

  • @dhammanandnirmale1138
    @dhammanandnirmale1138 10 місяців тому +1

    Thank you so much 👍🏼 sir

  • @m1nc234
    @m1nc234 Рік тому

    Thankyou sir
    Exlent explanation

  • @gauthambhat8844
    @gauthambhat8844 Рік тому

    Will you make a video of script includes in reference qualifiers

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

    Good explanation 🙂🙂

  • @DeepakkumarSing-n1z
    @DeepakkumarSing-n1z Рік тому +1

    Sir “Reference Qualifier” is not in the playlist . Please make a video on it

  • @archanathoutreddy4033
    @archanathoutreddy4033 Рік тому +1

    Thankyou ravi

  • @rajendramarothi88
    @rajendramarothi88 11 місяців тому

    Hi Ravi sir please can you provide videos on cmdb also.

  • @swatighodke8077
    @swatighodke8077 Рік тому +1

    When you will upload the next video..

  • @mounikam3144
    @mounikam3144 Рік тому +1

    Thanku Ravi🙂

  • @GillerlaRajesh
    @GillerlaRajesh Рік тому

    How to call script include with server side like business rule what is the purpose we call in server side, make video on this

  • @jeyapriya8259
    @jeyapriya8259 Рік тому +1

    U have done with dom, like that do with JSON parser also

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

    i want a video using 2 differnt tables on client script and glide ajex