Update field with value which is adding in related list
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2026 12:13 AM
There is custom field on sys_user table u_skill which is used to display skills. There is related list under user table which sys_user_has_skill . I trying to add the skill from related list and want that to display in u_skill field but I am getting the result.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2026 12:34 AM
I’ve implemented the same script for your use case in my PDI, and it’s working as expected.
Please ensure the Business Rule is configured to run "After" "Insert" on the sys_user_has_skill table.
This script will not work if it runs in Before.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2026 05:25 AM
Yes I am using after but the all the skills are not visible on field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2026 02:33 AM
You’re right—this happened to me as well.
I found that the string field length was insufficient, which is why all skills weren’t updating. After increasing the length to 1000, it worked as expected: all 8 skills are now updated in the skill field and are correctly reflected in the related list -
