Hi
To make a variable GLOBAL put in code..
GLOBAL gcUSSER,gcREGION,gcDEPT
It is a way to quickly identify what type of variable we have createed.. we use some prefix notations.
g for global, l for local
c for character type
n for numeric type..
l for logical etc..
GLOBAL gcUser, gnUserNumber, glIsAllowed
LOCAL lcUser, lnUserNumber, llIsAllowed
SO reading the variable name, you understand more.
The declaration GLOBAL, LOCAL, PRIVATE etc make the variables in that way. But the real variable is when you assign value to it.
If you specify..
gcUser = 100 it is numeric, but only you will get misguided. so gnUser=100 or gcUser="Ramani" makes more sense to us.
ramani

(Subramanian.G)