I want to write something after a user command in report programming. (when he pushes a button in pf-status). But I dont want the screen to be cleared. It's like I want to append text in the end of a line without refreshing the page. Because it will take long if I want to refresh the page.
CASE: sy-ucomm.
WHEN: 'MALF'.
WRITE : icon_okay AS ICON. (APPEND TO AND OF A ANY LINE)
ENDCASE.
So, Is it possible ?