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

SCREEN Table.

Former Member
0 Likes
2,607

How to debug the Screen Table in a report.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,269

Hi,

I think u r askng for Internal table.

To debug the itab set a break point on select stmt.

Then while executing it, that 'll reach that point and select Tables option on the top push button... it 'll shw a space to enter the tablle name there u enter the itab name and press enter....

then press F5 it will process step by step.... like this u hav to debug.

Thanks,

Arunprasad.P

<REMOVED BY MODERATOR>

Edited by: Alvaro Tejada Galindo on Mar 18, 2008 6:04 PM

4 REPLIES 4
Read only

Former Member
0 Likes
1,270

Hi,

I think u r askng for Internal table.

To debug the itab set a break point on select stmt.

Then while executing it, that 'll reach that point and select Tables option on the top push button... it 'll shw a space to enter the tablle name there u enter the itab name and press enter....

then press F5 it will process step by step.... like this u hav to debug.

Thanks,

Arunprasad.P

<REMOVED BY MODERATOR>

Edited by: Alvaro Tejada Galindo on Mar 18, 2008 6:04 PM

Read only

Former Member
0 Likes
1,269

set a breakpoint somewhere in PBO

Read only

Former Member
0 Likes
1,269

harsha meka

Can you be a little more specfic please.

The screen table that contains the fields and attributes?

A table that you have on the screen? as in ranges for a selection screen? or a data table as in a table control?

What is it you are trying to debug?

or is this the info you're asking for?


  LOOP AT SCREEN.
    IF screen-group1 EQ 'ALL'
    OR screen-group1 EQ 'FIN'.
      screen-input = 0.
      screen-invisible = 1.
      MODIFY SCREEN.
    ENDIF.
  ENDLOOP.

Put a break point in here somewhere perhaps.

Read only

Former Member
0 Likes
1,269

Hi Harsha,

If you are talking about the SCREEN table that controls the screen attributes, while in the debugger screen try the following path,

GOTO-> System Areas-> SCREEN table.

There you will be able to check the values of the screen table you are using in the program.

For debugging a normal internal table, you already have the replies from the experts