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

Forum Posts

maint role

With the introduction of the Developer program, is the 'maint' role ever going to become available to developers on their own developer instances?There is a lot of useful functionality that could be leveraged with this role that could be used to crea...

paulmorris by Giga Sage
  • 7536 Views
  • 3 replies
  • 1 helpfuls

Difference between g:include_scripts and g:requires?

Hi,I was working over UI Pages and needs to include a custom js. It's pretty simple I know, I included g:requires tag to call my custom js. But suddenly, it clicked me that I can do the same thing using g:include_scripts tag as well.I tried to find m...

Artemis15 by Kilo Guru
  • 6025 Views
  • 4 replies
  • 3 helpfuls

Embedding iframe within a form

I'm trying to figure out how to add an iframe to a form.   Specifically, we're trying to add a link to an incident form that will allow a user to click the URL to open a frame with our internal link embedded within.   It seems that we can add a URL (...

sysparm_view not returning expected response in REST API

Hi team,Started working with REST API and trying to retrive some data from Event table using encoded query along with custom view.Encoded query worked fine and got the response.Howver when I include the custom view then also it returned whole columns...

Mahesh120 by Tera Expert
  • 3272 Views
  • 4 replies
  • 0 helpfuls

Business rule only for list view

Hi,I have a business rule for the list view updation of the table I dont want that business rule to run when the form level update takes place.Is there any solution where I can restrict this business rule to run only on list view of the table?ThanksU...

uma17 by Tera Guru
  • 3701 Views
  • 4 replies
  • 1 helpfuls

Resolved! Transferring Groups & Group Memberships between instances

Hello,  I noticed when I was working in an update set I created, one of the things I did was create a new Group and add new users/members to it. However, when I moved the update set over to our production instance, the new Group did not come with it....

Resolved! Inbound Email action issue

Hi,I have a Inbound action to approve or reject a change ticket via email and the Inbound action is on sysapproval table. When a user responds to the email to approve/reject a change (Group approvals activity) only one record gets updated to Approved...

vamsee1 by Mega Contributor
  • 4248 Views
  • 26 replies
  • 0 helpfuls

Resolved! How can I call a script from within an ACL?

Basically the problem I am running into right now is getting a security context to properly pull a value back for use on an incident ACL.This is the incident read ACL in its current state:   current.opened_by == gs.getUserID() || current.caller_id ==...

bcronrath by Kilo Guru
  • 5086 Views
  • 6 replies
  • 0 helpfuls

Change ServiceNow URL

Greetings!The company I work for has decided they want to change the name of their ServiceNow instance URL. When they purchased SN they only intended to use it for Incident Management, so we have the text "helpdesk" in our URL. Now we use ServiceNow ...

kdaggs by Kilo Contributor
  • 2664 Views
  • 3 replies
  • 0 helpfuls

Resolved! Document ready UI Script

I'm trying to use a document ready function in a UI Script to capture the current user... var $j = jQuery.noConflict(true);               $j(document).ready(function () {                       user = gs.getUserID();                       alert(use...