Application Development 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: 

Parameter ID.

Former Member
0 Kudos

Hi,

I used in my program, get parameter id 'ZZOPT' field opt.

i can use this in my system profile, by setting, ZZOPT = 'X' or ZZOPT = ''.

but there is no use of the parameteer id in my program. So i have removed.

But the problem is, the parameter id apparantly exists in SAP.

ie., eventhough i did not use it in my program and since once it was set. and now not needed still it exists in memory..

eg.. now once again, if i go to system profile> own data> and typing parameter again "ZZOPT" , it is automatically bringing its short text in the other column on saving.

It means that it still exzists in memory.

What i need to do inorder to remove it completely.

Will be rewarded..

Thanks in adv..

1 ACCEPTED SOLUTION

0 Kudos

Hi,

PARAMETER ID uses <b>SAP memory</b> to Store the data, and that will be there till you <b>LOG OFF</b>.

So try to log off from the system and check if you still get value for that PARAMETER ID. <b>Remove it from your profile, save it, logoff and login</b>.

Regards,

Sesh

6 REPLIES 6

0 Kudos

Hi,

PARAMETER ID uses <b>SAP memory</b> to Store the data, and that will be there till you <b>LOG OFF</b>.

So try to log off from the system and check if you still get value for that PARAMETER ID. <b>Remove it from your profile, save it, logoff and login</b>.

Regards,

Sesh

0 Kudos

The problem is,

I was recently using a newly suggested SAP Code in a standard program.

So this parameter ID was provided by SAP.

Like, if ZZOPT = 'X'

old code of SAP

else ZZOPT = ''

new code of SAP.

alright,,,

now i had reverted back the changes to the old code. So i dont want to use ZZOPT..

so i need to completely remove its trace of ZZOPT.

but when i enter ZZOPT in system profile,,,, it automatically loads the description part suggested by SAP.

I dont want. It still exists in my system, I dont want to have even its trace.

What should i need to do, inorder to remove it completely.

0 Kudos

Hi,

The parameter's are stored in TPARA table, you can delete your entry from this table.

Do not delete any other standard PARAMTER ID's.

Regards,

Sesh

0 Kudos

Hi Naveena.

Parameter IDs are stored in table TPARA.

To Delete a parameter ID Completely.

Goto Tcode SE80. (Workbench -> Edit Object -> More -> SET/GET Parameter ID)

Enter the Parameter ID and Delete it.

<b>reward if Helpful.</b>

Former Member
0 Kudos

see this example

l_paramid type tpara-paramid.

Set Parameter to auto calculate tax on net amount in FB00 (Editing options)

SET PARAMETER ID 'FO2' FIELD 'X X X'.

To set it again .

SET PARAMETER ID 'FO2' FIELD l_paramid. OR

SET PARAMETER ID 'FO2' FIELD ' '.

Former Member
0 Kudos

go to SA38 and execute the report RPR_ABAP_SOURCE_SCAN,

on selection screen, put Y* to Z* in the "Program name" field. In "Find string" put ZZOPT and press execute, u'll come to know the reports this parameter ID is used in, and u can remove from there, given its not used much.

Reward points if useful, get back in case of query...

Cheers!!!