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 fields are not clearing..!

Former Member
0 Likes
555

Hi all,

I have created one report which is having a selection screen with four select-options.

Now after executing the report, when i click on "back" icon the selection screen entries are not clearing even i refresh the select-options also.

Could any body please help me to resolve this issue??

Regards,

Joshu.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
515

Hi,

Use FREE MEMORY after the report is printed..

Check this example..

PARAMETERS: P_MATNR LIKE MARA-MATNR OBLIGATORY.

START-OF-SELECTION.

WRITE: / P_MATNR.

FREE MEMORY.

Thanks,

Naren

Hi all,

I have created one report which is having a selection screen with four select-options.

Now after executing the report, when i click on "back" icon the selection screen entries are not clearing even i refresh the select-options also.

Could any body please help me to resolve this issue??

Regards,

Joshu.

2 REPLIES 2
Read only

Former Member
0 Likes
516

Hi,

Use FREE MEMORY after the report is printed..

Check this example..

PARAMETERS: P_MATNR LIKE MARA-MATNR OBLIGATORY.

START-OF-SELECTION.

WRITE: / P_MATNR.

FREE MEMORY.

Thanks,

Naren

Read only

Former Member
0 Likes
515

Use Free memory,

after the write statement.

shreekant