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

Former Member
0 Likes
702

Hi all

how to get back to previous stage of a program from current stage in debugging. i.e, if i mistakely overlooked some field value and later came to realise that and wanted to see what was the vlaue in that position, what to do?

thanx

1 ACCEPTED SOLUTION
Read only

alex_m
Active Contributor
0 Likes
656

You cant do anything, just run the report again.

5 REPLIES 5
Read only

alex_m
Active Contributor
0 Likes
657

You cant do anything, just run the report again.

Read only

Former Member
0 Likes
656

Unfortunately, as far as i know, there's no way. Save a breakpoint on a specific logic and run again.

Read only

former_member2382
Active Participant
0 Likes
656

I think theres no other option.. U need to restart the debugger..

Regards,

Parvez.

Read only

Former Member
0 Likes
656

Hi Ganesh,

If you just wanted to see the value of the passed statement then one thing you can do is.

Below the setting tab in the debugger there are arrow for going to some position which may be somewhere up or down in your code.. you can scrool thru that and can see the value which has passed while debugging.

Regards,

Jayant

Read only

Former Member
0 Likes
656

You can use the goto statement to go to the previous statement.

But it will not give you the value what it was earlier while executing the particular statement. It will retain the latest value.

The only option to view the exact value would be to restart the debugger.

Reward if you find this useful.