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
467

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.

3 REPLIES 3
Read only

Former Member
0 Likes
443

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

Read only

Former Member
0 Likes
443

hi,

do this way

CLEAR I_KTOKK
SET PARAMETER ID 'KGK' FIELD I_KTOKK.

Regards,

Santosh

Read only

0 Likes
443

... 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