A new Flexera Community experience is coming on November 18th, click here for more information.
Most messages displayed in FNMS are taken from the [SystemShutdown] database table. This table holds the message text, and the time period when the message should be displayed.
In this table, there is no way to create messages that are specific for a user account.
As an example, in case you want to display a 'Happy Easter Holidays' message in English from April 17th, 2022 (Easter Sunday) until April 18th, 2022 (Easter Monday), you can insert a row into the [SystemShutdown] table using the SQL code displayed below.
The FNMS message area is intended for displaying warning alerts.
I have to admit that displaying an Easter greeting in this message area is not a perfect use case, but you get the idea 😎 ...
INSERT INTO [ComplianceResourceString](ResourceString)
VALUES('MessageHappyEaster')
INSERT INTO [ResourceStringCultureType](ResourceString, CultureType, ResourceValue)
VALUES('MessageHappyEaster', 'en-US', 'Happy Easter Holidays')
INSERT INTO [SystemShutdown]
(
MessageResourceName
, StartTime
, EndTime
)
VALUES
(
'MessageHappyEaster'
, DATEFROMPARTS(2022,4,17)
, DATEFROMPARTS(2022,4,18)
)
Messages about your FNMS license expiring may be triggered elsewhere - check the [SystemShutdown] table, please - but they should not be user specific, too.
‎Mar 21, 2022 03:32 PM
I can't think of any reason why the license warning message would appear for one user but not another (unless the 2nd user did see the message and has dismissed it). In my experience, all users will see this message.
NB. The license warning message is a different type of message from the messages in the SystemShutdown table that @erwinlindemann has mentioned.
‎Mar 22, 2022 02:37 AM
User | Count |
---|---|
8 | |
7 | |
3 | |
3 |