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

TABLE CONTROL modify only 1 line screen properties

Former Member
0 Likes
1,338

Hi, i have a table control where i want to modify the screen options ( input, output) of a single line at the PBO module,

i know that i can place the screen properties at the screen design and i can modify a whole column modifying at ABAP code, but how can i modify only specific line only?

Hi, i have a table control where i want to modify the screen options ( input, output) of a single line at the PBO module,

i know that i can place the screen properties at the screen design and i can modify a whole column modifying at ABAP code, but how can i modify only specific line only?

2 REPLIES 2
Read only

Former Member
0 Likes
652

HI,

Check the below thread

Cheerz

Ramchander Rao.K

Read only

Former Member
0 Likes
652

Hi,

Take a mark field in ztable with data type char 1 and assign field (ztable-mark) in screen attributes in REF FIELD.

if mark = 'X'. "

loop at screen.

screen-input = 0. " for disable the field

modify screen.

endloop.

endif.

place the above code in PBO module .