Shouldn't be a problem, $ZTZ isn't the only thing you can change.
Whatever value or setting you change, $namespace, $zeof, $horolog, etc. you have to consider a simple rule, if you change things (which can be used by subsequent routines, methods, etc.) for your own use, then after using them, you have to restore them to their original value. That's all.
YouRESTorWHATEVERmethod()
{
set oldZTZ=$ztz
set $ztz=<your preferred value>
...
set $ztz=oldZTZ
return
}
- Log in to post comments