‎2009 Dec 16 4:42 AM
hello experts,
Is it possible to debug include files ? If possible please tell me how to debug?
the program is saved as "F" type (function pool) .please tell me how to debug this program?
In this program lot of include files are there.How to debug?
‎2009 Dec 16 4:50 AM
Hi,
You can place the breakpoint in the include and execute the main program of the include.
‎2009 Dec 16 5:00 AM
Hi,
Type F is nothing but Function Group and its cannot executed or debugged directly.
You have locate the function module concerned with the include and put break point and test the function module to debug.
Regards
Karthik D
‎2009 Dec 16 5:03 AM
Check the flow of execution and place the breakpoint from where execution starts in include.
Also, if you are using new debugger , just put breakpoint on any keyword that exist in include.
Hope this helps you.
‎2009 Dec 16 7:25 AM
Hi,
Check the flow of excecution.
Put a breakpoint in the include file and execute the main program where this particular include exists.
In case of function pool, find out the exact function module which you want to test and put a breakpoint for the statement to
be tested.
‎2009 Dec 16 9:06 AM
hi,
Put the breakpoint in the function module before the statement you want to debug.and debug it
Hope this will help
thanks
Tanmaya
‎2010 Jan 19 11:11 AM
open the include file by double clicing on the name of include file.
Place the break point in it. i.e
break <username>.
later save and activate the code and run the program.