- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-13-2018 07:03 AM
Hello,
on servicenow mobile application, when an user click on Follow button on an incident record It is shown:
I like this message, but I would like to remove the link on "Incident.INC...".
It is possible?
The script on Follow UI Action - Mobile is the same that the Follow on Live Feed UI Action. It is:
new GlideappLiveFeedUIAction().follow(current);
Greetings
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-13-2018 07:20 AM
If you know where the message is getting triggered, an alternative could be to clear the message right after is triggered and replace it with the one of your own. Now, you have to be aware that you're then taking ownership of the object to modified to make this happen... so you will need to think... is this throughly worth it? Is there a good business reason to remove that "Incident.INC..."
I believe the method i once read that could be used for something like this is gs.flushMessages().
Thanks,
Berny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-13-2018 07:14 AM
Unfortunately that message is hard coded in sever side java and it cannot be modified through configuration. I would suggest opening an enhancement request in Hi.
Please mark this post as helpful or the correct answer to your question if applicable so others viewing may benefit.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-13-2018 07:21 AM
Hi Michael,
I was afraid that was it.
Thanks a lot for your help!
Greetings
Best regards
Jose
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-13-2018 07:20 AM
If you know where the message is getting triggered, an alternative could be to clear the message right after is triggered and replace it with the one of your own. Now, you have to be aware that you're then taking ownership of the object to modified to make this happen... so you will need to think... is this throughly worth it? Is there a good business reason to remove that "Incident.INC..."
I believe the method i once read that could be used for something like this is gs.flushMessages().
Thanks,
Berny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-13-2018 07:26 AM
Hi Berny,
gs.flushMessages() was my solution for that. With it I managed to rewrite the message without the link.
Thanks a lot for your help!
Greetings
Best regards
Jose