cancel
Showing results for 
Search instead for 
Did you mean: 

warning in Backup

Former Member
0 Kudos

Dear All,

we are using OMNI data protector for backup of SAP systems.

in backup logs am getting warning as -

BR1301W Error message from likeywlib:

===...could not load SSF library libsapsecu.so .

BR1301W Error message from likeywlib: likey_init: Couldn't load SAPSECULIB ("libsapsecu.so") using function SsfSupInit (), rc = 10.

BR1302W Initialization of license key library likeywlib failed, return code 1

BR1304W Checking SAP license failed at location BrLicCheck-104

BR0602W No valid SAP license found - please contact SAP.

as per note "912969 - BR*Tools 7.00 fails due to license problems" i have checked the environments variables, its correct.

our BRSPACE is already on a higher patchset 7.00 (36)

i have checked the permission of libsapsecu.so, its 744.

what could be the reason.

Kindly suggest.

Thanks & regards!!

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hello,

Check the link [;

Download the most recent BR*Tools patch from SAP Service Marketplace.

Note 912969 - BR*Tools 7.00 fails due to license problems

Note 849483 - Corrections for BR*Tools Version 7.00

Former Member
0 Kudos

The SAPLIKEY error is caused by a DBSL error in systems with Oracle databases and SAP kernel 7.00 (DBSL patches 234 and 238) or SAP kernel 7.01 (DBSL patches 71 and 75).

The DBSL error causes inconsistent check records in the table SAPLIKEY, in which the content of the field LIKEY starts with 0002LC and the field VALUE is empty.

The DBSL error is corrected in 7.00 as of patch 241 and in 7.01 as of patch 79. For the DBSL exchange, you must also manually delete the corrupt '0002LC' records that have already been created from the table SAPLIKEY, for example, using sqlplus:

SQL> delete from sap<sid>.saplikey

where likey like '0002LC%'

and (value is null or value is not like '0008%');

Important:

Do not inadvertently delete '0002LK' records.

Hope it will help you.