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 to disable table ?

Former Member
0 Likes
540

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
Read only

Former Member
0 Likes
488

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.

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.

2 REPLIES 2
Read only

Former Member
0 Likes
489

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.

Read only

Former Member
0 Likes
488

answered