- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-28-2023 09:51 AM
Hello community,
I want to display the related list of the Problem record on the list view of the Problem. How I can achive this functionality without using the code?
Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-28-2023 09:21 PM
Hi @Suraj02
please follow the instructions on https://docs.servicenow.com/bundle/vancouver-platform-administration/page/administer/list-administra...
Maik
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-28-2023 09:31 PM
Hello @Suraj02,
You can achive this using the 'Hirarchical List' functionality. Below is the steps to activate the 'Hierarchical lists' on your specified table:
1. Go to the list view of your table records.
2. Right click on any column label.
3. Go to the Configure > List Control > Hierarchical lists.
3. Set the Hierarchical lists checkbox to TRUE and update the form.
4. Go back to your List View, You can see a small '>' at the start of the record. Click on that icon to see all your related lists associated with that record.
The output result will be look like this:
If my answer solves your issue please mark it as 'Accepted Solution' and marked it as 'Helpful'.
Thank You!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-28-2023 09:33 PM
Hello @Suraj02 ,
I am not about the business requirement here, but you can achieve this using OOTB functionality of related list.
1. Open problem records, right-click on header > Configure > related list. Here you will OOTB related list to add there is a one Related list 'Problem > Parent' that you can use to show problem records ehich are the child of current records.
2. Another way is to create custom related list. So for that Navigate to System Definition > Relationships. In here you can create New record. Something like below:
In this you required very low code to query the records. And show as list. After creating you can add this list to record form with same procedure as point (1).
See the below Demonstration video to create related lists.
How to create Related List | Relationships in ServiceNow.
Kindly mark the answer ✔️Correct or Helpful ✔️If it addresses your concern.
Regards,
Siddhesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-28-2023 10:30 PM
Hello @Siddhesh Gawade, I want to display the all the related lists of my Problem record on the List view of the Problem records. And I am now able to see this using the Hirarchical list functionality. Thank You for your response as well.