Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

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

Forum Posts

Resolved! Remove Suggestion from Short Description

I created an app extended from task table.  I reused short description field.  Is there a way to hide the suggestion button that appear next to short description for this table?  It is not needed and would possibly cause confusion for the users.  I'm...

Query table data to display in a Service Catalog field

Hi Community, I have a question about Service Catalog variables.   <field A> A user selects an item name (in the image below, the variable name is "u_item_name_men") <field B> A user selects whether or not s/he wants the item new or second hand ("u_i...

find_real_file.png
L_10 by Kilo Contributor
  • 3732 Views
  • 19 replies
  • 3 helpfuls

Resolved! How to send email after the import

Hi All, I have read few threads but I am a bit confused. I have an email which sends notification to my instance with attachment. I have an inbound email action that copies the attachment to my data source and trigger a workflow. My workflow waits fo...

MMKK by Tera Expert
  • 1859 Views
  • 1 replies
  • 0 helpfuls

How to disable a field using sn-record-picker?

Hello! I am currently working on a form where I need to disable the approver field when a requester is a manager. I already used sn-disabled but it's not working for me.<sn-record-picker field="approverField" sn-disabled="c.data.manager" table="'sys_...

Resolved! Background script help - array

I have the below background script, which will display matching Short description. I'm not getting the output properly var arr = []; var regex = /SAP/i; var strSD=''; var stdDesc=''; var gr = new GlideRecord('incident'); gr.query(); while (gr.next())...

Resolved! How to link to a specific catalog on service portal

Hi all, My client has 3 different service catalogs. On the portal I have created 3 link buttons. I want each link to go to a specific catalog and not the general service catalog page which displays all catalogs automatically. Where can I find the lin...

Resolved! Hide a field from a list view

Hi, I want to hide a field/column from a list view using only the attribute section of the field, if that's possible. I DO NOT want to use ACLs.   Thanks

hamidouche by Kilo Expert
  • 2173 Views
  • 4 replies
  • 0 helpfuls

Resolved! Catalog Item Show/Hide According to Multiple Choice

Hello, So I am making a multiple choice with 3 options (1, 2, 3), and upon selecting these, it will show or hide subsequent single-line variables. My problem is that I can't think of the logic behind a UI Policy or onChange script to allow me to do t...

Sean78 by Kilo Contributor
  • 1881 Views
  • 4 replies
  • 1 helpfuls

Resolved! How to get display value of choice field values?

Hi guys, I have a table and it has a choice field ('u_model_name'). I want to query the choice field and i would like to get its labels. following is my code which i have run in Background scripts: var choice = [];var audi = new GlideRecord('u_audi_s...