|
I you make use of null variables, but don't want to keep declaring them and setting them to null. try using a global variable of type any.
any ga_null
Then set it to null as you application is opened.
SetNull(ga_null)
You can then use this variable by casting to the data type you want to use.
f_something("test", String(ga_null), Long(ga_null))
|