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

How to clear parameter id (SET Parameter)

Former Member
0 Likes
7,811

Is there a way to crear or free up the parameter id set by the SET PARAMETER ID command?

4 REPLIES 4
Read only

Former Member
0 Likes
3,791

Hi,

Yes can cler it as below.



clear person.
GET PARAMETER ID 'PER' FIELD PERSON.

or

FREE MEMORY ID 'MEM'.

see this link

Regards,

Pravin

Edited by: pravin s. on Aug 13, 2010 9:00 AM

Read only

3,791

FREE MEMORY ID is used only for IMPORT/EXPORT to MEMORY.

FOR SET/GET PARAMETER, this will not work.

Currently I'm setting it to blank to remove the value. But is there a command like FREE MEMORY for clearing SET/GET PARAMETER?

Read only

harish_padikkadmohananara
Product and Topic Expert
Product and Topic Expert
0 Likes
3,791

Hi,

CLEAR <parameterid>.

Might be helpful.

Regards,

Harish P M

Read only

Former Member
0 Likes
3,791

hii adrian,

you can free the set parameter id as.

first set parameter id 'GARV' field s_kunnr.

then get it at another place like this

get parameter id 'GARV' field s_kunnr.

now you can free the set parameter as.

set parameter id 'GARV' field space.

get parameter id 'GARV' field kunnr.

after it your set parameter will be free.