2008 Dec 09 11:41 PM
Is there any function module to convert all table field values which are negative to positive.
Or i have to check one by one all values.
Ivneet
2008 Dec 09 11:43 PM
if table-entry < 0.
Table-entry = table-entry * -1
endif.
2008 Dec 09 11:43 PM
2008 Dec 09 11:47 PM
Amit,
Are yu telling to test on by one.My talbe is it_output
I didnt get??
Ivneet
2008 Dec 09 11:51 PM
loop at it_otput.
if it_otput-amount < 0.
it_otput-amount= it_otput-amount * -1
modify it_output transporting amount.
endif.
Endloop.
2008 Dec 09 11:56 PM
thanks amit,
i think this way one by i had to check all fields.I was trying to get some thing which could convert all at time.
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |