‎2007 Aug 15 11:24 AM
Hello,
does anyone know if there is a transaction to delete certain parameter IDs from the memory?? I am talking about the parameters you can set in the code with "SET PARAMETER ID...."...
thanks in advance
rudy
‎2007 Aug 15 11:28 AM
‎2007 Aug 15 11:28 AM
‎2007 Aug 15 11:30 AM
hi Rudy,
try this..
SELECT * FROM TPARA INTO TABLE T_TPARA
WHERE PARAMID EQ 'XX1' OR " where XX1 is parameter id
PARAMID EQ 'XX2'.
LOOP AT T_TPARA.
SET PARAMTER ID TPARA-PARAMID FIELD SPACE.
ENDLOOP.
‎2007 Aug 15 11:30 AM
Hi Rudy,
You can check FM RS_PARAMETER_DELETE.
Hope this helps
Thanks
Lakshman
‎2007 Aug 15 12:47 PM
Thanks guys, but is there also a TRANSACTION or a way to delete certain parameters without coding??
‎2007 Aug 15 7:07 PM
‎2007 Aug 15 7:13 PM
Go for Transaction code- SU3 and click on Parameters tab,and here we can delete, add or change the required parameter id.
Reward points if it is useful for you.