Application Development 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: 

How to disable table ?

Former Member
0 Kudos

Hello All,

I want to show the table entries in display format, that i want to show the values but only i want to disable.

If i am using

Loop at screen.

screen active = 1.

screen output = 0.

endloop.

but the above logic is not working is there any other way to show the table entires in display mode. On this any suggestions.

1 ACCEPTED SOLUTION

former_member188685
Active Contributor
0 Kudos

are you using the Table control..?

then in that case you can do this..

in the PBO.

loop at itab with control  tc.

module modify_Screen.

endloop.

inside the module you can do this way...

Loop at screen.
screen-input = 0.
modify screen.  "This is must..
endloop.

2 REPLIES 2

former_member188685
Active Contributor
0 Kudos

are you using the Table control..?

then in that case you can do this..

in the PBO.

loop at itab with control  tc.

module modify_Screen.

endloop.

inside the module you can do this way...

Loop at screen.
screen-input = 0.
modify screen.  "This is must..
endloop.

Former Member
0 Kudos

answered