‎2008 Mar 11 5:00 AM
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?
‎2008 Mar 11 5:15 AM
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
‎2008 Mar 11 5:04 AM
Hi
Yes it may be possible. Do proper debugging of program and clear that field at correct place.
Regards
Aditya
‎2008 Mar 11 5:11 AM
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
‎2008 Mar 11 5:15 AM
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