Change the fields displayed in the header of the form screen.

Tepp
Tera Expert

Hi,

Where can I change the fields displayed in the header of the form screen?

Thank you in advance.

スクリーンショット 2025-06-05 102216.png

2 ACCEPTED SOLUTIONS

Ankur Bawiskar
Tera Patron
Tera Patron

@Tepp 

the field which is marked as Display=true at dictionary for that table is shown in that form header.

Unfortunately you cannot add more than 1 field there.

If you want then you can use DOM manipulation but that's not recommended.

Also another way would be to have a string field which concatenates multiple field values and then you mark that field as Display=true at dictionary, but remember this will be impacting entire instance where this table is being referred.

If my response helped please mark it correct and close the thread so that it benefits future readers.

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

View solution in original post

phgdet
Mega Sage

Hi @Tepp
Go to the dictionary of that table and change the Display value of Number to false, and your desired field to true. Here I have an example of Short description field.
Screenshot 2025-06-05 at 11.34.17.png

It will show Short description field as the picture below

Screenshot 2025-06-05 at 11.34.46.png

View solution in original post

6 REPLIES 6

SANDEEP DUTTA
Tera Patron
Tera Patron

Hi @Tepp ,

Do you want to add another field next to incident number?

 

Thanks,
Sandeep Dutta

Please mark the answer correct & Helpful, if i could help you.

Hi @SANDEEP DUTTA ,

I would like to display the value of another field instead of the incident number.

Thank you.



Ankur Bawiskar
Tera Patron
Tera Patron

@Tepp 

the field which is marked as Display=true at dictionary for that table is shown in that form header.

Unfortunately you cannot add more than 1 field there.

If you want then you can use DOM manipulation but that's not recommended.

Also another way would be to have a string field which concatenates multiple field values and then you mark that field as Display=true at dictionary, but remember this will be impacting entire instance where this table is being referred.

If my response helped please mark it correct and close the thread so that it benefits future readers.

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

Hi @Ankur Bawiskar ,
I want to display the value of another field instead of the incident number.
Is it possible to display the value of any field in the form header?


Thank you .