Hi All,
Can someone tell me the difference between:
DATA nValue AS NUMERIC
and:
DATA nValue
Also, if I want to declare a DATA variable and initialize it at declaration.
Can I use:
DATA nValue INIT 0
or I must use:
DATA nValue AS NUMERIC INIT 0
Regards,