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

HOW TO CLEAR PARAMETER ID?

Former Member
0 Likes
7,554

Hey experts,

I use alv hotspot to call transaction tm_53 as follows:

SET PARAMETER ID 'BUK' FIELD P_CCODE .

SET PARAMETER ID 'FAN' FIELD P_LIST-DEAL_NUMBER .

CALL TRANSACTION 'TM_53' .

the first P_LIST-DEAL_NUMBER = 11.

and it is successed.

the second time the P_LIST-DEAL_NUMBER = 12.

but in the screen of tm_53,

the field P_LIST-DEAL_NUMBER is also 11.

how can i do?

i used free momery id P_LIST-DEAL_NUMBER ,

but it's not gone.

thanks.

1 ACCEPTED SOLUTION
Read only

Former Member
1,696

hi,

You can set the same parameter ID with a balnk value.

SET PARAMETER ID 'XYZ' FIELD SPACE.

Hope it helps....

Lokesh

Hey experts,

I use alv hotspot to call transaction tm_53 as follows:

SET PARAMETER ID 'BUK' FIELD P_CCODE .

SET PARAMETER ID 'FAN' FIELD P_LIST-DEAL_NUMBER .

CALL TRANSACTION 'TM_53' .

the first P_LIST-DEAL_NUMBER = 11.

and it is successed.

the second time the P_LIST-DEAL_NUMBER = 12.

but in the screen of tm_53,

the field P_LIST-DEAL_NUMBER is also 11.

how can i do?

i used free momery id P_LIST-DEAL_NUMBER ,

but it's not gone.

thanks.

3 REPLIES 3
Read only

Former Member
0 Likes
1,696

you can do this way....

SET PARAMETER ID 'FAN' FIELD ' '.

Read only

Former Member
0 Likes
1,696

hi,

check this link

clear the field you are using in the SET PARAMETER statement

regards

lakshmi

Read only

Former Member
1,697

hi,

You can set the same parameter ID with a balnk value.

SET PARAMETER ID 'XYZ' FIELD SPACE.

Hope it helps....

Lokesh