2008 Nov 21 12:37 PM
Hello SDNers,
If i have 2 parameters in my program.
Eg:
parameter : v_num1 type i,
v_num2 type i.
After executing the program and getting the output if i come back to my selection screen where i have d parametere box still the values exist inside the parameter boxes how do i refresh those values or make it empty.
Is there any way for the same.
Thanks and Regards,
Ranjith N.
Hello SDNers,
If i have 2 parameters in my program.
Eg:
parameter : v_num1 type i,
v_num2 type i.
After executing the program and getting the output if i come back to my selection screen where i have d parametere box still the values exist inside the parameter boxes how do i refresh those values or make it empty.
Is there any way for the same.
Thanks and Regards,
Ranjith N.
2008 Nov 21 12:40 PM
at selection-screen.
" pass parameters to another variables and use these variables to process data
var1 = v_num1
var2 = v_num2
"now clear the parameters
clear: v_num1, v_num2.
2008 Nov 21 12:47 PM
Hi,
Try like this:
at selection-screen output.
clear: v_num1, v_num2.
Regards,
Bhaskar
2008 Nov 21 1:00 PM
REPORT ZTESTDEVELOPEMENT.
parameter : v_num1 type i,
v_num2 type i.
data : v_num3 type i.
v_num3 = v_num1 + v_num2.
write 😕 v_num3,'Abap'.
at selection-screen output.
clear :v_num1,v_num2.
2008 Nov 28 5:00 AM
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |