Is there a way to hide global variable from the DATA screen of the TP.
Example :
PROGRAM test
VAR
Var_A : INTEGER --I want this one can be access from the DATA menu of the TP
Var_B : INTEGER -- I don't want to show this one in the DATA menu of the TP, but need to be global
BEGIN
--blablabal
END test
Thanks