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

how to configure form for workspace?

Hi,I created a new customize table and then i created a new sys_ux_list the is reference to this customize table.When I click on the pencil icon to edit the form from the list view inside the workspace im getting this message:  how can I configure fo...

Screenshot 2026-03-03 075156.png
Alon Grod by Tera Expert
  • 160 Views
  • 4 replies
  • 0 helpfuls

Resolved! System UI - UI Scripts - ATF Custom UI Step Config

Hello - This might be an old question, but trying to get some answers or is there any workarounds for this. I am trying to keep the common library of functions in one place, and want to use inside my custom UI step config definitions, instead maintai...

Shan C by Mega Guru
  • 535 Views
  • 5 replies
  • 2 helpfuls

How to populate choice filed value based on other field

Dear Friends, I have a on change client script where I need to populate the channel field as self service when the caller id role is ITIL. but I cant populate the channel field as self servcie. please advise. Here is the On change script.function onC...

seenu_pvr by Tera Contributor
  • 81 Views
  • 1 replies
  • 0 helpfuls

Resolved! Copy work_notes from closed task to new task

Hello.I have a catalog item that generates 2 tasks. Catalog item is submitted and task 1 generates. When task 1 closes, then task 2 generates.What I would like to do is when task 1 closes, copy ALL work notes from task 1, and add them to task 2.I onl...

Issue on flow desinger approvals

I am working on a requirement in Flow Designer where the trigger is a Service Catalog request. Based on a variable selected in the associated catalog item, the flow must initiate two level approval process. The first level is a Manager approval, and ...

learnSN by Tera Expert
  • 2803 Views
  • 8 replies
  • 0 helpfuls

Client Script FX Currency calculations

I have this client script using FX Currency Fields:     var unit_price = g_form.getValue('unit_price');    g_form.addErrorMessage('FX ' + unit_price);    var currencyCode = unit_price.split(';')[0];     var unitCost = parseFloat(unit_price.split(';')...