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

How to display user specific column values in list collector?

Harish6
Giga Contributor

Hi Team,

I am using list collector on service catalog form with cmdb_ci_service as list table reference table. By default i am able to see the Name column values in the list i want to show Approval Group column values instead of name.

How to get this Please help me..

Thanks In advance.

 

3 REPLIES 3

Kieran Anson
Kilo Patron

Hi Harish,

If you're referencing the display value of the record, this can't be changed based on where you're referencing it. A table can only have one display value which is global.

Ankur Bawiskar
Tera Patron

Hi Harish,

As mentioned by Kieran there can be only 1 display value field on table

if you wish to display extra field information when user types in then you can use variable attributes ref_ac_columns

Example below:

you need to give the ref_ac_columns attributes for that and give the additional fields

ref_auto_completer=AJAXTableCompleter,ref_ac_columns=category;serial_number,ref_ac_columns_search=true,ref_ac_order_by=name

Variable attributes sections

find_real_file.png

Output: I have added category and serial_number as extra fields to be shown along with name

 

Regards
Ankur

Regards,
Ankur
Certified Technical Architect  ||  10x ServiceNow MVP  ||  ServiceNow Community Leader

Not applicable

Thank you all, this exactly helped me out.

I also noticed we can change the table Display Value by following this documentation:

https://docs.servicenow.com/en-US/bundle/tokyo-platform-administration/page/administer/field-adminis...