‎2020 Apr 01 12:35 PM
Hello,
In a dynpro I have a input/output field (input not possible) and a pushbutton.

I want to make input possible in theinput/output field after a user click on the pushbutton.
Regards,
‎2020 Apr 01 1:11 PM
Hi
AT SELECTION-SCREEN.
CASE SY-UCOMM.
WHEN 'b1'. <your button user-command>
loop at screen.
if screen-name = <your inputfield name>
screen-active = 1.
screen-input = 1.
endif.
endloop.
ENDCASE.
‎2020 Apr 01 12:42 PM
‎2020 Apr 01 12:57 PM
‎2020 Apr 01 1:11 PM
Hi
AT SELECTION-SCREEN.
CASE SY-UCOMM.
WHEN 'b1'. <your button user-command>
loop at screen.
if screen-name = <your inputfield name>
screen-active = 1.
screen-input = 1.
endif.
endloop.
ENDCASE.
‎2020 Apr 01 3:24 PM
venkateswaran.k Thanks. You are only missing in your code "MODIFY SCREEN."
‎2020 Apr 01 1:21 PM