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

Write Routine formulae

Former Member
0 Likes
534

Hello all,

i want to write one routine formulae for export pricing calculation.

There formula is - Basic price110/1000.09/100

How i can write in SAP please explain with coding.

4 REPLIES 4
Read only

Former Member
0 Likes
504

try this


(Basic price*110)/(100*0.09)/100.

or

(Basic price*110)/100(100*0.09)

or 

(Basic price *11)/90.


Read only

Former Member
0 Likes
504

Result = (Basic price * 110) / ( 100 * 0.09 ) / 100.

PS:cure about spaces.

Amit.

Read only

Former Member
0 Likes
504

Hi,

Result = Basic price * (110 / ( 100 * ('0.09'/100)).

Read only

Former Member
0 Likes
504

try it like this:

(Basic price * 110) / (100 * 0.09) / 100.

With luck,

Pritam.