I managed to create this:
In de expression editor (in modeling -> Ctrl-E) create the following expressions (all type string):
MyDate = StringUpper(dateTimeString("localTime?", True))
MyDay = subString(MyDate, 9, 10)
MyMonth = subString(MyDate, 5, 7)
MyYear = subString(MyDate, 21, 25)
MyTimeStamp = MyDay + " " + MyMonth + " " + MyYear
Then in Drafting pasted this text into a note: <X0@MyTimeStamp>
The only thing I'm not able to do (without opening the expressions editor) is update the expression. Is there a shortcut for that?