‎2010 Aug 25 11:30 AM
Hi All,
I am using a mathmatical function FRAC but getting error
Field "FRAC" is unknown. It is neither in one of the specified tables nor defined by a "DATA" statement.
getting this error for any of the functions like CEIL, FLOOR etc.
My Statement is -
lv_mmm = frac(lv_time).
Do i need to include something to get it working?
Thanks,
Nilanjana
Edited by: nilanjana sinha on Aug 25, 2010 12:30 PM
‎2010 Aug 25 11:36 AM
All you need is to set spaces b/w variable and brackets
lv_mmm = frac( lv_time ).
Regards
Marcin
‎2010 Aug 25 11:36 AM
All you need is to set spaces b/w variable and brackets
lv_mmm = frac( lv_time ).
Regards
Marcin
‎2010 Aug 25 11:39 AM
‎2010 Aug 25 11:37 AM
Hello,
try:
lv_mmm = frac( lv_time ).
You have to insert spaces before and after lv_time. This is valid for all functions.
regards,
Pedro
‎2010 Aug 25 11:38 AM
Hi
Just give the space between the keyword
lv_mmm = frac( lv_time ).
Oh already answered. Sorry
Edited by: Senthil Kumar on Aug 25, 2010 4:08 PM