cancel
Showing results for 
Search instead for 
Did you mean: 

Error 66000-83 Connection failed Connection string doesn't match UI Development work mode

Former Member
0 Kudos

Hi,

I receive this error when using one Addon created by me.

Error 66000-83 Connection failed Connection string doesn't match UI Development work mode

I didnt find much information about this isue.

Does anybody know how to solve it?

Thanks in advance!

Accepted Solutions (0)

Answers (2)

Answers (2)

adrian_meier01
Advisor
Advisor
0 Kudos

Hi Jon

How did you solve the issue?

Former Member
0 Kudos

Is this an installed add on?  Do you have your Main method accepting the connection string and then using that to connect to the SAP objects?

<summary>

/// The main entry point

/// </summary>

[STAThread]

public static int Main(string[] commandLine)

{

     this.sboGui = new SAPbouiCOM.SboGuiApi();


     // This is sent in by the B1 App

     this.sboGui.Connect(commandLine[0]);

     this.sboApp = this.SboGui.GetApplication(-1);

     this.sboCompany = new SAPbobsCOM.Company();

     this.sboCompany.GetContextCookie();

     this.SboApp.Company.GetConnectionContext(cookie);

     if (this.sboCompany.Connected)

          this.sboCompany.Disconnect();

     this.sboCompany.SetSboLoginContext(connectContext);

     .

     .

     .

}