Hi Everybody,
I need to write a processing function.
Let me briefly describe the processing steps I need to do.
PARAMETERS : sum_kdv TYPE i, "total value-added tax. sum_tut TYPE i. "total amount
We will turn to process these parameters.
Process ;
----------------------------------------
x + y = sum_tut.
0,01x + 0,08y = sum_kdv.
----------------------------------------
To find the values of x and y will do mathematical operations.
-0,01( x + y ) = -0,01(sum_tut) .
0,01x + 0,08y = sum_kdv.
+------------------------------------------
We will find the value of x i y destroying.
How can we do this.
Best Regards Rasim.