‎2009 Jan 15 5:25 AM
Hi All,
I was debugging a problem, and I felt that sorting a particular internal table may solve the problem.
Now my question is can we sort an internal table while debugging in any way?
Further, Can we skip any statement execution while in debugging?
Thanks in advance..
Ravi
‎2009 Jan 15 5:48 AM
hi,
Now my question is can we sort an internal table while debugging in any way?
ANS: while debugging u can only check the entries, and check the flow of program..
You can do any action other than editing the contents of the test records
better u can keep the sort code in the program...
Further, Can we skip any statement execution while in debugging?
ANS: it is not possible to skip the normal flow,
You can skip the flow of if sy-subrc = 0 (or) any case statements
you can edit the values in the debugging and you can change the flow .. but you cannot skip the statement..
got it????
regards
vijay
‎2009 Jan 15 5:27 AM
hi:
u can edit only single values in the field.
and u cant skip any statement and nor u can sort the table
‎2009 Jan 15 5:39 AM
Hi,
As per my knowledge, It is not possible.
Regards
Md.MahaboobKhan
‎2009 Jan 15 5:48 AM
hi,
Now my question is can we sort an internal table while debugging in any way?
ANS: while debugging u can only check the entries, and check the flow of program..
You can do any action other than editing the contents of the test records
better u can keep the sort code in the program...
Further, Can we skip any statement execution while in debugging?
ANS: it is not possible to skip the normal flow,
You can skip the flow of if sy-subrc = 0 (or) any case statements
you can edit the values in the debugging and you can change the flow .. but you cannot skip the statement..
got it????
regards
vijay
‎2009 Jan 15 5:55 AM
Hi,
While debugging youe felt that sorting can solve your problem why not sort it out in the code itself.
In debugging mode you cannot do any type of editing. It is for seeing the flow of your program and if u have any problem u can get it.
While in the debugging mode you cannot skip out any line.
Thanks & Regards
‎2009 Jan 15 5:59 AM
‎2013 Aug 09 12:10 PM
Further, Can we skip any statement execution while in debugging?
You can use SHIFT+F12 to skip statement!
‎2013 Aug 12 7:02 AM
Hi,
We can skip the some statements using goto statement or press Shift+F12 ,
We can SORT the table in debug this is only for checking purpose download that internal table in excel sheet sort the required things in the excel sheet and again upload it....
Please try it....
‎2013 Aug 12 8:17 AM