- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2024 01:50 PM
Hello,
I would like to know if it is possible to add a content item to everyone's Favorites widget on the Employee Center Portal? For example, if we released a new Catalog Item and wanted to highlight it and gain more attention/traffic for the first month, we would be able to do so.
Thanks,
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2024 10:11 PM
Hi @madgodinez yes it is possible, the favorites are stored in sp_favorite, see example below, shows a favorite app and a favorite KB. As you can see they are user specific, so the background script you write will have to create appropriate record for each user you want a favorite to.
Hope this helps
--
Bala G
Please mark this as a solution or as helpful, depending on its utility
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2024 10:11 PM
Hi @madgodinez yes it is possible, the favorites are stored in sp_favorite, see example below, shows a favorite app and a favorite KB. As you can see they are user specific, so the background script you write will have to create appropriate record for each user you want a favorite to.
Hope this helps
--
Bala G
Please mark this as a solution or as helpful, depending on its utility
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2024 09:32 AM
Okay, thank you! I figured that would be the solution.