‎2005 Aug 30 3:05 PM
Hi dudes,
I have created a dynamic table using field symbol logic i.e. by using Create table ...
Now I have 3 column in this dynamic table like Col1,Col2 and Col3 .
I wann sort this dynamic table by using the Col3 in Decending Order.
Can u please guide me for this .
I have tried but it gives the error msg that Table doesnt have header line.
Please put u r suggtion ASAP .
Dont worry @ Points every1 get points respectively
Gain Points
‎2005 Aug 30 3:11 PM
Hi!
Sort has a dynamic option:
sort itab by (col3) descending.Here col3 is the variable with the actual fieldname.
Regards,
Christian
‎2005 Aug 30 3:10 PM
SORT_FIELD = 'COL3'.
SORT <MY_TABLE> BY (SORT_FIELD) DESCENDING
‎2005 Aug 30 3:11 PM
Hi!
Sort has a dynamic option:
sort itab by (col3) descending.Here col3 is the variable with the actual fieldname.
Regards,
Christian