On Demand/Classless Script Include (with use case)

Hello Tech People !!!
Welcome to ServiceNow Development.
⏱️TIMESTAMPS⏱️
0:00 Intro
0:20 What we have learned in the last video?
1:01 What we are going to learn in today's video?
2:25 On Demand/Classless Script Include
3:40 Use Case
14:36 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

Пікірлер: 9

  • @ayodelebolarin4881
    @ayodelebolarin48816 ай бұрын

    Hi. Thank you for making these videos. They are really helpful. I passed my CSA after watching your preparation series. I am a member. I have a quick question: how do you get the field names in blue to appear?

  • @techwithpri

    @techwithpri

    6 ай бұрын

    Its my pleasure !😇😇 Can you tell me the time of the video where you get this blue field names?😀😀 I would happy to help you !!

  • @ayodelebolarin4881

    @ayodelebolarin4881

    6 ай бұрын

    Thanks for your response. Around 6:33. E.g, the Parent Incident displays the parent_incident in blue.

  • @techwithpri

    @techwithpri

    6 ай бұрын

    @@ayodelebolarin4881 I checked it . This is not something that I have applied externally..i think i selected that field and that's why it's showing or kind of highlighting..😄😄

  • @abidjaffrey5786
    @abidjaffrey5786Ай бұрын

    Hi Pritam, I Could you help me if there is any error in the below, it is not executing. Script: function updateWorkNotes(problemID,workNotes){ var gr = new GlideRecord('problem'); gr.addQuery('sys_id',problemID); gr.query();{ if(gr.next()){ gr.work_notes = workNotes; gr.update(); } } } BR: (function executeRule(current, previous /*null when async*/) { var workNotes = curerent.work_notes.getJournalEntry(-1); updateWorkNotes(current.problem_id,workNotes); })(current, previous);

  • @techwithpri

    @techwithpri

    Ай бұрын

    Hey 👋 In which table you run the BR?

  • @GillerlaRajesh

    @GillerlaRajesh

    22 күн бұрын

    In script include see u given flower brace after gr.query(); Please remove that one and check

  • @GillerlaRajesh
    @GillerlaRajesh22 күн бұрын

    Hlo pritham, I got doubt here when u calling script include in server side i means in business rule side here U directly called function name right here. But syntax says that new scriptincludename(). function name(); right I too tried calling new script include name.function name but its not working, but i called using directly function name it will working fine Is there any specific criteria is there to call script include in server side ? I thinka as per my understanding only one way rigt.

  • @techwithpri

    @techwithpri

    17 күн бұрын

    Hey 👋 Thats a good finding !! Well understand the fundamental the classless script include can contain one function and the function name is same as the script include name. Thats why when you call the function it automatically calls the script include as name of the script include and function has to be same. You should use new keyword when you are calling function which is defined in create a new class script include as there the function name and script include name is different 🤓.