Attributes used for List type

saaniya
Kilo Contributor

I have a 'list' type field on the incident table that refers to 'Group' table. I can use this field to add multiple groups at a single time.

Now when I trigger an assessment for this, i want that the assessment should be auto received by these groups.

So in the trigger conditions 'user field' i need to set up proper reference attribute to pick up data from watch list.

Can u suggest the attributes used for 'list' type fields

find_real_file.png

 

This is the watchlist created, and I want this field to be seen under

find_real_file.png

 

It's reference attribute is

find_real_file.png

 

All i am looking is for the correct attribute to show the name of the IM1 Field in the User Field .

Please suggest.

2 REPLIES 2

felladin
Tera Guru

Hello,

 

These are the attributes we have for a list field collecting users:

ref_ac_columns_search=true,ref_contributions=show_related_records,ref_ac_columns=user_name;email;phone,ref_auto_completer=AJAXTableCompleter,no_sort=true,slushbucket_ref_no_expand=true

  • ref_ac_columns_search=true
    • Search in all referenced columns
  • ref_ac_columns=user_name;email;phone
    • Which columns
  • ref_auto_completer=AJAXTableCompleter
    • Show results while typing
  • no_sort=true
  • slushbucket_ref_no_expand=true
  • start_locked=false
    • Means the field is open by default

 

You can find most here:

https://docs.servicenow.com/bundle/jakarta-platform-administration/page/administer/reference-pages/concept/c_DictionaryAttributes.html

 

I hope this helps a little.

With regards

Anton

saaniya
Kilo Contributor

Thanks Anton