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

parameter id

Former Member
0 Likes
505

hi guys,

i have set a parameter id.

SET PARAMETER ID 'KGK' FIELD I_KTOKK.

Know i want to clear this id KGK after i use it.

How can i do it.

5 REPLIES 5
Read only

Former Member
0 Likes
483

hi,

do this way

CLEAR I_KTOKK
SET PARAMETER ID 'KGK' FIELD I_KTOKK.

Regards,

Santosh

Read only

Former Member
0 Likes
483

Hi,

can you try this..

SET PARAMETER ID 'KGK' FIELD I_KTOKK.

v_temp = I_kotkk.

clear I_kotkk.

SET PARAMETER ID 'KGK' FIELD I_KTOKK.

Br,

Laxmi.

Read only

Former Member
0 Likes
483

Hi,

Try clear stmt or FREE stmt.

Regards

Subramanian

Read only

Former Member
0 Likes
483

hi ahmed,

what is there in parameter id 'KGK' to clear,

that no need to clear because that is just parameter id for that particular field, it doesn't carry any value in that.

if u want clear field 'I_KTOKK' then u can write as follows.

clear i_ktokk.

regards..

seshu.

Read only

Former Member
0 Likes
483

hi ahmed,

This can be achieved in 2 ways...

1) CLEAR I_KTOKK

SET PARAMETER ID 'KGK' FIELD I_KTOKK.

2) clear stmt