‎2008 Oct 29 10:47 AM
Dear all.
I have an issue in debugging.
we are using ECC 6.0.
I want to sort the internal table in the debugging.(old or New).
How can I do this.
Thanks in advance,
Regards,
Eswar.M
‎2008 Oct 29 11:55 AM
Hi Venkat,
I dont think this would be feasible in debugger.
Best regards,
Prashant
‎2008 Oct 29 12:00 PM
Hi Vekat,
You cannot sort the Internal table during debugging. Its better to just put a condition on the code or set a flag and while debugging you can change the flag value so that it can go inside the flag and execute your sort.
Ex.
IF FLAG = 1.
SORT ITAB BY MATNR.
ENDIF.
Set the Flag = 0 initaially and while debugging set this value to 1 it will go inside the condition and do the sorting for your requirement.
Thanks,
Chidanand