Application Development 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: 

How to clear parameter id (SET Parameter)

Former Member
0 Kudos

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

4 REPLIES 4

Former Member
0 Kudos

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

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?

0 Kudos

Hi,

CLEAR <parameterid>.

Might be helpful.

Regards,

Harish P M

Former Member
0 Kudos

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.