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

Dump in VF01

Former Member
0 Likes
1,082

In the VF01 i m getting this error.

ABAP/4 processor : SAPSQL_ARRAY_INSERT_DUPREC

I am getting the error in the following insert.

LOOP AT XKOMV.

KONV = XKOMV.

BELEG = XKOMV-KNUMV.

IF BELEG-ID = '$'.

PERFORM VBRK_BELEGNUMMER_ERMITTELN.

XKOMV-KNUMV = XVBRK-KNUMV.

ENDIF.

MODIFY XKOMV.

ENDLOOP.

>>>>> INSERT KONV FROM TABLE XKOMV.

IF SY-SUBRC NE 0.

MESSAGE A100 WITH 'KONV' SY-SUBRC XKOMV-knumv.

ENDIF.

Can any one help me in this to solve this issue ?

Prem

Message was edited by:

Alvaro Tejada Galindo

In the VF01 i m getting this error.

ABAP/4 processor : SAPSQL_ARRAY_INSERT_DUPREC

I am getting the error in the following insert.

LOOP AT XKOMV.

KONV = XKOMV.

BELEG = XKOMV-KNUMV.

IF BELEG-ID = '$'.

PERFORM VBRK_BELEGNUMMER_ERMITTELN.

XKOMV-KNUMV = XVBRK-KNUMV.

ENDIF.

MODIFY XKOMV.

ENDLOOP.

>>>>> INSERT KONV FROM TABLE XKOMV.

IF SY-SUBRC NE 0.

MESSAGE A100 WITH 'KONV' SY-SUBRC XKOMV-knumv.

ENDIF.

Can any one help me in this to solve this issue ?

Prem

Message was edited by:

Alvaro Tejada Galindo

6 REPLIES 6
Read only

Former Member
0 Likes
896

What have you done!

Read only

0 Likes
896

I just created invoice for a delivery and saved while saving i got this error

Read only

Former Member
0 Likes
896

Have you searched for OSS notes??

Anyway, look at note 208627.

And note 154638.

You should use SM13 to analyze failed updates.

Rob

Message was edited by:

Rob Burbank

Read only

0 Likes
896

Hi,

Check whether you are creating duplicate invoice becoz as per the error

it is saying that you are creating duplicte record.

Go to table and check whther that invoice is exist there.

Hope this will help.

-Umesh

Read only

0 Likes
896

As i mentioned its causing the dump while updating KONV table

Read only

0 Likes
896

Hi Kamala,

I would suggest that one of your developers has caused this problem in a userexit.

Regards,

Chester