We've updated the ServiceNow Community Code of Conduct, adding guidelines around AI usage, professionalism, and content violations. Read more

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

Forum Posts

Resolved! How RITM gets created once Request is Submitted

Hi,For a catalog item, I am submitting the request after filling in all the details. A request gets created on sc_request. But can anyone tell me how Requested Item(RITM) gets creayed along with the request submission?Thanks,Nataraj

nataraj_snow by Giga Contributor
  • 3363 Views
  • 6 replies
  • 0 helpfuls

Modifying UI Action Redirect to "target=_blank"

I am looking to redirect a user to a specified link that opens in a new tab/window using the HTML target attribute of the <a> tag. Is there any ServiceNow function, such as setRedirectURL, that accepts an HTML target parameter? Is there a way to do t...

Resolved! Inbound action for a record producer

Is there a way to have an inbound action trigger a record producer in the same fashion that is available for service request items?   I have a record producer that uses variables to determine when the workflow will submit tasks for different groups, ...

d_cammack by Tera Guru
  • 2513 Views
  • 3 replies
  • 1 helpfuls

Create template through UI Action

Hi AllHow i can create template thought UI Action( Create template) on incident form, i got help from SNCGURU( » Advanced Templates) . it's really helpful but my requirement is different.what i need.Suppose you are opening existing record   on incide...

template.PNG
sncrnd by Kilo Contributor
  • 2163 Views
  • 2 replies
  • 0 helpfuls

Resolved! Request item triggers event multiple times

We have a request item that for some reason triggers an event 3 times when it is submitted. This then causes an email notification to get sent 3 times. The weird part is that this only happens when this one specific item is created. For every other i...

JenniferS1 by Kilo Contributor
  • 5988 Views
  • 13 replies
  • 0 helpfuls

Resolved! Get Element value - scripting

Hi all  (I'm new to ServiceNow)  I have got a form that users complete to request a new account be created. I capture an business service chosen in the form, and then need to find the manager of that service.  At present, the following code saves th...

ryan86 by Kilo Expert
  • 13551 Views
  • 17 replies
  • 0 helpfuls

Resolved! How to create a change request reminder

Our team would like to be reminded of an upcoming change that is assigned to them and they would like to see it 30 minutes prior to that date and time.   How do you perform this?   Are there examples out there?   I am very new to ServiceNow, so pleas...

jmbrake by Kilo Expert
  • 7614 Views
  • 44 replies
  • 0 helpfuls

Resolved! Get Value of user_image type field

I have a user_image type field in incident form, i want to get the value of this field basically the photo which is uploaded and onclick of ui action link ui page pops up to show this photo. Please suggest how can i get the value of this user_image f...

Renuka8 by Kilo Guru
  • 2986 Views
  • 7 replies
  • 1 helpfuls

Resolved! Set Field Using Client Script

Hi Guys,  I'm having some issues to update a field when user select an specific option on other field.  I have the Status field and according to the option user selects on this field, the Assigned To field needs to be populated or updated using the f...

billv6 by Kilo Expert
  • 8950 Views
  • 3 replies
  • 1 helpfuls

Resolved! The undefined value has no properties. 140522

Hello Implementation Forum,  The Ops Project form is creating Ops Project Tasks and associatingthe tasks correctly with the projects. Also got some of the project valueslike facility and short description to write to tasks fields to eliminate duplica...

allen_pitts by Giga Expert
  • 19111 Views
  • 8 replies
  • 0 helpfuls

copy comments from one task to another task

I have a requirement where I need to copy the comments entered in the first task to next task..I have created a BR but no luck.. could anybody please help on this.  BR: push commentswhen: before insert/update  script:  var gr = new GlideRecord('sc_ta...

SnowDEV2 by Kilo Expert
  • 2892 Views
  • 8 replies
  • 0 helpfuls

Resolved! XML Client side?

Hi All,I have populated wizard varaible (multiline field) with XML string. On the onLoad client script, I need to use the XML string populated in the wizard varaibel to get element values.  Not sure if any OOB functions for parsing XML string on the ...

SSK2 by Kilo Expert
  • 2871 Views
  • 7 replies
  • 0 helpfuls

Resolved! Google Maps is not working on ServiceNow

Hi all  Today I noticed that all my maps are not working (yesterday they were ok). They only loads the first position and puts all points into this position. I've checked on other instances, with different maps, and also checked the demo instance for...

Resolved! regexp lookbehind - Invalid quantifier "?" - Any idea?

Hi everyone,  I'm trying to make a regexp and the lookbehind seems to not work. Any idea?   var resolution = 'Servername: AZSXCD123DERFC' + '\n' + 'IP: 123.45.67.89'; gs.log('::'+ resolution.match(/(?<=servername:\s*)[^\n\r\t\v]+/i) + '::'); Evaluat...