- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-05-2023 02:28 AM
I want to show help text to short_desription field in service opetation workspace.
I configured lable and given hint text but it is affecting only to platform view.
I want this feature in service opetation workspace also
*Please suggest me the way to do it
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-05-2023 02:44 AM
Hi Kishore, you can use field decorator module under workspace application to show the tooltip.
Refer the below link:
Example:
Harish

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-05-2023 02:44 AM
Hi Kishore, you can use field decorator module under workspace application to show the tooltip.
Refer the below link:
Example:
Harish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-19-2025 12:47 AM
Hi @Harish KM ,
i wanted a solution that the tool tip should be changed to french when a french user logged in.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-05-2023 02:47 AM
Hi @Kishor O,
You could use annotations to display the information Set up form annotations (servicenow.com)
or
You could look at Set up field decorators in Configurable Workspace (servicenow.com)
Help others to find a correct solution by marking the appropriate response as accepted solution and helpful.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-05-2023 02:56 AM
Hi @Kishor O
Besides, you can achieve it with a simple client script OnLoad which is specific for this view "sow".
g_form.showFieldMsg('<field_name>', '<help_text>', 'info');
Cheers,
Tai Vu