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: 

SYSTEM_ON_COMMIT_INTERRUPTED

Former Member
0 Kudos

I am implemeting SAP FICA event 5040, in that i am calling FM  'FKK_CREATE_DOC' for creating document but it giving short dump SYSTEM_ON_COMMIT_INTERRUPTED. Could you please help me here.

I think it's giving while commiting. what should i do.

6 REPLIES 6

FredericGirod
Active Contributor
0 Kudos

Hi,

go in the trans. SM13, you must have the error store in SAP.

you could see with a double click the list of the function called by SAP

you could also see the parameters

and you could retry to call the function and debug it

regards

Fred

0 Kudos

there is no error in SM13

0 Kudos

where did you have the error ? 

in ST22 ?

0 Kudos

yes

0 Kudos

Have a look to the answer of Raymond Giuseppi

Fred

raymond_giuseppi
Active Contributor
0 Kudos

This dump is generated due to not-allowed statement execution (like raising an Error message during update task) - Ref: 431961  - Runtime error SYSTEM_ON_COMMIT_INTERRUPTED

Try to analyze the dump to identify the statement that raised the dump, statement, call stack, etc.

Or export the dump in a rtf/html file and attach it to your thread so if someone has time (and will) to analyze for you...

You could, in a called FM, use a CALL FUNCTION IN BACKGROUND TASK or similar trick to separate main transaction and this FM execution.

Regards,

Raymond