Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

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

Forum Posts

Replace approver in workflow

Hi,I want to change approver in workflow. There might be many workflows where I have to make changes.So please can anyone tell how to do this in efficient way.Thanks in advance.Nikhil Peshwe

peshwen by Giga Contributor
  • 3203 Views
  • 7 replies
  • 3 helpfuls

Showing related RITMs in a related list on a RITM

I'd like to create a related list on a RITM that is similar to the Requested Item->Request list that is present on the Request records:How can I get this same list to show on a RITM so a technician working a RITM can see other related RITMs that are ...

find_real_file.png find_real_file.png
robduca by Giga Contributor
  • 2663 Views
  • 6 replies
  • 3 helpfuls

Delete multiple records from a Table

Is there a direct function to clean up entire table from script. Something simillar to Truncate table in Oracle.also what is the difference between deleteRecord and deleteMultiple?? Which one is faster and efficient.-Amit

User150433 by Kilo Sage
  • 5822 Views
  • 7 replies
  • 8 helpfuls

Resolved! Access request item variables through client script

function onChange(control, oldValue, newValue, isLoading) {if (isLoading) {   return;}var Emp = new GlideRecord('sc_req_item');Emp.addQuery('sys_id', newValue);Emp.query();while(Emp.next()) {   g_form.setValue('u_first_name', Emp.variables.u_first_na...

manredd by Kilo Expert
  • 6672 Views
  • 14 replies
  • 4 helpfuls

Looking for location of content templates

I was looking at the content of a cms block I noticed the line below   <g:inline template="welcome_content.xml"/>  that seemed to be pulling it's content from an xml file. Where could I possibly find this file to edit?  Thanks in advance!

mahudg2 by Kilo Expert
  • 4464 Views
  • 7 replies
  • 2 helpfuls

Update CI attributes

I have a requirement to create one screen where there will be CI and class field . Upon selection of CI and Class it will display all its attributes on the screen. User can go ahead and modify the field Values. After updating it will go through an ap...