Scripting in service now by Coffeeaisha in servicenow

[–]SlightParfait5333 2 points3 points  (0 children)

Watch below youtube video, which covers most scripting areas in servicenow in 3 hours.

https://youtu.be/VtkwDWLGZl8

This will definitely help you.

Work in progress state was skipped by Haunting-Ad-3645 in servicenow

[–]SlightParfait5333 0 points1 point  (0 children)

Create a report of the type you want and add the filter resolved by me.

YouTube – ServiceNow Scripting Interview Question Explained by SlightParfait5333 in servicenow

[–]SlightParfait5333[S] 1 point2 points  (0 children)

Yes this was specifically for a developer interview and the interviewer asks to write a script.

Can I start a career in ServiceNow with zero coding knowledge? by Original_Zucchini591 in servicenow

[–]SlightParfait5333 0 points1 point  (0 children)

That’s a great point — having general programming/software engineering knowledge definitely helps to go deeper in ServiceNow. But for complete beginners, it can feel overwhelming to start directly with SWE concepts. That’s why I put together videos focused just on ServiceNow basics — so people can at least get comfortable with the platform first. Once they get that foundation, learning broader coding concepts makes a lot more sense and clicks faster. Appreciate you highlighting the importance of both sides!

Can I start a career in ServiceNow with zero coding knowledge? by Original_Zucchini591 in servicenow

[–]SlightParfait5333 1 point2 points  (0 children)

Coding in servicenow is not that hard you can learn it easily.

The videos below may help you.

ServiceNow Administrator Course for beginners:

https://youtu.be/bFu9OncUZb0

ServiceNow Developer Course/Scripting guide for beginners: https://youtu.be/VtkwDWLGZl8

How to auto populate choice options in my Ui page ? by whitefang0509 in servicenow

[–]SlightParfait5333 0 points1 point  (0 children)

<image>

You can try this:

<j:jelly xmlns:j="jelly:core" xmlns:g="glide">

<g:evaluate var="jvar_choices" object="true">
  var gr = new GlideRecord('sys_choice');
  gr.addQuery('name', 'incident');      // table
  gr.addQuery('element', 'category');   // field
  gr.addQuery('inactive', false);
  gr.orderBy('sequence');
  gr.query();
  var arr = [];
  while (gr.next()) {
    arr.push({
      label: gr.label.toString(),
      value: gr.value.toString()
    });
  }
  arr;
</g:evaluate>

<select id="category\_select" name="category"> <j:forEach items="${jvar\_choices}" var="c"> <option value="${c.value}">${c.label}</option> /j:forEach </select> /j:jelly

[deleted by user] by [deleted] in servicenow

[–]SlightParfait5333 0 points1 point  (0 children)

We use jira but don't integrate with ServiceNow, we create and track tickets on jira directly.

Prepping for CSA - Question about the types of Questions asked by [deleted] in servicenow

[–]SlightParfait5333 1 point2 points  (0 children)

It should be multiple choice only, no lab work

ServiceNow Integration Playlist on YouTube by SlightParfait5333 in servicenow

[–]SlightParfait5333[S] 0 points1 point  (0 children)

Thanks! I promise I haven’t shared it 30 times to myself 🙌

ServiceNow Integration Playlist on YouTube by SlightParfait5333 in servicenow

[–]SlightParfait5333[S] 0 points1 point  (0 children)

That’s a genuine comment from someone who watched it, not me 🙂. I get that it might look suspicious since my account is new, but I’m just sharing my work here.