Application Development 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: 

Regarding Selection Screen

Former Member
0 Kudos

Hi All,

I have a requirment that:

I need to refresh my selection screen at every time i selected back button.

Following fields are maintained in selection screen.

PARAMETERS pc_chgno TYPE ZTB1 OBLIGATORY MEMORY ID zbc_change_number.

PARAMETERS PC_PHONE TYPE telf1 OBLIGATORY.

PARAMETERS PC_DIR TYPE LOCALFILE OBLIGATORY default 'C:\' .

SELECT-OPTIONS pc_uname FOR sy-uname OBLIGATORY NO INTERVALS .

SELECT-OPTIONS pt_korr FOR e070-trkorr NO INTERVALS .

The last field is diaplaying some data when i select "Select more single value" button of the field.

This have to be clear when come back the screen.

Thanks,

Subbu

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

Clear all the selection screen fields in the AT SELECTION-SCREEN OUTPUT event. So that it will be triggered each time when your screen displayed again.

Reward if useful.

Thanks,

Muthu.

4 REPLIES 4

Former Member
0 Kudos

Hi,

After the Select Statement,clear that fields.So that when u came back it wont display the values.

Regards,

Padmam.

Former Member
0 Kudos

Hi,

Check the sy-ucomm field of the BACK button and clear all the selection screen fields when sy-ucomm EQ BACK.

Regards

Rani.

Former Member
0 Kudos

Hi,

Clear all the selection screen fields in the AT SELECTION-SCREEN OUTPUT event. So that it will be triggered each time when your screen displayed again.

Reward if useful.

Thanks,

Muthu.

0 Kudos

Thank you Very much Prabhakar.