Find your people. Pick a challenge. Ship something real. The CreatorCon Hackathon is coming to the Community Pavilion for one epic night. Every skill level, every role welcome. Join us on May 5th and learn more here.

Developer forum
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Forum Posts

Resolved! Jelly - how to use "Not Equal" (!=)

Help!Anyone know how to do a not equal to in a situation like this?Thanks!- JamesCode<j:if test="${jvar_sc_request.approval != 'requested'}">               <g:inline template="item_workflow.xml" />             </j:if>

Resolved! When I am adding a filter either in a report or in the list view filter, inactive records gets displayed along with active records

When I am trying to run a report on incidents for specific groups,when I add filters on group[reference field] it should only show those values which are marked as active in SNOW , but the filer shows up all the active and inactive records.How can we...

How to force the re-calculation of an SLA?

We have an SLA that is retroactively calculated based on a "Received Date" (Retroactive = True and Set Start To = Received Date). When the Received Date is edited, the SLA doesn't get cancelled and re-created. How can I force the cancellation and re-...

Joey Day by Tera Guru
  • 1757 Views
  • 2 replies
  • 0 helpfuls

Resolved! Validate field with space and character limit!

Hello there,I am trying to build some requirement here which goes like:-i want to validate a particular field with minimum 6 characters without spaces.I mean to say is if the user types "abcdef"(6 characters without space) or "a a a a a a"(6 characte...

shahid1 by Kilo Expert
  • 7618 Views
  • 11 replies
  • 0 helpfuls

business rule on List Edit and Form Edit

Hi folks,I'd like to get your expertise in a business rule on List Edit view issue, I have experienced an issue where in ListView (cell update action) the associated table that does not refresh itself, but works on form update,   Let me explain furth...

find_real_file.png find_real_file.png find_real_file.png find_real_file.png
georgechen by Kilo Guru
  • 5196 Views
  • 5 replies
  • 3 helpfuls

403 forbidden response

Hi,I am trying to create an incident using my instance.HttpPost httpPost = new HttpPost("https://myinstance.service-now.com/api/now/table/incident");httpPost.setHeader("Accept", "application/json");httpPost.setHeader("Content-Type", "application/json...

pprrdd by Kilo Explorer
  • 7472 Views
  • 4 replies
  • 0 helpfuls

Adding an image to table.

Hello,               I would like to add an image to a field in the table. I have chosen the field type as Image (the image icon is available in System UI -> Images) and set the business rule, but the image is not getting displayed in the table. Can ...

coolgirl by Mega Expert
  • 3415 Views
  • 6 replies
  • 0 helpfuls

Find difference between two dates in minutes

I have two fields ( Glide date time) , called outage stat and outage end. i have another field called Total Outage (in minutes).   This should be auto calculated based off the Outage Start and Outage End fields. This is what I've done so far ; but do...

sonita by Giga Guru
  • 4508 Views
  • 8 replies
  • 2 helpfuls

Triggering executing a scheduled job when configuring an app

Hi Community!My team is developing a custom application which has a small number of external API calls - both PUT and GET messages which we use to syncronise data with an external system.   We currently ask our customers to enter their API key (and s...

kclark1 by Kilo Expert
  • 4621 Views
  • 4 replies
  • 2 helpfuls

Resolved! Update record from business rule

I have the following business rule on a table.function onAfter(current, previous) {     //This function will be automatically called when this rule is   var gr = new GlideRecord('u_safety_events');   gr.get(current.getValue('u_safety_event_number'))...