2008 Jul 04 8:41 AM
Hi friends,
I want total calculation currency field.
examples.
table: mbewh
fields:salk3
these field values under of the report total value come.
please,
where to declare total field.
How to calculate the values.
How to display totoal value.
Thanks,
sreddy.
Hi friends,
I want total calculation currency field.
examples.
table: mbewh
fields:salk3
these field values under of the report total value come.
please,
where to declare total field.
How to calculate the values.
How to display totoal value.
Thanks,
sreddy.
2008 Jul 04 8:44 AM
Hi Reddy,
Please be clear in the post. What is the requirement exactly?
If you are clear we can help you...
Regards,
Swapna.
2008 Jul 04 8:51 AM
Hi swapna,
My requirement is ,
How to calculate total in currency field.
How to display that field.
2008 Jul 04 8:58 AM
data:v_test type MBEWH-SALK3 value '32.76',
v_test1 type MBEWH-SALK3 value '54.76',
v_test2 type MBEWH-SALK3 .
v_test2 = v_test1 + v_test.
write:/ v_test2 .
2008 Jul 04 8:56 AM
Hi,
We can do integer fields sum calculations like this:.
tables:
sflight.
data:
t_sflight like standard table of sflight with header line.
select * from sflight into table t_sflight .
sort t_sflight by carrid connid.
loop at t_sflight .
at new connid. .
write : / t_sflight-carrid,t_sflight-connid.
sum.
write : / t_sflight-price.
endat.
endloop.Regards,
Rajitha.
2008 Jul 04 1:50 PM
hi friends,
How to multyply floating point values.
what is the data type.
example:
t_final-diff : currency value.
t_final-lbkum : mbewh-lbkum field
t_final-tstock = t_final-diff * t_final-lbkum
near above statement programe go to dump.
please floating values how to multiply and what is the data type.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |