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

Forum Posts

Is there a Fleet Vehicle Loan App available?

I am looking for a Fleet Loan Vehicle App in ServiceNow. I found "Loaner Request System v3.0" by Chuck Tomasi.My questions are these:1) Can I download it to my free developers instance so i can evaluate it?2) Are there any other Apps out there that m...

tony_carter by Giga Contributor
  • 3413 Views
  • 4 replies
  • 5 helpfuls

Adding a multi-line text field to a UI Page

Hello! I posted a question in this forum and was correctly answered. Thank you!But I want to change the text field  in the pop-up display from a single-line text field to a multi-line.This is the HTML section in the UI Page.  <g:ui_form> <input type...

ceraulo by Mega Guru
  • 2645 Views
  • 1 replies
  • 1 helpfuls

Resolved! Trouble Accessing variables from inbound action

I am having trouble accessing the variable in my inbound action from my workflow this is my inbound action that is used to kick the workflow off. var userEmail = email.from; var grUser = new GlideRecord(sys_user); grUser.addQuery('email', userEmail.t...

Workflow Variable Returning Undefined

I am running this simple script in a run script activity for a workflow running on the rm_enhancement table: workflow.variables.skip = 'no';gs.log('Beginning= ' + workflow.variables.skip,'EnhancementApprovals');   The log keeps returning "Beginning =...

Resolved! How to append text to the value entered on variable?

I have a variables called Department and Sub Department.The requirement is append .sub  to the value entered on Department. It should be on form load. Eg Department is Computer then Sub Department should be Computer.sub I have written script as below...

Is there a GlideDateTime variant for getByFormat?

I have a GlideDateTime and want to print it with the given format. I noticed that there is the getByFormat function for GlideDate and GlideTime, but not for GlideDateTime... Did I just not find it, wast here a specific reason for not implementing it ...