Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 ?

share|improve this question

1 Answer

up vote 4 down vote accepted

Yes, use MODIFY LINE. There's a sample program named DEMO_LIST_MODIFY_FIELD_VALUE available.

(EDIT, obvious rant: ...or start using an up-to-date UI technology altogether :-))

share|improve this answer
yeah! thanks :) – Mtok Jun 6 at 8:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.