- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-08-2026 02:57 PM
Hi all,
I want to add a Employee number field in the work details section which is available in the my profile of service Portal.
I tried adding a field in work details section from sn_employee_overview_section TABLE. But still the changes are not reflecting in portal?
I have attached the image.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-11-2026 02:05 PM
@Abishek1998 Have you tried to edit the widget directly in the portal? Maybe using page designer will help.
User ProfileEmployee Profile- or a custom clone
Check the widget’s HTML / server script
Look for something like:
or:
data.user.employee_number = user.employee_number;
If it is using $sp.getUserRecord()
Then the issue is usually:
- The field is not on the sys_user table
- OR it’s not readable due to ACLs
Check:
- Is your employee number field actually on
sys_user? - Does it have read access for the logged-in user?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-11-2026 02:05 PM
@Abishek1998 Have you tried to edit the widget directly in the portal? Maybe using page designer will help.
User ProfileEmployee Profile- or a custom clone
Check the widget’s HTML / server script
Look for something like:
or:
data.user.employee_number = user.employee_number;
If it is using $sp.getUserRecord()
Then the issue is usually:
- The field is not on the sys_user table
- OR it’s not readable due to ACLs
Check:
- Is your employee number field actually on
sys_user? - Does it have read access for the logged-in user?