Is it possible to use sysparm function to pass decimal value such as latitude and longitude?
Any ideas?
using sysparm to pass decimal value
-
josh
- Posts: 2403
- Joined: May 5th, 2014, 12:49 pm
- Location: Washington DC
Re: using sysparm to pass decimal value
Yes. You can write the decimal value to the pff file. When you load it using sysparm it will be a string but you can use tonumber() to convert it to a decimal. Something like:
numeric decimalVal = tonumber(sysparm("MYDECIMALPARAM"));
-
bmuganda
- Posts: 37
- Joined: January 18th, 2018, 11:57 am
Re: using sysparm to pass decimal value
Thanks Josh
Yea actually it worked for
Regards
Boniface
Yea actually it worked for
Regards
Boniface