Creates a new system wide announcement banner. Use the ClientSyncCommunicationMethod setting to show the banner for users without them having to reload the page.
This feature is meant for announcements that affect multiple users. For information that require specific actions, use a notification with a link instead.
These banners should be used sparingly as not to overwhelm users or disturb their work flow.
May use the following optional temp tables
CREATE TABLE #AnnouncementBannerText -- Omit this table and use @BannerText if language support is not needed.
(
LanguageId int NOT NULL, -- Language to display the corresponding text for.
BannerText nvarchar(300) NOT NULL
);
CREATE TABLE #AnnouncementBannerUser
(
UserId int NOT NULL -- User to show the banner for. Omit the table to show for all users.
);
Possible value | Description |
---|---|
Error | |
Informational | |
Success | |
Warning |