‎2005 Sep 14 12:18 PM
I want to have a similar Abap statement for the following expression.
a = b * c - d/2 + d / e.
sequence as follows:
1)c - d
2)/2
3)+d
4)/e
5)b*
with regards
chandu.
‎2005 Sep 14 12:24 PM
Hi,
What about
a = ( ( ( c - d ) / 2 ) + d ) / e * b.
Eddy
‎2005 Sep 14 1:08 PM
Thanks for the reply
i gave u reward points.
chandu