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

REMOVE VALUE FROM SET PARAMTER

Former Member
0 Likes
759

Hi all,

I have a statment like this

test = xyz

set parameter id 'DIR' field test.

and somewhere else

get parameter id 'DIR' field val.

now val = xyz.

now i want to remove valie from DIR

LET ME KNOW HOW TO ACHIEVE THIS

THANKS

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
732

Hi,

Just after the GET do a

set parameter id 'DIR' field SPACE.

Guess this should work.

Cheers

VJ

6 REPLIES 6
Read only

Former Member
0 Likes
733

Hi,

Just after the GET do a

set parameter id 'DIR' field SPACE.

Guess this should work.

Cheers

VJ

Read only

Former Member
0 Likes
732

Try using FREE MEMORY.

1 question: Are you recalling again the same program to get some new values in DIR? thts the reason why you want to clear the values.

Regards,

Amey

Message was edited by:

Amey Potale

Read only

0 Likes
732

Hi Amey,

I am using several set parametrs in the same program .If i use free memory then iam afraid it would clear all those right?

Thanks

Read only

0 Likes
732

Hi ,

Try using

set parameter id 'DIR' field ' '.

this shouls free the value

Thanks

venki

Read only

0 Likes
732

Use at the end of program only after last GET PARAMETER.

set parameter id 'DIR' field ' '. OR

set parameter id 'DIR' field space.

will not load the values next time run the program.

Regards,

Amey

Message was edited by:

Amey Potale

Read only

0 Likes
732

Hi all,

Thanks for your replies.Igot resolved by setting it to space.

I awarded points to all

Thanks

Deepthi