Hi Etienne,
Do we have an option to hide this message. Also which services or settings publish this message?
Cybersecurity
DevOps Cloud
IT Operations Cloud
If an answer to your question is correct, click on "Verify Answer" under the "More" button. The answer will now appear with a checkmark. Please be sure to always mark answers that resolve your issue as verified. Your fellow Community members will appreciate it!  Learn more
Hi Etienne,
Do we have an option to hide this message. Also which services or settings publish this message?
Hi Urva,
I'm pretty sure this message can be hidden with some custom CSS set in the admin console. However, I don't think that it's displayed by a service - it will be displayed depending on your Staffing Profile content (as per message content).
Hi Urva,
You can customize the CSS in Administration Console-> Administration Task -> Theme Customization to hide this message.
1. Copy and paste below CSS to CSS Editor, Save the CSS.
#spDetails #warnNonZeroUnmet{
display:none;
}
2. Go back to your staffing profile and refresh page.
Thanks,
Sharon
Hi Sharon,
This helped to hide "Because assigned resources may belong to a different region than the position's associated resource pool, unmet demand may be non-zero even if assigned FTEs match requested FTEs" message. However, we need to hide this message as well "The positions with task IDs are synchronized from work plan. PPM suggests that you do not edit them since your edits will be lost after the next synchronization."
I tried to locate the id in developer window, is it possible to hide this message as well?
You can use below CSS to hide both message.
#spDetails .informative > span {
display: none;
}
Thank you Sharon. This worked and is really helpful. :)