SBO Common Failed Error

Hi
Am facing the SBO Common Failed (-111)(fff)Error while connecting the Server thru DI API Connection Object form my Add on.

You should also check the OBSCommon user in the SQL Enterprise manager. This error also pops up when the OBSCommon user's loginname is not the same as the Name. Both should be OBSCommon. If this is not the case delete the OBSCommon user and add it again with the right name and loginname. Just make sure that you also give this user the db_owner role.
Hope this helps...
yogesh

Similar Messages

  • SBO COmmon Upgrad Error

    hello all,
    im doing an upgrade from SBO 2007a SP01 PL09 to SBO2007a SP01 PL12, but when i upgrade the sbo common database it gives me this error. [see Image|http://s264.photobucket.com/albums/ii184/abing430/SAP/?action=view&current=CommonError.jpg]. base on this error i have found this sap note 1379089, but when i get to the service manager - Event Sender my computer hangs up...
    please help..
    best regards,
    Fidel

    Hello Fidel,
    Have you checked the forum?
    You may start from the follows:
    Unable to install 8.8 client
    Upgradation Failed - SAP b1 8.8 PL 12
    Thanks,
    Gordon

  • 2007A: -103-Connection to SBO-Common Failed

    Hi,
       I am getting the above metnioend error message when I try to connect to 2007 B1 DI API using sample code provided wiht SAP sdk.
    I have verified that I have a posting period for 2007. Any help is appreciated.
    globals.oCompany.Server = "TWBSLT119";
            globals.oCompany.language = SAPbobsCOM.BoSuppLangs.ln_English;
            globals.oCompany.CompanyDB="SBODemo_US";
                            globals.oCompany.DbServerType= SAPbobsCOM.BoDataServerTypes.dst_MSSQL2005;
                            globals.oCompany.DbUserName="sa";
                            globals.oCompany.DbPassword = "sa";
                            globals.oCompany.UserName="manager";
                            globals.oCompany.Password="manager";
                            globals.oCompany.LicenseServer = "TWBSLT119";
                            int x = globals.oCompany.Connect();

    Hi,
    Two "Maybe"'s:
    1. DbPassword = "sa"; - please verify this info is correct in your DB.
    2. CompanyDB="SBODemo_US"; - please note that it might be SBODemoUS (without the "_" char).
    Regards,
    Hagai.

  • SBO-Common error when Using oRecordSet = oCompany.GetCompanyList

    Good Day
    Experts:
    I am having a bit of trouble running the code in the COM DI\05.OrderAndInvoice sample. 
    On the line --> oRecordSet = oCompany.GetCompanyList
    An error appears "Connection to SBO-Common has failed". 
    I would like to do the same thing in one of my screens but I cannot even get the sample to work.  I am not sure
    what connecting to SBO-Common does but appearently I need that since the sample or my application does not work.
    Can anyone help?
    Thanks,
    EJD

    oCompany = New SAPbobsCOM.Company
    ' Init Connection Properties
    oCompany.Server = "servername" ' change to your company server
    oCompany.DbServerType = SAPbobsCOM.BoDataServerTypes.dst_MSSQL2005
    oCompany.DbUserName = ""
    oCompany.DbPassword = ""
    oCompany.UseTrusted = True
    lRetCode = oCompany.Connect()
    If lRetCode <> 0 Then ' if the connection failed
               oCompany.GetLastError(lErrCode, sErrMsg)
                MsgBox("Connection Failed - " & sErrMsg, MsgBoxStyle.Exclamation, "Default Connection Failed")
    End If
    'Create a list of companies...
    oRecordSet = oCompany.GetCompanyList ' get the company list

  • DTW - SBO Common is failed

    Hi Experts,
    I am getting an error while connecting to the server through Data Transfer Workbench.  the error is "SBO Common is failed".  Why I am getting this error.
    Edited by: Darius Heydarian on Mar 18, 2008 3:13 PM

    Hi Douglas,
    I am getting this error when I open DTW to import the data from Excel files.  Before that I need to log on to server., right , at the beginning of the log on when I am mentioned the username and password and server name... then the error SBO-Common has failed is displayed
    venkat

  • Connection to SBO-Common has failed

    Hi!
    I have a application that use SAPbobsCOM.dll version 6.7.0.0 togheter with SBO2005. Ihave no problem to read data but when i try to update i have this error "Connection to SBO-Common has failed".
    What shall I do?
    /Thomas

    Hello Thomas,
    Make sure that all components of SAP have the same Patch Level to avoid any conflict in the future.  If you use SBO2005 PL02, then all the DI API, DI Server etc must also be in PL02.  Hope this helps...

  • Error while connecting to SBO-common

    hi,
    I m getting started with the sap business one , i installed :
        sql server on machine1
        SAP business one server on machine 1
        SAP business one client on machine 2
    Im trying now to apply  samples provided  as is by the sdk...samples concerning COM UI  execute without any problems..However , COM DI samples, when executed ,return an error :
        Connection to SBO-common has failed..
    plz help..
    thank you

    Hi,
    I've had this error when the user which connects through DI has no license for DI-connections. Maybe this is the case for you also?
    Hope this helps,
    Jacco

  • Add-On connection for Journal Entry - Failed to Connect to SBO Common

    We have a customer (SAPBO 2005A SP01 PL29) with some specific requirements that required an add-on running in the background to monitor the addition of Goods Receipt PO's to the system. When the GRPO is successfully added, the Add-On will (behind the scenes) create an appropriate Journal Entry through the SAP DI. One of the issues that we encountered during the development of this functionality was that when it was tested by users, they weren't authorized to access the Financials module or the Journal Entry screen. What we ended up doing was creating a secondary connection (vCompany) in the DL pulling the information from the encrypted user information from SAP the Add-On used to connect, but utilizing a management level user ID and password. Once that connection has been made, the Journal Entry is added through the DI and that secondary connection is disconnected.
    The problem that we're encountering is this. When the users are logged into SAP Client with an regular user, and the GRPO adds, the secondary connection fails and returns a message of "Failed to Connect to SBO-Common". However, if the user is logged into SAP as an adminitrative level user and the GRPO is added, the secondary connection is successful and the Journal Entry is created. The secondary connection is strictly used for the JE. Here's the code (VS.Net 2005) for the secondary connection:
    vCompany = New SAPbobsCOM.Company
    vCompany.UseTrusted = True
    vCompany.language = SAPbobsCOM.BoSuppLangs.ln_English
    vCompany.CompanyDB = oCompany.CompanyDB
    vCompany.UserName = "XXXXX"
    vCompany.Password = "YYYYY"           
    vCompany.Server = oCompany.Server
    vCompany.DbServerType = SAPbobsCOM.BoDataServerTypes.dst_MSSQL2005
    lRetConnect = vCompany.Connect()
    Where "XXXXX" would be the appropriate management level SAP User Name and "YYYYY" would be that users password.
    Has anyone else had this kind of issue where you needed a secondary connection with management level access behind the scenes to accomplish something in SAP and had problems getting it to connect? Any thoughts or ideas would be greatly appreciated.

    Hi Dennis,
    what you can try is to make a untrusted connection
    oCompany.UseTrusted = False
    and set the DBUser and Pwd
    oCompany.DbUserName = "sa"
    oCompany.DbPassword = "insertpwd"
    lg David

  • Sbo common error - test connection

    Hello, Im trying to connect the B1DI in SBO common, but I can't:
    This error appears:
    XCE001 Nested exception: java.rmi.RemoteException: com.sap.b1i.xcellerator.XcelleratorException: XCE001 Nested exception: java.net.MalformedURLException: invalid authority: rmi://license_server_name:2099/DiaAdapterProxy_XXX
    If I write the IP address, is another error: -8012... I checked the note "Troubleshooting on B1ic Version 8.81" but the patch level are correct...
    Can somebody help me??
    Thank you!
    Sorry for my english!!
    Paulina

    Hi Paulina,
    You cannot successfully connect to SBO-Common via the B1DI test connection since its actually not like a normal Business One database. Therefore you should only test connections to normal B1 databases. If they do not exists in the SLD then you can create one.
    Cheers,
    Lisa

  • DTW error in SAP hana "Unable to access SBO-Common database"

    Hi.. Experts
    I am working on SAP Hana Pl 04 64 bit, On which I got the error "Unable to access SBO-Common database  " While using DTW.
    also company databases are also not presents,For more details for more details find out attachment.
    I have also check out all services & Restart them.
    Please give me proper solution.

    Discussion moved from SAP Business One (中文) to SAP Business One Application
    Find Topic Spaces on SCN (Forums)

  • DTW error "Unable to access SBO-Common database " for sap hana

    Hi.. Experts
    I am working on SAP Hana Pl 04 64 bit, On which I got the error "Unable to access SBO-Common database  " While using DTW.
    also company databases are also not presents,For more details for more details find out attachment.
    I have also check out all services & Restart them.
    Please give me proper solution.

    Hi,
    Please check:
    1.Ensure you have the correct DB Type selected under the Login options.
    2.Verify that all connection information is correct (for example, the correct user name and password or the user has enough right to  connect to the database server in case Windows Authentication is used).
    3. Check whether the database is running properly, make sure that the COMMON and company databases are not suspended or stopped.
    4. Ensure there is no DI API version mismatch.
    Thanks & Regards,
    Nagarajan

  • 2007 B  Upgrade  - Cannot connect to SBO-COMMON db

    Hi,
    Trying to upgrade SBO 2005B PL43 to  SBO 2007B PL07.
    The SBO -Common database exist
    The SQL Express <TCP and Pipes> enable
    In the SBO Common Upgrade, when I enter the correct server name, user, password and press OK, i get the follow error:
    "The Connection to the specified server has failed"
    "Check your password and the that server exist on the network"
    Any idea?
    Tanks

    Hi Marcio
    In 2007 you must specify the server type as SQL or SQL_2005 (Type 1 or Type 4). There are also limitations in 2007 with respect to SQL Express. The best is to check the supported databases on the portal or check with your local SAP office.
    Kind regards
    Peter Juby

  • SBO COMMON Upgrade

    Dear All,
            Currently I am using SAP B1 2007 B PL00, I want to upgrade with PL 08,
    When I am upgrading SBO COMMON, system giving one error The connection to the specified server has failed. Check your password and that the server exists on the network
            I verified SQL Server ID an Password It is correct, I am doing this task on server where SQL server has installed
    Thanks,
    Siddique Shaikh.

    Hi Siddique,
    Check the thread
    Installation issues - Connection to the specified server has failed
    2007 B  Upgrade  - Cannot connect to SBO-COMMON db
    *Close the thread if issue solved
    Regards
    Jambulingam.P
    Edited by: Jambulingam P on Aug 10, 2009 11:58 AM

  • Job submission failed : error occurred while scheduling the job. org.quartz.objectalreadyexistsexception: unable to store job with name

    Experts,
    Please help me out here,Am facing this issue while scheduling a job in BIPublisher.
    job submission failed : error occurred while scheduling the job. org.quartz.objectalreadyexistsexception: unable to store job with name
    Thanks,

    You are probably installing on a hardened machine.
    The "installation guide" says that if you are doing so, you need to create a file named libx11.so.4 and update your LD_LIBRARY_PATH (see http://docs.iplanet.com/docs/manuals/messaging/ims52/ig/unix/overview.htm)but:
    1- the library name is libX11.so.4 and
    2- for jre a common file is not enough, you need to install SUNWxwplt at least. This will install the library on /usr/openwin/lib.
    You can check the results running <server-root>/bin/base/jre/bin/jre
    Hope that helps and sorry about my poor english.

  • Common internet error while launching webdynpro application in Portal

    Hi
    We are facing issues with the development components of WD type deployed on a server with more than one instances.
    We have build up a custom development component & deployed on the server. Created a Portal page for the deployed component & when trying to launch that page in Portal, we are facing a common internet error as  "The Page Cannot be Displayed" .
    "The page cannot be displayed
    The page you are looking for is currently unavailable. The Web site might be experiencing technical difficulties, or you may need to adjust your browser settings.
    To attempt fixing network connectivity problems, click Tools, and then click "Diagnose Connection Problems..."
    When trying to lauch the same page from specified instances, the applications launches successfully but fails when tried through central instance.
    Has any one faced this issue earlier? Please share the experience.
    Thanks,
    Archana

    Hi Archana
    Please check that where you are delpoying application central instance or other instance.
    Go to CMS >> landscape configuraiton >> see Runtime details..
    Hope it helps
    Regards
    Arun

Maybe you are looking for

  • How to set up DEV, TEST and PROD environment?

    We have used BI publisher Enterprise (standalone), Oracle BI Publisher 10.1.3.4.1. Our admin set up DEV, TEST and PROD environment based on the folder. For example, there is DEV folder, TEST folder and PROD folder. Developer is developing reports und

  • Bad output from Premiere Elements

    I've tried every option but consistently the DVDs burned with my videos from Premiere Elements 11 are out of focus.  this makes this software useless for me.  I'm now using Photoshop Elements to generate slide shows and importing them into another vi

  • Validation error message not found in PI 7.1 :

    I've enabled Validation at adapter engine level.When a message is failed at validation level,i got an alert email with message id. But i can't see the message in Message monitorring and Communication chennel monitorring as well. Any idea/.?????? Than

  • Can't create photo book in iPhoto 9.6 (910.29)

    I am trying to create a photo book in iPhoto. I have created books in the past but well over a year ago so I don't know when the  issue could have started. When I click on create, seemly nothing happens however when I quit iPhoto and start it up agai

  • Cd will not eject help?

    my cd will not eject it is not showing up as being in there does not eject from keypad or using the control section help please