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

Debugging skips a PERFORM command pointing to an implicit program

Former Member
0 Likes
336

Hi Gurus

Can anyone tell me why does the debug skips a PERFORM command pointing to an implicit program, (such as in the following line of code)?

PERFORM SPEZIAL_DD_RANGES_AENDERN IN PROGRAM (LIS_PROGNAME) IF FOUND.

In fact, when debugging the main program, the runtime environment will not point to LIS_PROGNAME even if the program is found (which is the case). Instead it will skip it.

Thanks

Nuno Natividade

1 ACCEPTED SOLUTION
Read only

naimesh_patel
Active Contributor
0 Likes
314

If the program in the variable LIS_PROGNAME is the system program, than you have to do the SYSTEM debugging.

Put a breakpoint on the PREFORM

In the debugging start the System Debugging by:

Settings > System Debugging

Now, do single Step (F5).

Regards,

Naimesh Patel

1 REPLY 1
Read only

naimesh_patel
Active Contributor
0 Likes
315

If the program in the variable LIS_PROGNAME is the system program, than you have to do the SYSTEM debugging.

Put a breakpoint on the PREFORM

In the debugging start the System Debugging by:

Settings > System Debugging

Now, do single Step (F5).

Regards,

Naimesh Patel