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

Error when reprinting the invoice

Former Member
0 Likes
953

Hi all,

I am reprinting a invoice, when I select the reprint option there is a pop up error message which says stop symbolwith the below message

Problem with interval numbering 01e with object J_1BNFNUMB.

Does Any one know whats the cause and what needs to be done to fix this error.

Any inputs will be helpfull.

Regards,

Selina

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
852

Hi Selina,

The Problem for the ERROR is in Source code ZSYSDA_NFE.In this we have a subroutine to update the financial document in the database.

PERFORM financial_doc_update.

After processing this subroutine the sy-subrc and retcode will be 4.which means that the financial document was not successfully updated in the database.As a result we get the error popup.

Inside the subroutine the UPDATE command for updating BSIS table fails and SY-SUBRC and retcode becomes 4, as a result we get the error .

UPDATE bsis SET xblnr = wk_xblnr

WHERE burks = bseg-bukrs

AND hkont = bseg-hkont

AND augdt = bseg-augdt

AND zuonr = bseg-zuonr

AND gjahr = bseg-gjahr

AND belnr = bseg-belnr

AND buzei = bseg-buzei.

PERFORM financial_doc_update. u201Cupdate in database

PERFORM nota_fiscal_update. u201Cupdate in database

ENDIF.

ENDIF.

IF retcode is INITIAL.

ELSE.

MESSAGE a114 with u201801u2019 u2018J_1BNFNUMBu2019.

ENDIF.

Regards,

Sonam.

Hi all,

I am reprinting a invoice, when I select the reprint option there is a pop up error message which says stop symbolwith the below message

Problem with interval numbering 01e with object J_1BNFNUMB.

Does Any one know whats the cause and what needs to be done to fix this error.

Any inputs will be helpfull.

Regards,

Selina

5 REPLIES 5
Read only

Former Member
0 Likes
852

How ur printing the invoice? Which tcode ur using?

You need to change the processing mode to 2 for reprinting.

Read only

0 Likes
852

Hi Arun,

Thank you for quick reply.

I am using the transaction code

TCODE:- J1B3N

Program:=SAPMJ1B1

I am following the menu options Nota fiscal->Reprint

Then I am getting this popup message.

Regards,

Selina

Read only

Former Member
0 Likes
852

Hi,

Please implement the SAP note 1044259. It will resolve your problem

Let me know the status than.

Regards,

Lokesh.

Read only

Former Member
0 Likes
853

Hi Selina,

The Problem for the ERROR is in Source code ZSYSDA_NFE.In this we have a subroutine to update the financial document in the database.

PERFORM financial_doc_update.

After processing this subroutine the sy-subrc and retcode will be 4.which means that the financial document was not successfully updated in the database.As a result we get the error popup.

Inside the subroutine the UPDATE command for updating BSIS table fails and SY-SUBRC and retcode becomes 4, as a result we get the error .

UPDATE bsis SET xblnr = wk_xblnr

WHERE burks = bseg-bukrs

AND hkont = bseg-hkont

AND augdt = bseg-augdt

AND zuonr = bseg-zuonr

AND gjahr = bseg-gjahr

AND belnr = bseg-belnr

AND buzei = bseg-buzei.

PERFORM financial_doc_update. u201Cupdate in database

PERFORM nota_fiscal_update. u201Cupdate in database

ENDIF.

ENDIF.

IF retcode is INITIAL.

ELSE.

MESSAGE a114 with u201801u2019 u2018J_1BNFNUMBu2019.

ENDIF.

Regards,

Sonam.

Read only

0 Likes
852

Hi every one,

Thank you for your timely replies.

Selina You are correct,My issue is solved. Thanks for the help.

Best regards,

Selina.