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

Express document terminated error message

Former Member
0 Likes
1,054

Hi all,

I am working on CO11N transaction, when i try to post (Save) confirmation for a particular confirmation number. Its getting saved but when i click on back button, its giving me an "Express document terminated" error message. I went to SM13 and checked it out. I see an entry as below.

100 TUMMALR 06.12.2006 04:12:58 CO11N Error

I double cliked on the error. it was errored out at

30 CO_RU_VB_CONFIRMATION_POST V1 Error

I again double cliked on the error , in error details i see a message

00 671: ABAP/4 processor: SAPSQL_ARRAY_INSERT_DUPREC

As i understood from above its trying to enter a duplicate record in table.

Why it does happen only for some records? Also the error message shows V1 type. What does it mean? Some time back also i got Express document terminated error and the error was different. V2 processed and its in green color.

Any one please also give me the details on V1 and V2 types updates.

Thanks in Advance

Rajesh.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
772

See if there are any user exits implemented for the Co11n transaction.

In that transaction, see if there are any explicit commit statements.

Regards,

Ravi

3 REPLIES 3
Read only

Former Member
0 Likes
773

See if there are any user exits implemented for the Co11n transaction.

In that transaction, see if there are any explicit commit statements.

Regards,

Ravi

Read only

0 Likes
772

No user exit has been implemeted for CO11N. The problem comes only for one or two confirmation numbers. For other confirmation numbers its not giving any Express document " Update terminated" mesages.

Thanks,

Rajesh.

Read only

Clemenss
Active Contributor
0 Likes
772

Hi,

an express message is sent if an error occurs in update process. V1 means first level, this is started immediately when a COMMIT is executed, this happens when you SAVE in CO11N.

SAP uses asynchronous database update in most transactins. That means all required database changes are prepared but not executed directly. When you save, a so-called update function is called IN UPDATE TASK. This means, the update request is transferred to an update process running in background. In this update process, errors should not occur because it is too late to correct them.

If an error occurs, the user who initiated the process is informed by an express mail. In this case you should use transaction SM13 to see the update records. Probably the data causing the 'INSERT DUPREC' error can be ssen here.

If this really happens with an unmodified program not affected by any user exit then don't hesitate to put an OSS question.

Before I forget it V2 is second-level update request, executed ater all pending V1 is completed and I think there is something like V3 only processed by special batch job.

Regards,

Clemens