2011 Oct 10 11:46 PM
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?
2011 Oct 11 9:52 AM
2011 Oct 11 9:55 AM
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 .
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |