cancel
Showing results for 
Search instead for 
Did you mean: 

run-time error ROLLBACK_IN_POSTING

Former Member
0 Kudos

Hi every body,

i have critical problem on centraql instance

"Errore run-time ROLLBACK_IN_POSTING

Error in ABAP application program.

The current ABAP program "SAPLEINU" had to be terminated because one of the

statements could not be executed.

This is probably due to an error in the ABAP program.

"ROLLBACK_IN_POSTING" C

"SAPLEINU" or "LEINUU05"

"ME_UPDATE_DOCUMENT"

Client.............. 300

User................ "SOLIMENEA"

Language key........ "I"

Transaction......... "ZCARIO "

Program............. "SAPLEINU"

Screen.............. "RSM13000 3000"

Screen line......... 2

"

Help Me

Thank you

MC

sm13 blocked registration

Accepted Solutions (1)

Accepted Solutions (1)

tim_buchholz
Active Participant
0 Kudos

Dear Maurizio,

this is indeed an application problem. The application was being run in an update request and attempted to do a rollback. During update processing, the commands "ROLLBACK" and "COMMIT WORK" are not allowed and will result in the dump. The complete dump should pinpoint the coding that is responsible for this.

Best Regards,

Tim

Former Member
0 Kudos

Dear Tim Buchholz,

I read your answer but in my case there's no ROLLBACK or COMMIT in the report, and the dump title is ROLLBACK_IN_POSTING. Can you help?,

Regards,

Daniel.

000010 FORM SAVE_CONDITIONS.

000020 *& *

000030 *& Form SAVE_CONDITIONS

000040 *& *

000050 * Update der Konditionen *

000060 * *

000070 DATA: OLD_KNUMV LIKE KONV-KNUMV.

000080

000090 SORT XKONV BY KNUMV.

000100 LOOP AT XKONV.

000110 IF OLD_KNUMV NE XKONV-KNUMV.

-


> DELETE FROM KONV WHERE KNUMV = XKONV-KNUMV.

000130 OLD_KNUMV = XKONV-KNUMV.

000140 ENDIF.

000150 MOVE-CORRESPONDING XKONV TO KONV.

000160 INSERT KONV.

000170 IF SY-SUBRC NE 0.

000180 MESSAGE A400 WITH 'KONV'.

000190 ENDIF.

000200 ENDLOOP.

000210

000220 ENDFORM. " SAVE_CONDITIONS

Answers (0)