cancel
Showing results for 
Search instead for 
Did you mean: 

Issue AddOn Install

Former Member
0 Kudos

Hi.

I have a problem with the installation of an AddOn ,

when trying to install sends me an error saying

"Index out of bounds of the array"

A that it could be , I'm a little worried because it is the first time it happens .

Greetings .

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

The Error "Index out of bounds of the array" means that you try to access an array feld that does not exist.

Example:

string[] ar = new string[3];

ar[0] = "one";

ar[1] = "two";

ar[2] = "three";

If you try to access ar[-1] or ar[3] you will get this error.

I dont have the code of your installer so there is nothing more that I can help you.

pedro_magueija
Active Contributor
0 Kudos

Hi Raul,

Are you using a custom made installer or something else?


Best regards,

Pedro Magueija


View Pedro Magueija's profile on LinkedIn

Former Member
0 Kudos

Hi Pedro,

I'm using VisualStudio 2010 to generate ARD file with a project in B1AddOnInstallerSetupNET1

The problem occurs only on the SAP server, on clients installed correctly.