Couldn't find info message

MS17
Tera Contributor

Hi All,

 

I have created a Request from Universal Request using UI action "Create Request". once catalog item is created, i could see this info message "A new request REQ0010241 is created. You can opt to close the existing UR0010272 if it is no longer required." (OOTB) I need to disable it, I have checked BR, script include, i couldn't find it, any suggestion would be helpful.

MS17_0-1739858776670.png

Thanks.

 

8 REPLIES 8

akashkumar1
Mega Expert

Hi @MS17 ,

The info message "A new request REQ0010241 is created. You can opt to close the existing UR0010272 if it is no longer required." is likely coming from a UI Action, UI Policy, or a system message from a Workflow or Business Rule.

Since you have already checked Business Rules and Script Includes, I suggest the following steps:

1. Check UI Actions

  • Navigate to System Definition > UI Actions.
  • Search for UI Actions related to "Create Request" or "Universal Request".
  • Look for any scripts that generate this message and disable or modify them.

2. Check Workflow Notifications & System Messages

  • If the request creation is part of a Workflow, check Flow Designer or Legacy Workflows for any script adding this message.
  • Navigate to System UI > Messages and search for the message text.
  • Modify or remove it if necessary.

3. Check Client Scripts or UI Policies

  • Navigate to System Definition > Client Scripts.
  • Search for any scripts associated with Universal Request or Request Creation.
  • Also, check UI Policies that may be responsible for displaying messages.

4. Check ‘addInfoMessage’ in Server-Side Scripts

  • Since this is an info message, it could be set using:
     
    gs.addInfoMessage("A new request REQ0010241 is created. You can opt to close the existing UR0010272 if it is no longer required.");
  • Run a global script search (if you have admin rights):
    • Go to System Definition > Scripts - Background.
    • Run the following script:
       
      var gr = new GlideRecord('sys_script'); gr.addQuery('script', 'CONTAINS', 'addInfoMessage'); gr.query(); while (gr.next()) { gs.print(gr.name + " - " + gr.script); }
    • This will return scripts using addInfoMessage(). If found, modify or disable it.

5. Check Process Automation / Flow Designer

  • If your instance uses Flow Designer, open Process Automation > Flow Designer.
  • Look for any flow related to Universal Request creation.
  • If a notification or message step exists, disable or modify it.

Try these steps, and let me know if you find the source of the message!
@MS17   If this helps, mark it as Helpful & Correct!

Ankur Bawiskar
Tera Patron
Tera Patron

@MS17 

Did you try to search in Studio for the message?

If my response helped please mark it correct and close the thread so that it benefits future readers.

Regards,
Ankur
Certified Technical Architect  ||  9x ServiceNow MVP  ||  ServiceNow Community Leader

Rushi Savarkar
Kilo Sage

Hello @MS17 

The info message is OOB and it is coming from "com.glideapp.servicecatalog_checkout_view_v2" UI page for sure. 

URL: https://your_instance.service-now.com/sys_ui_page.do?sys_id=4e86e9a1d7722100f2d224837e610376&sysparm...

I don't think we can edit/delete the OOB message but still I will try to find out the way if possible.

 

If this helps, mark it as Helpful!

Thank!

If my response helped you, please accept the solution and mark it as helpful.
Thank You!

Hi @Rushi Savarkar ,

 

I have checked the url you provided, I could see the html script, but still didn't understand where that message actually coming from...

 

Thanks.