Application Development and Automation 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: 
Read only

SYSTEM_ON_COMMIT_INTERRUPTED

Former Member
0 Likes
3,360

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
Read only

FredericGirod
Active Contributor
0 Likes
1,383

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

Read only

0 Likes
1,383

there is no error in SM13

Read only

0 Likes
1,383

where did you have the error ? 

in ST22 ?

Read only

0 Likes
1,383

yes

Read only

0 Likes
1,383

Have a look to the answer of Raymond Giuseppi

Fred

Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,383

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