Skip to Content
0
Former Member
Oct 29, 2012 at 06:15 PM

Refresh Selection Screen with Free memory

399 Views

Hello Gurus.......I am searching for a routine which will refresh my selection fields by returning from a report display. I have tried all sorts of various alternatives, but have found only one which works and that is:

FIELD-SYMBOLS : <fs1> .

ASSIGN ('(RSDBRUNT)MEMKEY-INT_MODE') TO <fs1> .

IF sy-subrc = 0 .

<FS1> = '01' .

ENDIF.

However, it works for me and not the users. Kind of strange, but I started to use FREE MEMORY instead. FREE MEMORY seems to work for muself and the users, but I'm concerned that it will free the memory for another ABAP program running at the same time. Is FREE MEMORY fine to use without worrying about it ? Thanks, Mike