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

Arithmetic Expression.

Former Member
0 Likes
388

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.

2 REPLIES 2
Read only

eddy_declercq
Active Contributor
0 Likes
367

Hi,

What about

a = ( ( ( c - d ) / 2 ) + d ) / e * b.

Eddy

Read only

0 Likes
367

Thanks for the reply

i gave u reward points.

with regards

chandu