A single reference field that displays records from two different tables

beycos
Tera Contributor

Hello Everyone, 

 

in ServiceNow, is it possible to create a single reference field that displays records from two different tables? I want one reference field that shows both departments and groups as selectable options. Is there any supported way to merge multiple tables into one reference source?

Any guidance would be appreciated.

 

6 REPLIES 6

tejarekanda
Tera Expert

Hi @beycos ,
Use the Document Id field Type , for this use Form Builder.

Configure Dictionary Entry as shown
Screenshot 2026-03-30 at 2.36.28 PM.png

It Looks Like as show below
Screenshot 2026-03-30 at 2.38.33 PM.pngScreenshot 2026-03-30 at 2.38.41 PM.png

 

If my response helped, mark it as helpful and accept the solution.
Regards.

iftekharmir
Tera Contributor

Hi @beycos,

Out of the box, a reference field in ServiceNow can only point to a single table, so you cannot directly have one reference field that pulls records from multiple tables like Departments and Groups together.

However, there are a few approaches you can consider depending on your requirement:

Option 1: Use a common parent table (recommended if applicable)

If both records can logically belong to a common base table (for example, extending from a shared table), you can:

  • Create a reference to the parent table
  • Use a reference qualifier to filter specific record types

Option 2: Create a custom “mapping” table

Create a custom table (e.g., u_reference_union) that stores:

  • Display value
  • Reference to Department OR Group
  • Type (Department / Group)

Then:

  • Populate it via Business Rule / Scheduled Job
  • Point your reference field to this table

This gives you a single unified reference list

Hope this helps!
If you found this helpful, please mark it as helpful 🙌
Regards,
Iftekhar