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: 

getting error COMPUTE_INT_TIMES_OVERFLOW in GUI_DOWNLOAD

former_member459142
Participant
0 Kudos

Hi Experts,

I am using server SRM 7.0

and support package is SAP_ABA 701 0007 SAPKA70107 Cross-Application Component

I am getting dump in GUI_DOWNLOAD Function module

This is ST22

In the current program "SAPLSFES", multiplying the numbers 21550 and

131070 (using the operation '*' or 'MULTIPLY') resulted in a value

greater than 2147483647 or smaller than -2147483648. This

results in a whole number overflow.

Runtime Errors COMPUTE_INT_TIMES_OVERFLOW

Except. CX_SY_ARITHMETIC_OVERFLOW

Trigger Location of Exception

Program SAPLSFES

Include LSFESU17

Row 517

Module type (FORM)

Module Name MASS_DOWNLOAD

and its coming because of this

  514   if prc_filetype = 'BIN' and bin_filesize ne 0.
  515     tablesize = bin_filesize.
  516   else.
>>>>>     tablesize = lines * record_length.
  518     binfilesize_lcl = tablesize.
  519   endif.

Please tell me is there any Patch or note for it .

Thanks & Regards

Prashant Guta

3 REPLIES 3

Former Member
0 Kudos

Hi Guptaprashant ,

I think that don't have any sap note to fix it.

But you could split your file..

Dividing 2147483647 (max gui download) by 131070 (line lenght) results +- 16384,25...

You could create each file with max lines 15000..

regards,

Rogerio

0 Kudos

Hi Rogério Ribeiro,

Thanks for Reply .

I can not reduce file because i am downloading Web Dynpro component by the download prgram given in Sap Link.

so Web Dynpro component is big thats why prblem is coming .

Thanks & Regards

Prashant Gupta

onur_sara
Participant
0 Kudos

Hi Prashant,

I faced the same problem like you and could not find any solution yet .  Also I am trying to download Web Dynpro component .

Did you find any solution to resolve this problem ?

Thanks,

Onur SARA .