We've updated the ServiceNow Community Code of Conduct, adding guidelines around AI usage, professionalism, and content violations. Read more

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

Forum Posts

Mobile Agent app not showing navigation tab

On mobile agent application navigation tabs are not showing in navigation bar.It is showing only 'Notifications' and 'Settings' tab, All other configured active tabs are not showing up for admin as well as all users.Configured all the navigation tab ...

SudhirG by Kilo Sage
  • 1537 Views
  • 5 replies
  • 1 helpfuls

SLA not attaching for particular account

Hello Experts, I've a weird situation here where I've configured CSM in ServiceNow and SLA is a copy of OOB(only timing have been customized).  I've imported accounts and contacts from company's AD. While I create a case with other accounts, SLA is a...

Nagen by Tera Contributor
  • 596 Views
  • 3 replies
  • 0 helpfuls

Tests related to stories through Agile Board are missing

Hello Community,I'm experiencing an issue when creating tests from the Agile Board in ServiceNow. For each corresponding story, we create tests as shown below: Upon creation, the tests appear correctly linked to the story:However, as time passes, I'v...

mariavic1998_0-1732725537495.png mariavic1998_1-1732725640468.png

ServiceNow Jira webhook is it possible to use OAuth

HiWe are looking to implement the ServiceNow Jira Webhook to enable bi-directional updates. In the push flow from Jira to ServiceNow, the configuration documentation uses API Token.Is it possible to use OAuth instead of the API Token. If not, what ar...

anthonysymo by Kilo Contributor
  • 1030 Views
  • 1 replies
  • 0 helpfuls

Knowledge Articles not showing on portal

Hi everyone, for some reason the articles that are being created and publioshed are not showing on the portal, I dont know if its a problem with the knowledge bases, with the article templates or something else ... can wnyone help with this ?

Record Producer script issue

This script works great except it doesn't change the type (function() {    // Set the caller to the person who submitted the request    current.caller_id = gs.getUserID();        // Set the category and subcategory    current.category = 'Telecom';   ...

ES6 and ServiceNow (const, let and var)

Why does 'const' get processed but 'let' does not? Both are supported in ES6 and not in ES5. The following are run in a background script. For example: const object1 = { a: 'somestring', b: 42, c: false }; Prints:  *** Script: a,b,c Yet,  let object1...