We've updated the ServiceNow Community Code of Conduct, adding guidelines around AI usage, professionalism, and content violations. Read more

Help Identifying Source of Form Message Trigger

Lisa Goldman
Kilo Sage

Hello,

 

This is a scope application. When the form loads, the following message is displayed: 

 

LisaGoldman_0-1769110044484.png

 


This message was configured in the Messages table. I am trying to determine where it is being called from.

 

LisaGoldman_1-1769110109139.png


I have checked the Business Rules and Client Scripts (filtering for the script name software_request_form_main_section_header), but I have not been able to locate it.

 

Please advise.  Thank you

4 REPLIES 4

Diogo Ramos
Giga Sage

Did you check if the form has annotations for example? What about scripted ui policies ?

You can also try to do a code search with that  software_request_form_main_section_header key.

-> Another tip is to add the related list "versions" to the sys_ui_message table, and see which update set was used to create that key, maybe from inspecting the update set you can see what else was done on that update.

I hope this helps 🙂

Hi @Diogo Ramos 

I did try the search code, but had no luck, so I posted the question to the community for assistance.  Thank you

Goka Srinu
Tera Contributor

Based on what you asking, this message usually occurs in 2 cases. 

  1. onLoad Client Script.
  2. Display Business rule.

Check in both the Client scripts and the Business rules that script contains "software_request_form_main_section_header", so that you will get to know which script is responsible for showing that message.

Hi @Goka Srinu  

I did tried your suggestion before posting the question.  Thank you