‎2007 Mar 10 12:26 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:29 PM
hi Ahmed,
if you are calling some transaction after setting parameter id,
call transaction 'MM02' and skip first screen.
clear i_ktokk.
SET PARAMETER ID 'KGK' FIELD I_KTOKK.hope this helps.
Sajan Joseph.
Message was edited by:
Sajan Joseph
‎2007 Mar 10 12:30 PM
hi,
do this way
CLEAR I_KTOKK
SET PARAMETER ID 'KGK' FIELD I_KTOKK.Regards,
Santosh
‎2007 Mar 10 7:59 PM
... or even the polite way: Leave it as you found it:
GET PARAMETER ID 'KGK' FIELD I_KTOKK_BEFORE.
SET PARAMETER ID 'KGK' FIELD I_KTOKK.
CALL TRANSACTION ...
SET PARAMETER ID 'KGK' FIELD I_KTOKK_BEFORE.
Regards,
Clemens