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

Deleting memory area created using SET PARAMETER

Former Member
0 Likes
711

Can anyone please tell me how to delete a memory area created with the SET PARAMETER statement. I have tried 'FREE MEMORY'. But it doesn't work.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
652

Hi,

If you want clear the parameter id value use this...

set parameter id 'AUN' field space.

If you want delete use this...

DELETE FROM MEMORY ID 'AUN'.

FREE MEMORY ID 'AUN'.

Hope it will helps

5 REPLIES 5
Read only

Former Member
0 Likes
652

USE

FREE memory id <NAME OF mem ory IID in capital without ' '.

Read only

karol_seman
Active Participant
0 Likes
652

hi Sarath,

you are using correct command.

You have to use it like FREE MOMORY ID(<key>) where key is exactly the same you used for SET PARAMETER ID <key> ...

Regards,

Karol

Read only

0 Likes
652

Hi

set it with black/space.

carrier = ' ' .

SET PARAMETER ID: 'CAR' FIELD carrier.

It will be free.

Regards,

Kaushik

Read only

Former Member
0 Likes
652

hi,

its simple, just clear that parameter which is used for that parameter id.

then use set paramete id with that cleared variable to that id.

so it will clear the id.

Regards,

Meet

Read only

Former Member
0 Likes
653

Hi,

If you want clear the parameter id value use this...

set parameter id 'AUN' field space.

If you want delete use this...

DELETE FROM MEMORY ID 'AUN'.

FREE MEMORY ID 'AUN'.

Hope it will helps