Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

how to debug include files

Former Member
0 Likes
1,269

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?

6 REPLIES 6
Read only

former_member206377
Active Contributor
0 Likes
1,038

Hi,

You can place the breakpoint in the include and execute the main program of the include.

Read only

Former Member
0 Likes
1,038

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

Read only

Former Member
0 Likes
1,038

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.

Read only

Former Member
0 Likes
1,038

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.

Read only

0 Likes
1,038

hi,

Put the breakpoint in the function module before the statement you want to debug.and debug it

Hope this will help

thanks

Tanmaya

Read only

0 Likes
1,038

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.