I have a global with multiple nodes :
^A("ABC") = ""
^A("DEF") = ""
^A(123) = ""
How to create a new single node in that global, in a way it's always at the end of the global (eg: this will be the very last node being enumerated)
I end up with this code but maybe there is a cleaner and simpler approach :
set ^A($char(65535)) = "" //should be bigger than any character inserted
set ^A($char(255)) = "" //some systems does not seems to support >255 characters, this might be safer
I only need to write it once, this code is not intended to be used in a loop or something, just to add something at