- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2019 06:55 AM
Hi ,
I want to add help text under the choice as in the example below,how to do it?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2019 01:42 AM
Hi
Check the below link -
https://hi.service-now.com/kb_view.do?sysparm_article=KB0712308
It is not available for Checkbox variable.
Hope this helps.
Regards,
Omkar Mone
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2019 07:05 AM
Hi,
Is this a catalog item?
you cannot add below it; you can add help text directly to the variable as below
configure that variable; go to Annotation tab
Always expanded - true
Mark ✅ Correct if this solves your issue and also mark 👍 Helpful if you find my response worthy based on the impact.
Thanks
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2019 07:09 AM
Hi Ankur,
Thanks for quick reply, yes adding text under field is possible, i want to add text under each options , is it possible with annotation or macro?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2019 07:11 AM
you can not show msgs between those choice value. either you can choose "help tag" or write on load client script using showFieldMsg() .
if you will use showFieldMsg() , it will appear something like this.
function onLoad() {
//Type appropriate comment here, and begin script below
g_form.showFieldMsg('choice','Request Access to System','info');
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2019 01:39 AM