The CreatorCon Call for Content is officially open! Get started here.

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

Forum Posts

Resolved! GlideAjax returning null value

Hello, I am new in scripting. I have been trying the below code, but its returning null value. What wrong I am doing? Script Include: var AssignmentGroupName = Class.create(); AssignmentGroupName.prototype = Object.extendsObject(AbstractAjaxProcessor...

Satanik1 by Giga Guru
  • 6336 Views
  • 11 replies
  • 6 helpfuls

Resolved! Removing a character from a string value before transform

Hi All, As the title states, on my import set table i have 3 string fields that are filled with a date, time, and timezone. The format looks like this and ServiceNow does not like the format, the import errors out,   "2020-03-02T09:29:13.311-08:00" ...

Resolved! Walk-up Experience user check-in

In walk-up experience, at user check in, it currently ask for user name. Is it possible to change what field it is searching on? We'd like to use the 'user_name' field which contains our SSO id.  TIA

clyon by Tera Guru
  • 1742 Views
  • 9 replies
  • 4 helpfuls

Resolved! Inline Script in Flow Designer not working

I am trying to use the Inline Script in Flow Designer. I am trying to create an hr_case record with Create Record action and set the value of its Category field with inline script. Below is the screenshot and the code /* **Access Flow/Action data us...

find_real_file.png
Sattyaki1 by Tera Expert
  • 5922 Views
  • 15 replies
  • 1 helpfuls

Enable filter for Data table from instance definition

I have created a new page where I have added a widget called Data Table from Instance Definition. I am able to add fields and hard code a filter in the instance with table option but there is no way to enable the filter to be editable by the user. Ho...

find_real_file.png
Khanna Ji by Tera Guru
  • 1589 Views
  • 2 replies
  • 0 helpfuls

query on Task table

below query returns 50 records order by priority  var tsk= new GlideRecord('task');tsk.chooseWindow(0, 50);tsk.orderBy('priority');tsk.query();while(tsk.next()){ gs.log(tsk.priority + " - " + tsk.short_description);}   below query should return first...

MO26 by Kilo Explorer
  • 1166 Views
  • 4 replies
  • 0 helpfuls

Login page default language

Hi community, is there a property to change the default language in the login.do from English to German? Thank you in advance.   Regards, Felipe

find_real_file.png
Felipe17 by Giga Guru
  • 2011 Views
  • 4 replies
  • 0 helpfuls

Background scrip to bulk update Knowledge base for articles

Hi All, I have created below background script to update the knowledge base for all articles from a certain knowledge base to a new KB . After running this script knowledge base is not getting updated . Please suggest if I am missing something. var T...

Mrman by Tera Guru
  • 1499 Views
  • 4 replies
  • 0 helpfuls

Resolved! Prevent deleting a record of a custom table.

I want to prevent deleting a record of a custom table. I want to check a condition to delete the record. I use client script or busines rules.   How can I test the "delete" button or disable the "delete" button? Very Tahnks!  

Rene14 by Kilo Explorer
  • 1834 Views
  • 3 replies
  • 2 helpfuls

Resolved! Need to move workflow to next activity

I have a timer activity on an RITM workflow that was incorrectly set.   How can I "finish" this timer activity and have the workflow move onto the next item?I need it to move onto the Catalog Task, "Remove the VM".I went into the "Workflow Executing ...

find_real_file.png
xiaix by Tera Guru
  • 2361 Views
  • 3 replies
  • 2 helpfuls

Bold text

Hi I have created a Multi Line Text Variable under a Service Catalog Item. Does anyone know how I can get some of the text in the Default Value to be bold?  I would like the Default Value to look like this; This text is not bold. This text is bold. ...

find_real_file.png

Resolved! Database View with calculated value columns

Hi All,  I did inner join 2 tables and created a database view. Table A has a calculated description field whose values are displayed in table A list view. But in the DB view that column is not populating any values. Is this expected behavior with DB...