cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

MP: exception caught with cause com.sap.engine.interfaces.messaging.api.exception.MessagingException

asangidevaraj
Discoverer
0 Likes
2,455

Am Getting the following error..

MP: exception caught with cause com.sap.engine.interfaces.messaging.api.exception.MessagingException: Error processing request in sax parser: Error when executing statement for table/stored proc. SAP_HANDLING_UNITS_PKG.POPULATE_HU_TABLES (structure Stored_Procedure): java.sql.SQLException: ORA-06519: active autonomous transaction detected and rolled back

ORA-06512: at "LINCAPP.SAP_HANDLING_UNITS_PKG", line 964
ORA-06512: at line 1

Transmitting the message to endpoint <local> using connection SOAP_http://sap.com/xi/XI/System failed, due to: com.sap.engine.interfaces.messaging.api.exception.MessagingException: Error processing request in sax parser: Error when executing statement for table/stored proc. SAP_HANDLING_UNITS_PKG.POPULATE_HU_TABLES (structure Stored_Procedure): java.sql.SQLException: ORA-06519: active autonomous transaction detected and rolled back
ORA-06512: at "LINCAPP.SAP_HANDLING_UNITS_PKG", line 964
ORA-06512: at line 1

Exception caught by adapter framework: Error processing request in sax parser: Error when executing statement for table/stored proc. SAP_HANDLING_UNITS_PKG.POPULATE_HU_TABLES (structure Stored_Procedure): java.sql.SQLException: ORA-06519: active autonomous transaction detected and rolled back
ORA-06512: at "LINCAPP.SAP_HANDLING_UNITS_PKG", line 964
ORA-06512: at line 1

Unable to execute statement for table or stored procedure. SAP_HANDLING_UNITS_PKG.POPULATE_HU_TABLES (Structure Stored_Procedure) due to java.sql.SQLException: ORA-06519: active autonomous transaction detected and rolled back
ORA-06512: at "LINCAPP.SAP_HANDLING_UNITS_PKG", line 964
ORA-06512: at line 1

Accepted Solutions (0)

Answers (1)

Answers (1)

JamesZ
Product and Topic Expert
Product and Topic Expert
0 Likes

Here is the oracle meaning:
<
06519, 00000, "active autonomous transaction detected and rolled back"

// *Cause: Before returning from an autonomous PL/SQL block, all autonomous

// transactions started within the block must be completed (either

// committed or rolled back). If not, the active autonomous

// transaction is implicitly rolled back and this error is raised.

// *Action: Ensure that before returning from an autonomous PL/SQL block,

// any active autonomous transactions are explicitly committed

// or rolled back.

>

So needs to engage application, how developed SAP_HANDLING_UNITS_PKG? Need to tag them if it is SAP's program.