2012 Jul 28 8:47 AM
why the sequence in which event is triggered is not shown using f6 button while debugging.Top of page was not shown when the first write statment occured and end of page was not shown after the last record was fetched .but it worked fine with f5.but the result of final execution was same
2012 Jul 28 10:46 AM
F6 will process a statement. An event is not a statement.
Regards,
Clemens
2012 Jul 28 10:46 AM
F6 will process a statement. An event is not a statement.
Regards,
Clemens
2012 Jul 31 9:35 AM
when i debug this code by using f5 button the after getting the first write it goes to top of page and so on but when using f6 it doesnot go to top of page,loop continues till the record is present and then result is shown.but in the output the line which is written under top of page is also displayed.
2012 Jul 31 9:45 AM
REPORT ztest_manicheck LINE-SIZE 200 LINE-COUNT 3(1) no standard PAGE HEADING .
types :begin of ty_disp,
e_id type ztest_maninew-employee_id,
e_name type ztest_maninew-employee_name,
e_workno type ztest_maninew-e_work_no,
end of ty_disp.
data :w_disp type ty_disp,
w1_disp like w_disp,
it_disp type STANDARD TABLE OF ty_disp.
tables:ztest_maninew.
initialization.
parameters :empl_id type ztest_maninew-employee_id,
emp_name type ztest_maninew-employee_name,
phone_no type ztest_maninew-e_work_no.
START-OF-SELECTION.
select employee_id employee_name e_work_no from ztest_maninew into table it_disp .
end-of-SELECTION.
write 'top of page2'.
START-OF-SELECTION.
sort it_disp by e_workno.
delete ADJACENT DUPLICATES FROM it_disp COMPARING e_workno.
loop at it_disp into w_disp.
write 😕 w_disp .
TOP-OF-page.
write 'im at d top of page'.
end-OF-page.
write 'im at d bottom of page'.
2012 Jul 29 5:51 PM
Hi
yes it will work fine when you press F5 when u go for F6 it will fetch for routines and also check whether size given to top of page and end of page
2012 Jul 31 9:34 AM
when i debug this code by using f5 button the after getting the first write it goes to top of page and so on but when using f6 it doesnot go to top of page,loop continues till the record is present and then result is shown.but in the output the line which is written under top of page is also displayed.
2012 Jul 30 7:07 AM
Hope this will help you to understand clearly,
F5 - Execute single step.
F6 - Executes a perform,without going inside Form.. End Form .
F7 - Comes out of a perform.
F8 - Execute the report entirely or upto the next break point.
2012 Jul 31 9:35 AM
when i debug this code by using f5 button the after getting the first write it goes to top of page and so on but when using f6 it doesnot go to top of page,loop continues till the record is present and then result is shown.but in the output the line which is written under top of page is also displayed.