Interested in a ServiceNow event built for developers? Registration for now[dev]26 is officially open!

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

Forum Posts

EDIT Button is Missing on group form

Hi All, We have custom application, there are 5 groups : In group form , there is two fields with the name Manager and Backup Manager.  Issue is : we have assigned two users for both Manager and Backup Manager to the same groups and same roles but th...

find_real_file.png
swethaa by Kilo Contributor
  • 3798 Views
  • 10 replies
  • 0 helpfuls

Resolved! How to trigger a scheduled job for every 30 mins

Good day All, I would like to get a notification when the Duplicate Algo administration remains switched off for more than 1 hour. The notification should be sent to all the users having the 'Duplicate Algo Administration'.  automatic notification af...

find_real_file.png find_real_file.png
JMR2 by Mega Expert
  • 6169 Views
  • 6 replies
  • 1 helpfuls

dynamic data in a modal

Hi all, A recent feature/request has been dropped on me and I need some guidance on the matter. The request is to have a modal appear when the page loads and for it to contain all of the users information from the platform view, such as name, room nu...

Unable to install MID Server on mac

Hello,When I try to install MID Server on mac OS I got following error. I checked Java, it looked fine. I am in Jakarta release2017/08/15 13:37:05 | The value of wrapper.java.command does not appear to be a java binary.2017/08/15 13:37:05 | The use o...

How do I link to a record in servicenow?

I want to be able to generate URLs for use outside of ServiceNow which link to specific records by number. For example I can link to /incident.do?sysparm_query=number=INC1000 for an Incident but that URL won't work if the record is a RITM or CHG. For...

dmitch by Kilo Contributor
  • 3405 Views
  • 1 replies
  • 0 helpfuls

Resolved! How to add "AND" condition in addquery()

Hi, The below script is not working properly. In my script i want to add query with "AND" condition to check multiple fields like  When state is 6,7,8u_is_planned = UnplannedService Offering = Offername If all the conditions are satisfied only then i...

Manikandan2 by Kilo Expert
  • 20501 Views
  • 7 replies
  • 4 helpfuls

Resolved! Cannot get a sys_user record

Hi Guys, I am trying to get a sys_user record. When I request the user record from admin it works. When I try to do the same thing it doesn't get. I am running GlideRecord from BusinessRule. Any help is appreciated. Regards Yusuf  

Yusuf5 by Kilo Guru
  • 3663 Views
  • 14 replies
  • 0 helpfuls

How GlideTransaction.get() code is helping to ACL to work

How below code is helping to ACL to work. ACL : Incident.state :- var transaction = GlideTransaction.get();answer = (transaction.getRequestParameter("incident.state") == "6" && transaction.getRequestParameter("sys_original.incident.state") != "6")   ...

DS20 by Tera Contributor
  • 5382 Views
  • 3 replies
  • 0 helpfuls

How to configure refresh token so that it does not expire

Hi, I am setting up oauth on an instance, and have created a refresh token.  The documentation says that the refresh token expires in 100 days by default, and I can change it on the console.  However, I would like the token to never expire.  Is there...

karl_cheng by Mega Contributor
  • 8063 Views
  • 8 replies
  • 7 helpfuls

Virtual agent order topics

Hi,   How do I change the Order of topics displayed when user clicks on "See All Topics" button is clicked in the VA window?   Thanks

maryc by Tera Contributor
  • 2696 Views
  • 4 replies
  • 0 helpfuls

How to cast GlideRecord?

I'm looking to cast a GlideRecord object into a child class. What I'm trying to do is fill in a form with a field on cmdb_ci_hardware but I have to do the searching from cmdb_ci. For example, say that there is a custom field on cmdb_ci_hardware calle...