Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Delete Parameter IDs from Memory

Former Member
0 Likes
1,267

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
907

u can use FREE keyword.

Regards

peram

6 REPLIES 6
Read only

Former Member
0 Likes
908

u can use FREE keyword.

Regards

peram

Read only

Former Member
0 Likes
907

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.

Read only

Lakshmant1
Active Contributor
0 Likes
907

Hi Rudy,

You can check FM RS_PARAMETER_DELETE.

Hope this helps

Thanks

Lakshman

Read only

0 Likes
907

Thanks guys, but is there also a TRANSACTION or a way to delete certain parameters without coding??

Read only

Former Member
0 Likes
907

HI

Use the next sentences: free <ID>

Regards

Gregory

Read only

Former Member
0 Likes
907

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.