‎2007 Feb 03 5:53 AM
How to clear the values stored in the all / individual parameter id.
set / get for storing and reading values of parameter id . what for clearing.
- David Boon.
‎2007 Feb 03 5:55 AM
Hi,
CLEAR will clear the values.
you can also use FREE memory.
Regards
Subramanian
‎2007 Feb 03 5:55 AM
Hi,
CLEAR will clear the values.
you can also use FREE memory.
Regards
Subramanian
‎2007 Feb 03 6:04 AM
Hi,
You can clear it again by setting a blank value..
Example
SET PARAMETER ID 'MAT' FIELD <b>space</b>.
Thanks,
Naren
‎2007 Feb 03 6:21 AM
Hi Naren thanks for your sugestion . but my need is to clear all the parameter ids .
I cant get what Subramanian told , we cant use clear for parameter and free memory is also not working.
This is what i tried.
REPORT ZPRG01.
data : data1 type RS38M-PROGRAMM.
data1 = 'hello'.
set parameter id : 'RID' field data1. " RID is parameter for se38 program name
Free memory. " not clearing
- David Boon
‎2007 Feb 03 6:28 AM
Hi,
Probably you might have to get all the parameter ids from the table TPARA.
Example
-
SELECT * FROM TPARA INTO TABLE T_TPARA.
LOOP AT T_TPARA.
<b> SET PARAMTER ID TPARA-PARAMID FIELD SPACE.</b>
ENDLOOP.
Thanks,
Naren