We're reclaiming inactive PDIs to keep them available for active builders. Learn what's changing, who's affected, and how to protect your work. Read More

ServiceNow AI Platform forum
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Forum Posts

Resolved! Service Portal Approval Record widget

Hi,I'm having an issue with the Approval Record widget on the portal, in one of my service catalog items I have 4 checkboxes, now if the chackbox has a value of false, I don't want it to show on the Service Portal Approval Record widget.   I have a s...

find_real_file.png find_real_file.png

Resolved! send attachment in RESTMessageV2

I'm trying to send an attachment to a third party service (DocParser) in order to extract the text via OCR and return back structured data. The api documentation for DocParser says to use form-data in the body with file_content as they key and the fi...

Resolved! Way to change text alignment in the list view

When displaying data in the list view there doesn't seem to be a way to manage the left/center/right alignment of fields -- it is just based on the field type.  This can result in some very odd results when there is a numeric type of field (right ali...

jobywalker by Giga Contributor
  • 6110 Views
  • 9 replies
  • 8 helpfuls

Resolved! How to sort Knowledge articles in Knowledge v3 ?

Hi all,I'm trying to sort the knowledge articles in alphabetical order. I know that there is a property "glide.knowman.section_sort" (and "glide.knowman.section_sort_direction") where I have to set the value to short_description. Or select Alphabetic...

snip_20150929152328.png snip_20150929152537.png
abesancon by Giga Contributor
  • 6745 Views
  • 9 replies
  • 3 helpfuls

Resolved! Can I ignore blank rows in an import?

I have a CSV that has blank rows at the end. The import fails because it expected x number of columns. DBAs seem they can't control this on their export. I have my doubts. Can do anything on the ServiceNow end to ignore blank rows during the import p...

KB15 by Giga Guru
  • 3523 Views
  • 7 replies
  • 2 helpfuls

Pen Testing

Hi, We are trying to find out more on Penetration testing on our ServiceNow Instance and have the following questions - Do we have to use third party tools to do Penetration testing? if so are there are recommendations from anyone who has used those?...

Aman22 by Mega Contributor
  • 6279 Views
  • 2 replies
  • 1 helpfuls

Resolved! Wait for Duration during a schedule

Obviously I am not understanding the "Wait for a duration" flow logic in Flow Designer.  Here is what I am trying to do: During M-F, 8-5 allow the flow to run without delay.All other times, wait for 10 mins. I have tried setting up a schedule to no s...

find_real_file.png
tphillips by Tera Contributor
  • 3345 Views
  • 2 replies
  • 1 helpfuls

Redirect to page from Order Guide

Hey friends, I have an Order Guide with : 1 catalog item 1 record producer on submit order guide I want to redirect a page. I created a business rule on the RITM table: when to run: after, insert filter: order Guide is <the Order Guide> Advanced:  (f...

Resolved! How can I add seconds to a GlideRecord value?

Dear SNC, how can I add seconds with Gliderecord to an existing record?  Idea var gr = new GlideRecord("incident"); gr.addQuery("sys_id", "9b8eb0c94f71f20022c92eff0310c222"); gr.query(); if (gr.next()) { gr.overdue = gr.overdue.addSeconds(3600); gr.u...