Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

selection screen

Former Member
0 Likes
364

how to clear the selection screen values after returning from the output list

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
346

Hi,

check this simple code.

parameters:name(10).

write:/ name.

at SELECTION-SCREEN OUTPUT.

clear name.

rgds,

bharat.

3 REPLIES 3
Read only

Former Member
0 Likes
346

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

Read only

Former Member
0 Likes
346

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

Read only

Former Member
0 Likes
347

Hi,

check this simple code.

parameters:name(10).

write:/ name.

at SELECTION-SCREEN OUTPUT.

clear name.

rgds,

bharat.