Hello at all,
i have today another problem.
I want make a table colum invisible.
I have also try it with coding in PBO but it doesnt works. Only the header of the colum are invisible but the colum is already exists.
The User doesnt see the table colum.
Here is the coding which I write in the PBO.
MODULE INVISIBLE OUTPUT.
LOOP AT SCREEN.
IF screen-name = 'adress_text' OR screen-name = 'adress_input'.
screen-active = 0.
screen-input = 0.
screen-output = 0.
screen-invisible = 0.
ENDIF.
MODIFY screen.
ENDLOOP.
ENDMODULE. " INVISIBLE OUTPUT
With kind regards
Ersin Tosun