cancel
Showing results for 
Search instead for 
Did you mean: 

Profile during a n homogu00E9neous system copy

baby_fabrice
Participant
0 Kudos

Hi,

I have done an export of database ( with R3load process ) and i have donne an intallation of a new SAP system with the exported base ( homogenenous copy ) .

Bu when i launch RZ10 i always can see the reference to the old profile files.

Is there a table where i could delete the old profile?

Thx in avance.

Edited by: BABY Fabrice on Mar 24, 2010 12:08 PM

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

tables TPFET and TPFHT contain information about changes made to the profile of your source system.

You can drop the contents using the below SQL command.

SQL> truncate table sapsr3.TPFET;
SQL> truncate table sapsr3.TPFHT;

You can then re-import the profiles of Active Server in "RZ10".

You can delete selective entries if you want from table TPFHT as below:

SQL>delete from sapsr3.tpfht where pfname='<profilename_you_want_to_delete>';

Regards.

Rajesh Narkhede

Answers (2)

Answers (2)

baby_fabrice
Participant
0 Kudos

Thx

markus_doehr2
Active Contributor
0 Kudos

> Is there a table where i could delete the old profile?

you can also select the profile in RZ10 and then press on "delete".

Markus