getReference ( no callback) vs getReference (callback)

Hello Tech People !!!
Welcome to ServiceNow Development.
⏱️TIMESTAMPS⏱️
0:00 Intro
0:19 What we have learned in the last video?
0:58 What we are going to learn in today's video?
2:43 getReference () - Synchronous
4:20 How synchronous method works?
6:28 getReference () - Asynchronous
6:58 How asynchronous method works?
8:15 Use Case
11:52 Drawbacks of getReference()
14:09 Thanks for watching !!
Welcome to ServiceNow Developer series !!
We are preparing for Certified Application Developer (CAD) exam.
We will learn all the relevant topic regarding ServiceNow Development.
-All Playlist -
ServiceNow Developer - • ServiceNow Developer
ServiceNow CSA Exam preparation 2023 - • ServiceNow CSA Exam pr...
ServiceNow Virtual Agent (CHATBOT) - • ServiceNow Virtual Age...
ServiceNow System Administrator - • ServiceNow System Admi...
Microsoft Azure - • Microsoft Azure
#servicenow
#techwithpri
#techworld
#techchannel

Пікірлер: 23

  • @erdalakcetin33
    @erdalakcetin338 ай бұрын

    as always, very well explained

  • @techwithpri

    @techwithpri

    8 ай бұрын

    Thank you so much 😊 Keep watching and keep learning 👍

  • @praveenreddy2442
    @praveenreddy24428 ай бұрын

    yes cleared many confusions on getreference tq.

  • @techwithpri

    @techwithpri

    8 ай бұрын

    That's great!! Keep watching and keep learning 😁

  • @Shoaibshaafishorts
    @Shoaibshaafishorts8 ай бұрын

    superrrrr..Eagerly waiting for next video...

  • @techwithpri

    @techwithpri

    8 ай бұрын

    Thank you so much 😀..keep watching and keep learning 👍

  • @Shoaibshaafishorts
    @Shoaibshaafishorts8 ай бұрын

    every point is noted

  • @rohitdwivedi8195
    @rohitdwivedi81955 ай бұрын

    Very Informative video

  • @techwithpri

    @techwithpri

    5 ай бұрын

    Thank youuu 🙏🙏 Keep watching and keep learning 👍

  • @Shoaibshaafishorts
    @Shoaibshaafishorts8 ай бұрын

    waiting for your next video

  • @techwithpri

    @techwithpri

    7 ай бұрын

    Its coming today at 9pm, stay tuned !!

  • @bharathvarma4620
    @bharathvarma46208 ай бұрын

    Best video regarding getReference Nice explaination Keep up this work, in future many will come for your videos

  • @techwithpri

    @techwithpri

    8 ай бұрын

    Thanks a lot 🙏🙏 Keep watching and keep learning !!

  • @bharathvarma4620

    @bharathvarma4620

    8 ай бұрын

    @@techwithpri sure☺️

  • @simhareddy1948

    @simhareddy1948

    8 ай бұрын

    Short and very informative... Expecting more videos

  • @Shoaibshaafishorts
    @Shoaibshaafishorts8 ай бұрын

    didnt missed a single video

  • @saidashaik3406
    @saidashaik34067 ай бұрын

    How to pass dynamic values in real time scripting .make a vedios

  • @techwithpri

    @techwithpri

    7 ай бұрын

    Hey !! Sure , Noted !!

  • @RaviTeja-ec7mf
    @RaviTeja-ec7mf22 күн бұрын

    using get reference method . I am able to populate manager name [but it is displaying sys_id] .I need the manager name value.[this is my code] var grt = g_form.getReference("caller_id", checkDetails); function checkDetails(grt) { g_form.setValue("u_email", grt.email); g_form.setValue("u_manager_s_manager",grt.manager); } can u please help me.

  • @techwithpri

    @techwithpri

    17 күн бұрын

    Hey 👋 You can apply the same code and just change the Manager's name field to reference field. as you are accessing a value of reference field thats why it is returning sys_id.

  • @RaviTeja-ec7mf

    @RaviTeja-ec7mf

    12 күн бұрын

    @@techwithpri Thanks bro