‎2010 Mar 31 2:54 PM
Hi Gurus,
I have a question regarding the Ranges that I poulated with datas. My question is when I runed a first time my report and I go back to the selection screen in clicking on 'F3'. Is it possible to automatically clear the range or not?
Thank you for your help,
Mohamed.
‎2010 Mar 31 3:13 PM
Perhaps you could use a coding like this:
AT SELECTION-SCREEN OUTPUT.
clear: r_aufnr[].
where r_aufnr is your range variable.
HTH
‎2010 Mar 31 3:13 PM
Perhaps you could use a coding like this:
AT SELECTION-SCREEN OUTPUT.
clear: r_aufnr[].
where r_aufnr is your range variable.
HTH
‎2010 Mar 31 3:26 PM
Great it works.
I did befoce "clear r_kstar" without '[]', now it works properly.
thank you.
‎2010 Mar 31 3:44 PM
Yes, without those brackets it would only clear the header line and not the entire table
Thanks for the points!