‎2007 Aug 06 6:45 PM
i m having some 6 values in My internal table i want to compare the value & get the highest value.
I m using field symbol.
How to implement field symbol in this.
Field1 Field2
a 12
b 3
c 11
d 16
e 10
f 4
i have to compare & get the highest value record. here i have to get d 16
Thanls in advance.
‎2007 Aug 06 6:47 PM
‎2007 Aug 06 6:53 PM
thanks for ur quick response.
My table is hashed table i cant use index.
Maya
‎2007 Aug 06 7:08 PM
HI,
sort itab by field2 descending.
loop at itab.
value = d.
value1 = 16.
exit.
endloop.
Thanks
mahesh