Hi Colleagues,
I have an ALV Grid and the grid input checks are done in the DATA_CHANGED event handler, when error the ALV protocol is displayed. I also have a button in the toolar named RESET. When I click on the button RESET, no matter there is input data or not, no matter whether I pressed ENTER before RESET, I don't want to trigger the input check and output the ALV protocol. How can I do it? I have tried in DATA_CHANGED handler that:
IF E_UCOMM = 'RESET'
exit.
ENDIF.
It works by the first time that I click on RESET. After that I give some input value again, and press ENTER, no checks will be executed since the E_UCOMM stay with 'RESET'. I can't clear it.
thanks and best regards,
Wenwen