- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2025 05:23 AM
Hello! Can anyone know where to change the button label in the Satisfaction Survey in ServiceNow please ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2025 05:48 AM
Hello @ahmed-24 ,
To change the button label you’ll need to customize the widget that renders the survey.
By default, it uses the "Surveys and Assessments" widget. If you’re using the OOB version, you can follow these steps:
-
First, identify which widget is being used.
On the survey page, press Ctrl + Right Click on the page and then select show widget customizations — it will show the widget name and allow you to open it directly. -
If it's the OOB widget (usually titled Surveys and Assessments), clone it
-
In your cloned widget, go to the HTML template section and look for the button with the label Get Started
-
Replace the label text with your preferred one.
Here’s a direct link (replace your instance name in the URL) to access the OOB widget directly if needed:
https://<your_instance_name>.service-now.com/sp_widget.do?sys_id=5cbb8f1053313010561cddeeff7b1272
Let me know how it works for you !
🔹 Please mark ✅ Correct if this solves your query, and 👍 Helpful if you found the response valuable.
Best regards,
Aniket Chavan
🏆 ServiceNow MVP 2025 | 🌟 ServiceNow Rising Star 2024
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2025 06:15 AM
Hello @ahmed-24 ,
Don't need to clone the widget you can create record in system UI message (sys_ui_message.LIST).
I tested it on my PDI and it is working
Thank you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2025 08:22 AM
@Aniket Chavan as you can see in the pictures i made a clone and i change the label but it's not refreshing
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2025 08:48 AM
Hey @ahmed-24 ,
You don't need to clone the widget as explained in my previous post, just add the key and message in 'sys_ui_message' table, it will helpful even for other region people, when they want to see that button in their regional language. No need to change the OOTB behaviour.
-----------------------------------------------------------------------------------------------------------------------
Please mark as helpful or accept as solution for any reply which solves your issue. If there any suggestion or stuck anywhere, feel free to post a reply or message me.
You coordination will help community to grow stronger!
Thanks,
Bhimashankar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2025 05:51 AM
You have to duplicate and update the Surveys and Assessments widget.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2025 06:11 AM
Hey @ahmed-24 ,
The label of 'Get Started' you can change by creating key & message in 'sys_ui_message' table, because in server side script of the 'Surveys and Assessments' widget there is line of code and this will fetch the message from 'sys_ui_message' table.
data.getStartedMsg = gs.getMessage("Get Started");
I have highlighted that line code(line 143). Probably you don't need to clone the widget and align the dependency.
Give it try.
Thanks,
Bhimashankar H
-------------------------------------------------------------------------------------------------------------------------------------------
If my response points you in the right directions, please consider marking it as 'Helpful'. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2025 06:15 AM
Hello @ahmed-24 ,
Don't need to clone the widget you can create record in system UI message (sys_ui_message.LIST).
I tested it on my PDI and it is working
Thank you.