‎2007 Mar 10 12:22 PM
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.
‎2007 Mar 10 12:31 PM
hi,
do this way
CLEAR I_KTOKK
SET PARAMETER ID 'KGK' FIELD I_KTOKK.Regards,
Santosh
‎2007 Mar 11 8:43 PM
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.
‎2007 Mar 12 4:16 AM
‎2007 Mar 13 5:28 AM
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.
‎2007 Mar 16 11:10 AM
hi ahmed,
This can be achieved in 2 ways...
1) CLEAR I_KTOKK
SET PARAMETER ID 'KGK' FIELD I_KTOKK.
2) clear stmt