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

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

Forum Posts

How to add a fixed query to the related list?

In the users form there is the OOB groups related list. While clicking on the Edit button it opens the slushbucket to select the groups to which users has to be added.I have written a script include to limit the groups that would be listed and mentio...

find_real_file.png
Kannan Nair by Tera Contributor
  • 3014 Views
  • 3 replies
  • 0 helpfuls

join() and get.Value instead of push and toString()

Hello all, in the following script:     function testing {            var sysIDkey = [];    var GRfilter = new GlideRecord('incident');    GRfilter.addEncodedQuery('category='hardware');    GRfilter.query();    while (GRfilter.next()) {        sysIDk...

Resolved! Schedule report on demand

Hello, We need to send a report on demand to its requestor.  The idea is to have a catalog item requesting a specific report. Once the request is submitted we can use the dedicated schedule job created for that report and run:SncTriggerSynchronizer.e...

How to use onUserchangeValue(function fn) { } ?

Hi , Please  can you give me the scenario for the use of this script:  onUserChangeValue(Function fn) this function how to use and where var handler = function(fieldname, originalValue, newValue) { console.log('The field ('+ fieldname + ') has a ne...

Why am I getting 'No Preview available'?

Hi Community,   Reference Icon not showing preview We have a requirement where we need to populate other fields with the correct data when clicking on selected location.For this I have writtenscript include and on change client script, It is working ...

find_real_file.png
Sana10 by Kilo Contributor
  • 5410 Views
  • 11 replies
  • 5 helpfuls

How to change field display value on a reference field.

On the Change Request form I have a reference field that points to 'cab_meeting' table. When the user selects this field a list of upcoming cab meetings are displayed. They are displayed by name with start date as an additional column. When the user ...

Michael M1 by Giga Expert
  • 16831 Views
  • 6 replies
  • 7 helpfuls

Inbound Email actions and email properties

We have configured our environment so we only have active new and reply inbound email actions. No active forward actions. We also set glide.email.forward_from_prefix = '' and glide.email.forward_subject_prefix = ''. Instead we moved all forward prefi...

Solution - Communication/Data Circuits in CMDb

Our Network and Telephony teams wanted a way to manage their circuits in the CMDB and be able to use them for things like Incident/Problem/Change Management.  The existing circuit table in CMDB is for power circuits (contains fields like phase, max a...

cyked by Mega Guru
  • 11192 Views
  • 10 replies
  • 8 helpfuls

Resolved! API to get SCTASK variables

Hi, I have a requirement to get SCTASK catalog variables. Can this be achieved?  

Hari1 by Mega Sage
  • 6484 Views
  • 7 replies
  • 1 helpfuls

Resolved! Glide list data type

 I need to print the latitude and longitude of list type reference field. Kindly help on the script. var list = gr.u_impacted_locations.toString(); var array = list.split(","); for (var i=0; i < array.length; i++) { var location = array[i]; gs.log(l...