‎2007 Jul 05 9:00 AM
how to clear the selection screen values after returning from the output list
‎2007 Jul 05 9:04 AM
Hi,
check this simple code.
parameters:name(10).
write:/ name.
at SELECTION-SCREEN OUTPUT.
clear name.
rgds,
bharat.
‎2007 Jul 05 9:03 AM
hi,
At the end of the program..
write,,
clear <select option>
You can even clear itabs(Refresh) and clear ll the work areas you used.
rewards if useful,
regards,
nazeer
‎2007 Jul 05 9:04 AM
Hello Pavan,
Once u preapred the output list. At the end of the loop clear and refresh the selection scree fields.
Do like this.
loop at itab.
write: itab.
clear: P_matnr,so_mtart.
refresh: so_mtart.
endloop.
Vasanth
‎2007 Jul 05 9:04 AM
Hi,
check this simple code.
parameters:name(10).
write:/ name.
at SELECTION-SCREEN OUTPUT.
clear name.
rgds,
bharat.