ServiceNow IDE, SDK, and Fluent forum
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Forum Posts

I want to implement a case in which incident should not get saved unitl and unless a kb is attached

//This should be only when assignment group is service desk.//Here's the code I have written but when using this , it is throwing the error even after attaching the kb  function onSubmit() {var kb=g_form.getValue('knowledge_base');var assignmentGroup...

Querry on Table based on date

Hi guys, i want to add a module to my navigator. When i click on this module i want to see all knowledge articles within next 60 days.  Problem is, that in the filter dropdown is no "Next 60 days" available. Can someone help me with this problem? 

JuliaWeis98_0-1758870545919.png
JuliaWeis98 by Tera Contributor
  • 272 Views
  • 1 replies
  • 0 helpfuls

NowSDK Metadata Conflicts

Hi community,Hope you're all doing fine. After upgrading to the NowSDK v4.0.0 release, I've been getting weird WARN messages when running the transform command in a NowSDK app developed locally in my computer. It looks like it's getting confused as t...

How to bypass the ACL ?

Hi All, I have an ACL which is making problem field is editabe only for admin on incident form, I have written an business rule for linking incidents to problem record form 'incidents'  related list , so that other users can add incidents to problem....

Nilesh Pol by Kilo Sage
  • 1229 Views
  • 6 replies
  • 0 helpfuls

Use ACL to modify field values to reflect on the client side without altering the data on the server

For example, I want the `short_description` field of the `incident` table is shown as "123" .I can create a read ACL and write a script, `current.short_description = '123'`. I found it is OK for ListView or Form, but when clicking "Group By Short des...