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 do we do Smart Form Debugging?

Former Member
0 Likes
382

how do we do Smart Form Debugging?

2 REPLIES 2
Read only

Former Member
0 Likes
360

Hi,

In the program lines in your smartforms, hard code a breakpoint in the following way.

break-point.

and this will cause your program to enter into debugging.

Regards

Abdullah..

Read only

Former Member
0 Likes
360

Another way is:

1. open the code of the generated function module (from the smart form).

2. suppose want to check the value of variable var1 at run time. In such case, search the var1 in that code.

3. put a break point at the appearance of the var1 in the code.

4. the execute the function module with proper input.

5. The program will stop at the desired position.

6. The you can start debugging as usual.