You can do this in DOORS (Classic 9.x) with a small DXL "Open Module" trigger so everyone sees a popup when that module opens.
// Shows a warning/info box every time this module is opened
Module m = current
if (!isBaseline(m)) // optional: don't show for baselines
{
warningBox("⚠ WARNING:\nThis module contains regulated content. "
"Read the header notes and follow the handling procedure before editing.")
// Or: infoBox("…") if you prefer a neutral message
}
------------------------------
Suchuan Guo
Consulting service engineer
NANJING Harbor co., LTD
------------------------------