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

Module Pool clear screen field

Former Member
0 Likes
2,228

Hi,

I have a screen i fetch the data to it and process the screen data to do GR.

Problem is for one field, screen retaining the old transaction data. All the time user happen to come out of the transaction and transact again to get the proper value.

i suspect it is becasu eof screen cache..

Does anyone faced this kind of problem?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,168

Hi Nihi,

The problem that you are facing is due to parameter ID defined to the screen field.

You can go to the screen field properties and remove the parameter ID for that field.

Infact retaining value in this way is not problem, but a feature provide by SAP using parameter IDs.

Please rewand ponts if answer is useful

Thanks

Arjun

3 REPLIES 3
Read only

Former Member
0 Likes
1,168

Hi

Yes it may be possible. Do proper debugging of program and clear that field at correct place.

Regards

Aditya

Read only

Former Member
0 Likes
1,168

Hi,

In the PBO ofthe screen, give CLEAR statement for the particular screen field,

or give a pushbutton 'reset' and write the following in PAI..

WHEN 'RESET'. "Resets the input ields in the screen

CLEAR t5.

CLEAR t6.

CLEAR t7.

CLEAR t8.

endcase.

where,

t5,t6,t7,t8 are input fields.

hope this helps u,

Arunsri

Read only

Former Member
0 Likes
1,169

Hi Nihi,

The problem that you are facing is due to parameter ID defined to the screen field.

You can go to the screen field properties and remove the parameter ID for that field.

Infact retaining value in this way is not problem, but a feature provide by SAP using parameter IDs.

Please rewand ponts if answer is useful

Thanks

Arjun