‎2008 May 09 5:36 AM
Hi
I have a parameter on my selection screen.
I enter a value for the parameter and excecute it.
Now when i return from the output to the execution screen.
There should not be any value on the screen.
Thanks and Regards,
‎2008 May 09 5:44 AM
Hi Somay,
Use the event AT SELECTION-SCREEN OUTPUT to clear the parameter value. It gets triggered just before the screen display.
Thanks
Barada
Edited by: Baradakanta Swain on May 9, 2008 6:44 AM
‎2008 May 09 5:40 AM
hi
do the following way,
i implemented for select-options you do for parameters..
at selection-screen .
if sy-ucomm = 'ONLI'. " Only when execute is pressed
v_low = s_kunnr-low.
v_high = s_kunnr-high . " Hang on to this for select statement
clear s_kunnr[].
clear s_kunnr. " Clear the screen parameter
endif.
start-of-selection.
slecting data for basic list(kna1)
SELECT kunnr name1 land1
FROM kna1
INTO TABLE it_kna1
WHERE kunnr between v_low and v_high.
modify according to your prog
reward if helpful
prasanth
‎2008 May 09 5:42 AM
Use clear statement in INITIALIZATION screen.
or in end-of-selection.
Regards.
Madan.
‎2008 May 09 5:42 AM
In the At Selection Screen Output event clear the all the values of the parameters.
ex:
At Selection Screen Output.
Clear: p_matnr, p_lifnr.
‎2008 May 09 5:44 AM
Hi Somay,
Use the event AT SELECTION-SCREEN OUTPUT to clear the parameter value. It gets triggered just before the screen display.
Thanks
Barada
Edited by: Baradakanta Swain on May 9, 2008 6:44 AM
‎2008 May 09 7:24 AM
hi,
u can go for clearing the parameter in the selection screen output.
CODE:
at selection-screen output.
clear p_tcode.
hope this helps.
Thanks & Regards,
Ramya
‎2008 May 09 7:45 AM