Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

Option to Update/Delete the topic icon is not visible.

ThiagoPereiraRJ
Giga Contributor

Hi Team!

The portal taxonomy I'm working on has 3 levels.
For levels 1 and 2 I can change the icons, but for level 3 the "[Update][Delete]" buttons don't appear for me.
Has anyone else experienced this?

ThiagoPereiraRJ_1-1762953700653.png

 

 

 

1 ACCEPTED SOLUTION

Hi @Dr Atul G- LNG 

I just solved it in a different way.
I ran a BG Script to clear the value for the icon field and now it is editable

 

var grTopic = new GlideRecord("topic");
if (grTopic .get("topic_sys_id)) {
    grTopic .icon='';
    grTopic .setWorkflow(false);
    grTopic .update();
}

 

View solution in original post

2 REPLIES 2

Dr Atul G- LNG
Tera Patron
Tera Patron

Hi @ThiagoPereiraRJ 

 

https://www.servicenow.com/community/employee-center-forum/taxonomy-parent-topic-icon-missing-update...

*************************************************************************************************************
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.

Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]

****************************************************************************************************************

Hi @Dr Atul G- LNG 

I just solved it in a different way.
I ran a BG Script to clear the value for the icon field and now it is editable

 

var grTopic = new GlideRecord("topic");
if (grTopic .get("topic_sys_id)) {
    grTopic .icon='';
    grTopic .setWorkflow(false);
    grTopic .update();
}