- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2021 05:15 AM
Hi,
I'm trying to build a database view from one table (technical service table) to a reference field (PII data) on that table so I can see a many to many list view.
This is the related list at the bottom of the first table
So I want to have a list view of each technical service with each corresponding PII Data name.
Can anyone help with going about this.
This is what I have so far. But I don't know what the where clause should be? This is my first time doing a database view. I can't find a common field on each of the tables to link in the where clause. Maybe I am doing something wrong.
Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2021 09:38 AM
I've just realised I might have been looking in the wrong place, and instead created a custom m2m table for what I needed.
Thanks Ankur anyway for your help!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2021 05:41 AM
Hi,
update your where clause for u_pii_data table as this
pii_source_system = techser_sys_id
Ensure you add Source System field as View Field for PII Data table
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2021 08:01 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2021 08:18 AM
Hi,
which field on PII Data holds the reference to technical service table?
You need to use that here
pii_source_system = techser_sys_id
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2021 08:27 AM