2007 May 11 10:26 AM
2007 May 11 10:32 AM
2007 May 11 10:29 AM
say internal table has fields F1 and F2 and u want to selet Max F1
sort itab by f1 descending f2.
read table itab index 1.
write : itab-f1. " u can get MaX F1 here
2007 Jul 19 12:25 PM
Hi Chandrasekar
How can I get the max value in a row of an internal table ? What u told will sort column wise btu not row wise.
Pl. help
Thanks in advance
2007 May 11 10:32 AM
2007 May 11 10:33 AM
then this will work
sort itab by f1 descending.
read table itab index 1.
write : itab-f1. " u can get MaX F1 here
2007 May 11 10:37 AM
hi andres,
sort itab by [field] descending
read table itab index 1.
with regards,
suresh babu
2007 May 11 10:41 AM
hii,
use this code
sort itab descending.
read table itab index 1.
write : itab-f1.
award if of any use
regards vikaas