Replicate Hi Support Top Blue Box Announcement

davidsizu
Giga Contributor

Is there a straight forward way to replicate the behaivor of the current top blue box that Hi Support displays for announcement?

Thanks,

David

Screen Shot 2017-02-21 at 4.00.01 PM.png

Screen Shot 2017-02-21 at 3.59.38 PM.png

1 ACCEPTED SOLUTION

Vinamra Misra
ServiceNow Employee
ServiceNow Employee

Hi David [davidsizu ],



This is a custom implementation in HI. In the Header widget attached to the theme of the portal, you can make below modification to achieve this.



Server:


- Fetch the systemwide notification properties from the sys_property table.


- If the notification is only for logged in user - use gs.isLoggedIn() to determine if the notification is for guest/authenticated user. Since the header is also visible on the unauthenticated page, you might want to add this check.



Sample code:


              data.securityMessageText = gs.getProperty('systemwide.security.message.text', '');


              data.securityMessageLinkURL = gs.getProperty('systemwide.security.message.linkurl', '');


              data.isLoggedIn = gs.getSession().isLoggedIn();



HTML Template:


- Update the HTML to show the custom announcement banner


- Use the above data properties to show data.



On cancel, we are storing the state in the session so that the message will not appear for the current session of the user.


View solution in original post

13 REPLIES 13

Hi Vinamra, thank you for your response, it sounds very promising.



I have a question based on this. Are the systemwide notifications properties restricted to ServiceNow personnel access only? Im now able to find it in the sys_properties table neither in Istanbul or Helsinki versions.




Thank you,


David Silva


Hi David,



I checked the OOB instance and it looks like the properties are also custom created even before my time.


You can create new properties to hold the text and URL separately and use them as above.



Let me know if you need more details for implementation.



Thanks,


Vinamra


Hi Vinamra,



do you have sample html code to achieve this? do we need to update client controllers also along with server script and html?



Thanks,


Radhika


So is this announcement only possible in the portal, or the platform as well? I noticed the screenshot above has it on the platform.

Teena Singh
ServiceNow Employee
ServiceNow Employee

Hi David,


The Customer Experience team is striving to ensure that customer queries posted from the HI Service Portal are answered in timely and accurate fashion.


If you feel your question has been resolved, please mark the appropriate reply in the thread as being the Correct Answer.


Thank you in advance.



Regards,


Teena Singh
Customer Experience: UX Strategy and Customer Insights
teena.singh@servicenow.com


ServiceNow


Screen Shot 2017-01-19 at 8.55.52 AM.png