- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-19-2022 01:36 AM
Hi,
In the user table related list "Skills", i want to show only L1 skills by default and add another related list where i want to show L2 skills. "Skills" related list in user table is referring to user_skill table where skill is a field which is referring to skill table. In skill table we have level as L1 and L2. How can i add default filters in the user table?
Solved! Go to Solution.
- 4,269 Views

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-19-2022 02:51 AM
You will have to create a custom Relationship.
Navigate to System Definition -> Relationships -> New
Name : L1 Skills
Applies to table : sys_user
Queries from table : sys_user_has_skill
Query with (Script):
current.addQuery('user', parent.sys_id);
current.addQuery('skill.level_type.name', 'L1');
The on your user record , you will go to Configure -> Related List and add 'L1 Skills'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-19-2022 02:43 AM
- Navigate to the related list
- Create any desired filter using the condition builder (example, [Active] [is] [true]).
- Click Set as Default Filter.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-19-2022 02:51 AM
You will have to create a custom Relationship.
Navigate to System Definition -> Relationships -> New
Name : L1 Skills
Applies to table : sys_user
Queries from table : sys_user_has_skill
Query with (Script):
current.addQuery('user', parent.sys_id);
current.addQuery('skill.level_type.name', 'L1');
The on your user record , you will go to Configure -> Related List and add 'L1 Skills'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-19-2022 03:46 AM
Hi Anirudh,
Thanks, and it worked. Can you also tell how to set the list view of both the related list? So, if in Skill L1 related list which i have named as Skills, i only want to show fields related to skills and in Skill L2 related list which i have named as certifications, i want to show fields related to certifications like certification type, details etc.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-19-2022 05:29 AM
Hmm... For this, you will to work on both the related list separately.
Right-click (on the related list column)-> Configure -> List Layout.
You should see the Skill field in the Available bucket. Hopefully it should show a + icon.
Click it and you should be able to access the fields on the Skill table...
Bring whatever Skill fields you need to the right bucket.
I'm not sure about certifications, try the same method I guess.