cancel
Showing results for 
Search instead for 
Did you mean: 

JSPM error upon midway SP16 deplayment

Former Member
0 Kudos

Hi Guys,

We are trying to deploy NW SP16 and almost towards the end, we hit a problem.We've got the below message:

-


The execution ended in error.

com.sap.sdt.util.diag.DevelopmentSupportRequiredException: Assertion failed for (Cannot find AAS usage in all usages array. Po

ssible reason: It wasn't defined with the same name in UsageDefinition file) at com.sap.sdt.util.diag.SDT.check(SDT.java:36).

-


A search in SAP note shows that we need to implement Note 1231975. However, now JSPM refuse to work.

Anyone has a solution on how we should approach..help/suggestions are highly appreciated !!

Thanks.

Raymond

Accepted Solutions (1)

Accepted Solutions (1)

nick_fedorov
Explorer
0 Kudos

Hi,

I think you need to insert AAS usage into the table BC_SL_PARTS.

Try to issue following SQL statements in sqlplus:

insert into sapsr3db.bc_sl_parts (ID, NAME, VENDOR, PRODUCT_CODE, DESCRIPTION, IS_DELIVERED, SHORT_NAME) values ('0', 'AAS', 'sap.com', 'NetWeaver', 'Application Server ABAP', '1', 'AS ABAP');

commit;

Regards, Nick.

Edited by: Nick Fedorov on Sep 30, 2008 9:28 AM

DaveBower
Explorer
0 Kudos

I have the same problem and it sound like this solution might work for me but I'm not that familar with issuing SQL statements in Oracle. I typed the following commands and I think I'm missing something:

>sqlplus /nolog

>connect / as sysdba

>insert into sapsr3db.bc_sl_parts (ID, NAME, VENDOR, PRODUCT_CODE, DESCRIPTION, IS_DELIVERED, SHORT_NAME) values ('0', 'AAS', 'sap.com', 'NetWeaver', 'Application Server ABAP', '1', 'AS ABAP')

And this is the error it returns:

ERROR at line 1:

ORA-00942: table or view does not exist

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

this solution worked for me on my system ABC but I note a difference with another system DEF on the same patch level.

When I execute:

select name,is_delivered,short_name from sapsr3db.bc_sl_parts where id=0;

on the system ABC I obtain:

NAME IS_DELIVERED SHORT_NAME

-


AAS 1 AS ABAP

instead on DEF I obtain:

NAME IS_DELIVERED SHORT_NAME

-


AAS 0 AS ABAP

So I would like to understand what does IS_DELIVERED mean ?

Thanks for your help.

Mario

mukesh_mahadik
Explorer
0 Kudos

Hi All,

When I am trying deploying compoment I am also getting same error.

I tried both the soln of inserting values 0 & 1 but the soln is not working for me.

could you please guide me on this issue.

Thanks!

Edited by: Mukesh Mahadik on Mar 2, 2009 7:41 AM

Former Member
0 Kudos

Bingo..suggested solution above WORKS like a charm !!

Thanks Nick.

Raymond