cancel
Showing results for 
Search instead for 
Did you mean: 

¿Where can i find the Math Util Component?

S0017420157
Explorer
0 Kudos

hi, i am trying to round a number, i understand that i can do it with: Math Util Component, to get something like a Math.round() or toFixed in Javascript to apply in BIAL Script.

I was looking at the forum but I get the following:

We're sorry, but you're attempting to access SCN content that was not migrated to the new SAP Community experience.

regards.

Accepted Solutions (1)

Accepted Solutions (1)

MustafaBensan
Active Contributor

Marin,

There is no separate Math Util Component. The Ctrl+Space content assistance in a script window will display Math as one of the standard options. You can simply type Math.round() for rounding.

Regards,

Mustafa.

S0017420157
Explorer

Thanks I did some tests and you have all the reason:

var a = Math.round(20.49); 

//i did this because requiere convert to string to show with an alert function. 
var b = a+""; 


APPLICATION.alert(b); //Show 20

Regards.

Answers (0)