Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

problem in mathematical Functions

Former Member
0 Likes
968

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

1 ACCEPTED SOLUTION
Read only

MarcinPciak
Active Contributor
0 Likes
682

All you need is to set spaces b/w variable and brackets


lv_mmm = frac( lv_time ).

Regards

Marcin

4 REPLIES 4
Read only

MarcinPciak
Active Contributor
0 Likes
683

All you need is to set spaces b/w variable and brackets


lv_mmm = frac( lv_time ).

Regards

Marcin

Read only

0 Likes
682

thanks to both, problem solved.

Read only

Former Member
0 Likes
682

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

Read only

Former Member
0 Likes
682

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