Application Development 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: 

Dump in Spool conversion to pdf - RSTXCPDF

alessio_pierfederici
Participant
0 Kudos

Hi gurus,

we have a dump while we try to convert a very big spool in pdf, the spool have 29406 pages.

DUMP INFO***************************************************************

Err. run-time                   COMPUTE_INT_PLUS_OVERFLOW

Eccez.                           CX_SY_ARITHMETIC_OVERFLOW

Progr. ABAP                  RSTXCPDF

Application Component   BC-SRV-SCR

******************************************************************************

The dump occurred in line 2874 of RSTXCPDF:

ADD LEN TO CNV_CUR_BYTEOFS. "update total byte offset




Variable:


LEN = 16


CNV_CUR_BYTEOFS = 2147483646


the variable CNV_CUR_BYTEOFS is type I  (-2,147,483,648 to +2,147,483,647)


Can anyone help me?


Regards


Alessio

1 REPLY 1

raymond_giuseppi
Active Contributor
0 Kudos

Here you overrun the poor Abap program, even if you created your own converter that would probably be to big data for a single PDF, Acrobat and Adobe Reader are both mostly 32-bit code, and there is internally a cross-reference table which define the PDF structure and uses only 10 bits (so ~10GB), so you should also post in forums.adobe.com ?

Regards,

Raymond