-103 Failed to Connect to Company

That's good to know but now why ?
What do I do to know why it doesn't connect ?
I've looked everything, dll's versions, and everything seems all right !

You may check these threads if you haven't try them yet:
Re: B1DIEventService:  DI Event Server and Client on the same machine (win2003)
Not connecting to the selected company database
8020Failed to initialize lenguage Failed connect to the company's database
Thanks,
Gordon

Similar Messages

  • Failed to connect Company (-222)

    Trying to connect DI from UI API.
    private SAPbobsCOM.Company oCompany;
            private SAPbouiCOM.Application SBO_Application;
            //  Connect to SBO '
            private void SetApplication() {
                SAPbouiCOM.SboGuiApi SboGuiApi = null;
                string sConnectionString = null;
                SboGuiApi = new SAPbouiCOM.SboGuiApi();
                sConnectionString = System.Convert.ToString( Environment.GetCommandLineArgs().GetValue( 1 ) );
                SboGuiApi.Connect( sConnectionString );
                SBO_Application = SboGuiApi.GetApplication( -1 );
            //  Connect with connection string '
            private int SetConnectionContext() {
                int setConnectionContextReturn = 0;
                string sCookie = null;
                string sConnectionContext = null;
                int lRetCode = 0;
                oCompany = new SAPbobsCOM.Company();
                sCookie = oCompany.GetContextCookie();
                sConnectionContext = SBO_Application.Company.GetConnectionContext( sCookie );
                if ( oCompany.Connected == true ) {
                    oCompany.Disconnect();
                setConnectionContextReturn = oCompany.SetSboLoginContext( sConnectionContext );
                return setConnectionContextReturn;
            //  Connect to SBO '
            private int ConnectToCompany() {
                int connectToCompanyReturn = 0;
                // Establish the connection to the company database.
                connectToCompanyReturn = oCompany.Connect();
                return connectToCompanyReturn;
            //  Init the Class '
            public Test() : base() {
                SetApplication();
                if ( !( SetConnectionContext() == 0 ) ) {
                    SBO_Application.MessageBox( "Failed setting a connection to DI API", 1, "Ok", "", "" );
                    System.Environment.Exit( 0 ); //  Terminating the Add-On Application
                if ( !( ConnectToCompany() == 0 ) ) {
                    SBO_Application.MessageBox( "Failed connecting to the company's Data Base", 1, "Ok", "", "" );
                    Application.Exit(); //  Terminating the Add-On Application
                SBO_Application.MessageBox( "DI Connected To: " + oCompany.CompanyName, 1, "Ok", "", "" );
                // events handled by SBO_Application_ItemEvent
                   bool tmpB = false;
                   SBO_Application.ItemEvent += new SAPbouiCOM._IApplicationEvents_ItemEventEventHandler( SBO_Application_ItemEvent );
          But Getting error "Failed to connect company" . Why??

    Hello...
    I´m with the same problem, but the return code is -131
    I try to find in the SDK Help Center, but i´m not found the errors list.
    Can same one help me, please?
    Tks

  • 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

  • Can't connect to company using B1DE

    Hi
    I have just installed B1DE for SAP 2005 SP1.
    The problem I have is that when I run the addon wizard and the connection screen comes up, I get an error - 'connection to database failed - connection to sbo-common has failed '
    I get this with the sdk if I don't have a valid period set up. The periods are set fine.
    Can anyone suggest anything please ?
    Thanks
    Regards Andy

    Hi,
    Can you please take a simple addon and replace the DI connection by the following code?
    You only have to replace all strings with the corresponding datas you want to use:
    diCompany.Server = "localhost";
    diCompany.CompanyDB = "YourCompany";
    diCompany.UserName = "manager";
    diCompany.Password = "manager";
    diCompany.DbUserName = "dbusername";
    diCompany.DbPassword = "dbpassword";
    int ret = diCompany.Connect();
    if (ret != 0)
            int errcode;
            string errmsg;
            Globals.diCompany.GetLastError(out errcode,out errmsg);
            Cursor.Current = Cursors.Default;
            MessageBox.Show("ERROR - Connection to company failed: " + errmsg);
    Please let me know if it works or not
    Regards
    Trinidad.

  • Failed to Connect to SBOCommon

    Hello,
    I created a simple program to get the Session ID from the di server using the VB6.0, I supplied all the valid entries but i still can't get the session id. Here is the SBODI_Server.log response given to me.
    <?xml version="1.0"?><env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope"><env:Body><env:Fault><env:Code><env:Value>env:Receiver</env:Value><env:Subcode><env:Value>-111</env:Value></env:Subcode></env:Code><env:Reason><env:Text xml:lang="en">Failed to Connect to SBOCommon</env:Text></env:Reason><env:Detail><Command>Login</Command></env:Detail></env:Fault></env:Body></env:Envelope>

    Have a look at this thread
    Can't connect to Company Database w/ SOAP

  • Hyperion Financial Reporting Studio "Failed to Connect to Server"

    One of my report developers recently got a new laptop. Since then, she hasn't been able to open an existing report or create a new one. She can log into Financial Reporting Studio, but when trying to open an existing report or create a new report, she gets the error message "Failed to Connect to Server".
    We've tested using her laptop and using mine. We are both fine on my laptop. We both have same issue on her laptop. Therefore, we don't think it's a security/credentials issue.
    We've searched help documentation and other threads in this forum but haven't been able to find what we need.
    We suspect that file(s) are missing or something wasn't configured properly during the new install. Maybe the Planning ADM Driver?? Our company's tech support hasn't been able to help. This is a new implementation, the consultants are gone, and our IT staff isn't up to speed yet.
    Can anyone offer help as to what file/configuration could be the cause and exactly how to correct?
    Thanks.

    We had the same issue after installing the Financial Reporting Studio client.
    If you run the batch script HRRunAnt.cmd in the directory C:\Hyperion\products\biplus\install\bin after installation this fixes the problem.

  • Fail to connect DB via DI-API on SAP Business One 9.0 for HANA

    Hi,experts.
    I am coding a sample program using VB.net on SAP Business One 9.0 for HANA.
    But this problem fail to connect DB.
    The code relevant to connect DB is below.
    ============================================-
    SAPbobsCOM.Company.DbServerType = 6
    SAPbobsCOM.Company.Server = ServerName:30015
    SAPbobsCOM.Company.UseTrusted = False
    SAPbobsCOM.Company.DbUserName = SYSTEM
    SAPbobsCOM.Company.DbPassword = ********
    SAPbobsCOM.Company.CompanyDB = CompanyDBName
    SAPbobsCOM.Company.UserName = manager
    SAPbobsCOM.Company.Password = ********
    ' Connecting to a company DB
    RetCode = SAPbobsCOM.Company.Connect
    ============================================
    (Result)  RetCode = False
    (Expected result) RetCode = True
    I think this is a commonly difinition on SAP Business One for HANA.,
    but I can not find any useful information...
    Could you give me advice about this problem?
    Best regards,
    Yuka Masuda

    Thank you for your reply, Maik.
    I changed DbServerType from 6 to 9,
    and the program works!!
    I appreciate your useful information.
    Thank you.
    Best regards,
    Yuka Masuda

  • Network Manager fails to connect with Sierra Wireless 3G/4G modem

    Hi,
    I have three Asus Laptops running with Arch (Asus N56VZ, Asus F3JC, Asus UL80VS). All laptops work with Cinnamon Desktop. Everything works fine except 3G Modem in Network Manager. I have two USB modems: Sierra Wireless AirCard 310U and Sierra Wireless AirCard 320U.
    Modems had worked fine in end of year 2012, when NetworkManager version was 0.9.6.4 and ModemManager 0.6.0.0. After update (NM >0.8.X.X, MM >0.7.X. - when the ModemManager.service appeared) until now, I can't connect to the internet on all Asus laptops. Since 2013 I have to use wvdial, because in wvdial modems works fine. It is Arch problem, because in Linux Mint 15 I can connect with NetworkManager.
    Sierra AirCard 310U - When I'm connecting to the internet, modem reboots itself.
    Sierra AirCard 320U - When I'm connecting to the internet, Network Manager can't obtain DHCP address.
    I would be grateful for any help.
    Sierra Wireless AirCard 310U (USB 3G Modem) log:
    aug 22 13:41:35 AsusN56VZ NetworkManager[309]: <info> Activation (ttyUSB2) starting connection 'Orange PL'
    aug 22 13:41:35 AsusN56VZ NetworkManager[309]: <info> (ttyUSB2): device state change: disconnected -> prepare (reason 'none') [30 40 0]
    aug 22 13:41:35 AsusN56VZ NetworkManager[309]: <info> Activation (ttyUSB2) Stage 1 of 5 (Device Prepare) scheduled...
    aug 22 13:41:35 AsusN56VZ NetworkManager[309]: <info> Activation (ttyUSB2) Stage 1 of 5 (Device Prepare) started...
    aug 22 13:41:35 AsusN56VZ NetworkManager[309]: <info> Activation (ttyUSB2) Stage 1 of 5 (Device Prepare) complete.
    aug 22 13:41:35 AsusN56VZ ModemManager[308]: <info> Simple connect started...
    aug 22 13:41:35 AsusN56VZ ModemManager[308]: <info> Simple connect state (3/8): Enable
    aug 22 13:41:35 AsusN56VZ ModemManager[308]: <info> Modem /org/freedesktop/ModemManager1/Modem/0: state changed (disabled -> enabling)
    aug 22 13:41:35 AsusN56VZ NetworkManager[309]: <info> (ttyUSB2) modem state changed, 'disabled' --> 'enabling' (reason: user-requested)
    aug 22 13:41:35 AsusN56VZ ModemManager[308]: <warn> (ttyUSB2): port attributes not fully set
    aug 22 13:41:38 AsusN56VZ ModemManager[308]: <info> Modem /org/freedesktop/ModemManager1/Modem/0: 3GPP Registration state changed (unknown -> registering)
    aug 22 13:41:38 AsusN56VZ ModemManager[308]: <info> Modem /org/freedesktop/ModemManager1/Modem/0: 3GPP Registration state changed (registering -> home)
    aug 22 13:41:38 AsusN56VZ ModemManager[308]: <info> Modem /org/freedesktop/ModemManager1/Modem/0: 3GPP location updated (MCC: '0', MNC: '0', Location area code: '4FB9', Cell ID: '9C65539')
    aug 22 13:41:39 AsusN56VZ ModemManager[308]: <info> Modem /org/freedesktop/ModemManager1/Modem/0: 3GPP location updated (MCC: '260', MNC: '3', Location area code: '4FB9', Cell ID: '9C65539')
    aug 22 13:41:40 AsusN56VZ kernel: usb 3-2: USB disconnect, device number 3
    aug 22 13:41:40 AsusN56VZ kernel: sierra ttyUSB1: resubmit read urb failed.(-19)
    aug 22 13:41:40 AsusN56VZ kernel: sierra ttyUSB2: resubmit read urb failed.(-19)
    aug 22 13:41:40 AsusN56VZ kernel: sierra ttyUSB1: resubmit read urb failed.(-19)
    aug 22 13:41:40 AsusN56VZ kernel: sierra ttyUSB2: resubmit read urb failed.(-19)
    aug 22 13:41:40 AsusN56VZ kernel: sierra ttyUSB1: resubmit read urb failed.(-19)
    aug 22 13:41:40 AsusN56VZ ModemManager[308]: mm_serial_port_close: assertion `priv->open_count > 0' failed
    aug 22 13:41:40 AsusN56VZ ModemManager[308]: <info> Modem /org/freedesktop/ModemManager1/Modem/0: state changed (enabling -> registered)
    aug 22 13:41:40 AsusN56VZ kernel: sierra ttyUSB2: resubmit read urb failed.(-19)
    aug 22 13:41:40 AsusN56VZ ModemManager[308]: <info> Simple connect state (4/8): Wait to get fully enabled
    aug 22 13:41:40 AsusN56VZ ModemManager[308]: <info> Simple connect state (5/8): Register
    aug 22 13:41:40 AsusN56VZ ModemManager[308]: <info> (tty/ttyUSB2): released by modem /sys/devices/pci0000:00/0000:00:14.0/usb3/3-2
    aug 22 13:41:40 AsusN56VZ ModemManager[308]: <info> Simple connect state (6/8): Bearer
    aug 22 13:41:40 AsusN56VZ kernel: sierra ttyUSB1: resubmit read urb failed.(-19)
    aug 22 13:41:40 AsusN56VZ kernel: sierra ttyUSB2: resubmit read urb failed.(-19)
    aug 22 13:41:40 AsusN56VZ kernel: sierra ttyUSB2: resubmit read urb failed.(-19)
    aug 22 13:41:40 AsusN56VZ kernel: sierra ttyUSB0: Sierra USB modem converter now disconnected from ttyUSB0
    aug 22 13:41:40 AsusN56VZ kernel: sierra 3-2:1.0: device disconnected
    aug 22 13:41:40 AsusN56VZ kernel: sierra ttyUSB2: resubmit read urb failed.(-19)
    aug 22 13:41:40 AsusN56VZ kernel: sierra ttyUSB2: resubmit read urb failed.(-19)
    aug 22 13:41:40 AsusN56VZ kernel: sierra ttyUSB2: resubmit read urb failed.(-19)
    aug 22 13:41:40 AsusN56VZ kernel: sierra ttyUSB1: Sierra USB modem converter now disconnected from ttyUSB1
    aug 22 13:41:40 AsusN56VZ kernel: sierra 3-2:1.1: device disconnected
    aug 22 13:41:40 AsusN56VZ kernel: sierra ttyUSB2: Sierra USB modem converter now disconnected from ttyUSB2
    aug 22 13:41:40 AsusN56VZ kernel: sierra 3-2:1.3: device disconnected
    aug 22 13:41:40 AsusN56VZ kernel: sierra_net 3-2:1.7 wwp0s20u2i7: unregister 'sierra_net' usb-0000:00:14.0-2, Sierra Wireless USB-to-WWAN Modem
    aug 22 13:41:40 AsusN56VZ kernel: ModemManager[308]: segfault at 28 ip 0000000000433350 sp 00007ffff409e088 error 4 in ModemManager[400000+e0000]
    aug 22 13:41:40 AsusN56VZ systemd[1]: ModemManager.service: main process exited, code=dumped, status=11/SEGV
    aug 22 13:41:40 AsusN56VZ systemd[1]: Unit ModemManager.service entered failed state.
    aug 22 13:41:40 AsusN56VZ NetworkManager[309]: <info> ModemManager disappeared from bus
    aug 22 13:41:40 AsusN56VZ NetworkManager[309]: <info> (ttyUSB2): device state change: prepare -> unmanaged (reason 'removed') [40 10 36]
    aug 22 13:41:40 AsusN56VZ NetworkManager[309]: <info> (ttyUSB2): deactivating device (reason 'removed') [36]
    aug 22 13:41:40 AsusN56VZ laptop-mode[2414]: Laptop mode
    aug 22 13:41:40 AsusN56VZ NetworkManager[309]: <info> (ttyUSB2): cleaning up...
    aug 22 13:41:40 AsusN56VZ NetworkManager[309]: <info> (ttyUSB2): taking down device.
    aug 22 13:41:40 AsusN56VZ laptop-mode[2415]: enabled, not active
    aug 22 13:41:40 AsusN56VZ systemd-coredump[2336]: Process 308 (ModemManager) dumped core.
    aug 22 13:41:40 AsusN56VZ systemd[1]: Starting Modem Manager...
    aug 22 13:41:40 AsusN56VZ systemd[1]: ModemManager.service holdoff time over, scheduling restart.
    aug 22 13:41:40 AsusN56VZ systemd[1]: Stopping Modem Manager...
    aug 22 13:41:40 AsusN56VZ systemd[1]: Starting Modem Manager...
    aug 22 13:41:43 AsusN56VZ kernel: sierra_net 3-2:1.7 (unregistered net_device): usb_control_msg failed, status -19
    Sierra Wireless AirCard 320U (3G/4G Modem) log:
    aug 22 13:48:02 AsusN56VZ NetworkManager[315]: <info> Activation (ttyUSB3) starting connection 'Orange PL'
    aug 22 13:48:02 AsusN56VZ NetworkManager[315]: <info> (ttyUSB3): device state change: disconnected -> prepare (reason 'none') [30 40 0]
    aug 22 13:48:02 AsusN56VZ NetworkManager[315]: <info> Activation (ttyUSB3) Stage 1 of 5 (Device Prepare) scheduled...
    aug 22 13:48:02 AsusN56VZ NetworkManager[315]: <info> Activation (ttyUSB3) Stage 1 of 5 (Device Prepare) started...
    aug 22 13:48:02 AsusN56VZ NetworkManager[315]: <info> Activation (ttyUSB3) Stage 1 of 5 (Device Prepare) complete.
    aug 22 13:48:02 AsusN56VZ ModemManager[314]: <info> Simple connect started...
    aug 22 13:48:02 AsusN56VZ ModemManager[314]: <info> Simple connect state (3/8): Enable
    aug 22 13:48:02 AsusN56VZ ModemManager[314]: <info> Modem /org/freedesktop/ModemManager1/Modem/1: state changed (disabled -> enabling)
    aug 22 13:48:02 AsusN56VZ NetworkManager[315]: <info> (ttyUSB3) modem state changed, 'disabled' --> 'enabling' (reason: user-requested)
    aug 22 13:48:02 AsusN56VZ ModemManager[314]: <warn> (ttyUSB3): port attributes not fully set
    aug 22 13:48:02 AsusN56VZ ModemManager[314]: <warn> (ttyUSB4): port attributes not fully set
    aug 22 13:48:05 AsusN56VZ ModemManager[314]: <info> Modem /org/freedesktop/ModemManager1/Modem/1: 3GPP Registration state changed (unknown -> registering)
    aug 22 13:48:05 AsusN56VZ ModemManager[314]: <info> Modem /org/freedesktop/ModemManager1/Modem/1: 3GPP Registration state changed (registering -> home)
    aug 22 13:48:05 AsusN56VZ ModemManager[314]: <info> Modem /org/freedesktop/ModemManager1/Modem/1: 3GPP location updated (MCC: '0', MNC: '0', Location area code: '4FB9', Cell ID: '9C65539')
    aug 22 13:48:05 AsusN56VZ ModemManager[314]: <info> Modem /org/freedesktop/ModemManager1/Modem/1: 3GPP location updated (MCC: '260', MNC: '3', Location area code: '4FB9', Cell ID: '9C65539')
    aug 22 13:48:06 AsusN56VZ ModemManager[314]: <info> Modem /org/freedesktop/ModemManager1/Modem/1: state changed (enabling -> registered)
    aug 22 13:48:06 AsusN56VZ ModemManager[314]: <info> Simple connect state (4/8): Wait to get fully enabled
    aug 22 13:48:06 AsusN56VZ ModemManager[314]: <info> Simple connect state (5/8): Register
    aug 22 13:48:06 AsusN56VZ ModemManager[314]: <info> Simple connect state (6/8): Bearer
    aug 22 13:48:06 AsusN56VZ NetworkManager[315]: <info> (ttyUSB3) modem state changed, 'enabling' --> 'registered' (reason: user-requested)
    aug 22 13:48:06 AsusN56VZ NetworkManager[315]: <info> WWAN now enabled by management service
    aug 22 13:48:06 AsusN56VZ ModemManager[314]: <info> Simple connect state (7/8): Connect
    aug 22 13:48:06 AsusN56VZ ModemManager[314]: <info> Modem /org/freedesktop/ModemManager1/Modem/1: state changed (registered -> connecting)
    aug 22 13:48:06 AsusN56VZ NetworkManager[315]: <info> (ttyUSB3) modem state changed, 'registered' --> 'connecting' (reason: user-requested)
    aug 22 13:48:06 AsusN56VZ ModemManager[314]: <info> Modem /org/freedesktop/ModemManager1/Modem/1: signal quality updated (40)
    aug 22 13:48:06 AsusN56VZ ModemManager[314]: <info> Modem /org/freedesktop/ModemManager1/Modem/1: access technology changed (unknown -> hsdpa, hsupa)
    aug 22 13:48:09 AsusN56VZ ModemManager[314]: <info> Modem /org/freedesktop/ModemManager1/Modem/1: state changed (connecting -> connected)
    aug 22 13:48:09 AsusN56VZ ModemManager[314]: <info> Simple connect state (8/8): All done
    aug 22 13:48:09 AsusN56VZ NetworkManager[315]: <info> (ttyUSB3) modem state changed, 'connecting' --> 'connected' (reason: user-requested)
    aug 22 13:48:09 AsusN56VZ NetworkManager[315]: <info> Activation (ttyUSB3) Stage 2 of 5 (Device Configure) scheduled...
    aug 22 13:48:09 AsusN56VZ NetworkManager[315]: <info> Activation (ttyUSB3) Stage 2 of 5 (Device Configure) starting...
    aug 22 13:48:09 AsusN56VZ NetworkManager[315]: <info> (ttyUSB3): device state change: prepare -> config (reason 'none') [40 50 0]
    aug 22 13:48:09 AsusN56VZ NetworkManager[315]: <info> (ttyUSB3): bringing up device.
    aug 22 13:48:09 AsusN56VZ NetworkManager[315]: <info> Activation (ttyUSB3) Stage 2 of 5 (Device Configure) successful.
    aug 22 13:48:09 AsusN56VZ NetworkManager[315]: <info> Activation (ttyUSB3) Stage 3 of 5 (IP Configure Start) scheduled.
    aug 22 13:48:09 AsusN56VZ NetworkManager[315]: <info> Activation (ttyUSB3) Stage 2 of 5 (Device Configure) complete.
    aug 22 13:48:09 AsusN56VZ NetworkManager[315]: <info> Activation (ttyUSB3) Stage 3 of 5 (IP Configure Start) started...
    aug 22 13:48:09 AsusN56VZ NetworkManager[315]: <info> (ttyUSB3): device state change: config -> ip-config (reason 'none') [50 70 0]
    aug 22 13:48:09 AsusN56VZ NetworkManager[315]: <info> Activation (wwp0s20u2i7) Beginning DHCPv4 transaction (timeout in 45 seconds)
    aug 22 13:48:09 AsusN56VZ kernel: IPv6: ADDRCONF(NETDEV_UP): wwp0s20u2i7: link is not ready
    aug 22 13:48:09 AsusN56VZ NetworkManager[315]: <info> dhclient started with pid 2351
    aug 22 13:48:09 AsusN56VZ NetworkManager[315]: <info> Activation (ttyUSB3) Stage 4 of 5 (IPv6 Configure Timeout) scheduled...
    aug 22 13:48:09 AsusN56VZ NetworkManager[315]: <info> Activation (ttyUSB3) Stage 3 of 5 (IP Configure Start) complete.
    aug 22 13:48:09 AsusN56VZ NetworkManager[315]: <info> Activation (ttyUSB3) Stage 4 of 5 (IPv6 Configure Timeout) started...
    aug 22 13:48:09 AsusN56VZ NetworkManager[315]: <info> Activation (ttyUSB3) Stage 4 of 5 (IPv6 Configure Timeout) complete.
    aug 22 13:48:09 AsusN56VZ dhclient[2351]: Internet Systems Consortium DHCP Client 4.2.5-P1
    aug 22 13:48:09 AsusN56VZ dhclient[2351]: Copyright 2004-2013 Internet Systems Consortium.
    aug 22 13:48:09 AsusN56VZ dhclient[2351]: All rights reserved.
    aug 22 13:48:09 AsusN56VZ dhclient[2351]: For info, please visit https://www.isc.org/software/dhcp/
    aug 22 13:48:09 AsusN56VZ dhclient[2351]:
    aug 22 13:48:09 AsusN56VZ NetworkManager[315]: <info> (wwp0s20u2i7): DHCPv4 state changed nbi -> preinit
    aug 22 13:48:09 AsusN56VZ dhclient[2351]: Listening on LPF/wwp0s20u2i7/8e:1d:fe:e0:02:07
    aug 22 13:48:09 AsusN56VZ dhclient[2351]: Sending on LPF/wwp0s20u2i7/8e:1d:fe:e0:02:07
    aug 22 13:48:09 AsusN56VZ dhclient[2351]: Sending on Socket/fallback
    aug 22 13:48:09 AsusN56VZ dhclient[2351]: DHCPDISCOVER on wwp0s20u2i7 to 255.255.255.255 port 67 interval 5
    aug 22 13:48:14 AsusN56VZ dhclient[2351]: DHCPDISCOVER on wwp0s20u2i7 to 255.255.255.255 port 67 interval 5
    aug 22 13:48:19 AsusN56VZ dhclient[2351]: DHCPDISCOVER on wwp0s20u2i7 to 255.255.255.255 port 67 interval 7
    aug 22 13:48:26 AsusN56VZ dhclient[2351]: DHCPDISCOVER on wwp0s20u2i7 to 255.255.255.255 port 67 interval 7
    aug 22 13:48:33 AsusN56VZ dhclient[2351]: DHCPDISCOVER on wwp0s20u2i7 to 255.255.255.255 port 67 interval 7
    aug 22 13:48:36 AsusN56VZ ModemManager[314]: <info> Modem /org/freedesktop/ModemManager1/Modem/1: signal quality updated (40)
    aug 22 13:48:40 AsusN56VZ dhclient[2351]: DHCPDISCOVER on wwp0s20u2i7 to 255.255.255.255 port 67 interval 10
    aug 22 13:48:50 AsusN56VZ dhclient[2351]: DHCPDISCOVER on wwp0s20u2i7 to 255.255.255.255 port 67 interval 17
    aug 22 13:48:54 AsusN56VZ NetworkManager[315]: <warn> (wwp0s20u2i7): DHCPv4 request timed out.
    aug 22 13:48:54 AsusN56VZ NetworkManager[315]: <info> (wwp0s20u2i7): canceled DHCP transaction, DHCP client pid 2351
    aug 22 13:48:54 AsusN56VZ NetworkManager[315]: <info> Activation (ttyUSB3) Stage 4 of 5 (IPv4 Configure Timeout) scheduled...
    aug 22 13:48:54 AsusN56VZ NetworkManager[315]: <info> Activation (ttyUSB3) Stage 4 of 5 (IPv4 Configure Timeout) started...
    aug 22 13:48:54 AsusN56VZ NetworkManager[315]: <info> (ttyUSB3): device state change: ip-config -> failed (reason 'ip-config-unavailable') [70 120 5]
    aug 22 13:48:54 AsusN56VZ NetworkManager[315]: <warn> Activation (ttyUSB3) failed for connection 'Orange PL'
    aug 22 13:48:54 AsusN56VZ NetworkManager[315]: <info> Activation (ttyUSB3) Stage 4 of 5 (IPv4 Configure Timeout) complete.
    aug 22 13:48:54 AsusN56VZ NetworkManager[315]: <info> (ttyUSB3): device state change: failed -> disconnected (reason 'none') [120 30 0]
    aug 22 13:48:54 AsusN56VZ NetworkManager[315]: <info> (ttyUSB3): deactivating device (reason 'none') [0]
    aug 22 13:48:54 AsusN56VZ ModemManager[314]: <info> Modem /org/freedesktop/ModemManager1/Modem/1: state changed (connected -> disconnecting)
    aug 22 13:48:54 AsusN56VZ NetworkManager[315]: <info> (ttyUSB3) modem state changed, 'connected' --> 'disconnecting' (reason: user-requested)
    Last edited by Shocker (2013-09-14 20:08:08)

    Shocker wrote:I don't think it's kernel problem, because Linux Mint 15 have kernel 3.8 and there is everything fine. Maybe systemd (Fedora & Arch have systemd, but Mint sysvinit..), maybe version of dhcpcd, I have no idea...
    To test, I downgraded my kernel
    ~ ᐅ uname -r
    3.9.5-301.fc19.x86_64.debug
    And now I see in messages
    Sep 15 09:46:17 localhost NetworkManager[724]: <info> Activation (wwp0s29u1u1i7) starting connection 'Telstra'
    Sep 15 09:46:17 localhost NetworkManager[724]: <info> (wwp0s29u1u1i7): device state change: disconnected -> prepare (reason 'none') [30 40 0]
    Sep 15 09:46:17 localhost NetworkManager[724]: <info> Activation (wwp0s29u1u1i7) Stage 1 of 5 (Device Prepare) scheduled...
    Sep 15 09:46:17 localhost NetworkManager[724]: <info> Activation (wwp0s29u1u1i7) Stage 1 of 5 (Device Prepare) started...
    Sep 15 09:46:17 localhost NetworkManager[724]: <info> Activation (wwp0s29u1u1i7) Stage 1 of 5 (Device Prepare) complete.
    Sep 15 09:46:17 localhost modem-manager[757]: <info> (ttyUSB2) opening serial port...
    Sep 15 09:46:17 localhost modem-manager[757]: <warn> (ttyUSB2): port attributes not fully set
    Sep 15 09:46:17 localhost modem-manager[757]: <info> Modem /org/freedesktop/ModemManager/Modems/1: state changed (disabled -> enabling)
    Sep 15 09:46:17 localhost dbus-daemon[618]: modem-manager[757]: <info> (ttyUSB2) opening serial port...
    Sep 15 09:46:17 localhost dbus-daemon[618]: modem-manager[757]: <warn> (ttyUSB2): port attributes not fully set
    Sep 15 09:46:17 localhost dbus-daemon[618]: modem-manager[757]: <info> Modem /org/freedesktop/ModemManager/Modems/1: state changed (disabled -> enabling)
    Sep 15 09:46:18 localhost dbus-daemon[618]: modem-manager[757]: <info> (ttyUSB2): using PDU mode for SMS
    Sep 15 09:46:18 localhost modem-manager[757]: <info> (ttyUSB2): using PDU mode for SMS
    Sep 15 09:46:18 localhost dbus-daemon[618]: modem-manager[757]: <info> Modem /org/freedesktop/ModemManager/Modems/1: state changed (enabling -> enabled)
    Sep 15 09:46:18 localhost modem-manager[757]: <info> Modem /org/freedesktop/ModemManager/Modems/1: state changed (enabling -> enabled)
    Sep 15 09:46:18 localhost NetworkManager[724]: <info> WWAN now enabled by management service
    Sep 15 09:46:19 localhost dbus-daemon[618]: modem-manager[757]: <info> Modem /org/freedesktop/ModemManager/Modems/1: state changed (enabled -> registered)
    Sep 15 09:46:19 localhost modem-manager[757]: <info> Modem /org/freedesktop/ModemManager/Modems/1: state changed (enabled -> registered)
    Sep 15 09:46:19 localhost dbus-daemon[618]: modem-manager[757]: <info> Modem /org/freedesktop/ModemManager/Modems/1: state changed (registered -> connecting)
    Sep 15 09:46:19 localhost modem-manager[757]: <info> Modem /org/freedesktop/ModemManager/Modems/1: state changed (registered -> connecting)
    Sep 15 09:46:19 localhost dbus-daemon[618]: modem-manager[757]: <info> Modem /org/freedesktop/ModemManager/Modems/1: state changed (connecting -> connected)
    Sep 15 09:46:19 localhost modem-manager[757]: <info> Modem /org/freedesktop/ModemManager/Modems/1: state changed (connecting -> connected)
    Sep 15 09:46:19 localhost kernel: [ 5056.773068] IPv6: ADDRCONF(NETDEV_UP): wwp0s29u1u1i7: link is not ready
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> Activation (wwp0s29u1u1i7) Stage 2 of 5 (Device Configure) scheduled...
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> Activation (wwp0s29u1u1i7) Stage 2 of 5 (Device Configure) starting...
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> (wwp0s29u1u1i7): device state change: prepare -> config (reason 'none') [40 50 0]
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> (wwp0s29u1u1i7): bringing up device.
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> Activation (wwp0s29u1u1i7) Stage 2 of 5 (Device Configure) successful.
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> Activation (wwp0s29u1u1i7) Stage 2 of 5 (Device Configure) complete.
    Sep 15 09:46:19 localhost avahi-daemon[607]: Registering new address record for fe80::c0c3:a2ff:fe4a:207 on wwp0s29u1u1i7.*.
    Sep 15 09:46:19 localhost kernel: [ 5056.876750] IPv6: ADDRCONF(NETDEV_CHANGE): wwp0s29u1u1i7: link becomes ready
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> Activation (wwp0s29u1u1i7) Stage 3 of 5 (IP Configure Start) scheduled.
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> Activation (wwp0s29u1u1i7) Stage 3 of 5 (IP Configure Start) started...
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> (wwp0s29u1u1i7): device state change: config -> ip-config (reason 'none') [50 70 0]
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> Activation (wwp0s29u1u1i7) Beginning DHCPv4 transaction (timeout in 45 seconds)
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> dhclient started with pid 10376
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> Activation (wwp0s29u1u1i7) Stage 4 of 5 (IPv6 Configure Timeout) scheduled...
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> Activation (wwp0s29u1u1i7) Stage 3 of 5 (IP Configure Start) complete.
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> Activation (wwp0s29u1u1i7) Stage 4 of 5 (IPv6 Configure Timeout) started...
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> Activation (wwp0s29u1u1i7) Stage 4 of 5 (IPv6 Configure Timeout) complete.
    Sep 15 09:46:19 localhost dhclient[10376]: Internet Systems Consortium DHCP Client 4.2.5
    Sep 15 09:46:19 localhost dhclient[10376]: Copyright 2004-2013 Internet Systems Consortium.
    Sep 15 09:46:19 localhost dhclient[10376]: All rights reserved.
    Sep 15 09:46:19 localhost dhclient[10376]: For info, please visit https://www.isc.org/software/dhcp/
    Sep 15 09:46:19 localhost dhclient[10376]:
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> (wwp0s29u1u1i7): DHCPv4 state changed nbi -> preinit
    Sep 15 09:46:19 localhost dhclient[10376]: Listening on LPF/wwp0s29u1u1i7/c2:c3:a2:4a:02:07
    Sep 15 09:46:19 localhost dhclient[10376]: Sending on LPF/wwp0s29u1u1i7/c2:c3:a2:4a:02:07
    Sep 15 09:46:19 localhost dhclient[10376]: Sending on Socket/fallback
    Sep 15 09:46:19 localhost dhclient[10376]: DHCPREQUEST on wwp0s29u1u1i7 to 255.255.255.255 port 67 (xid=0x6e8c90b2)
    Sep 15 09:46:19 localhost dhclient[10376]: DHCPNAK from 10.102.67.253 (xid=0x6e8c90b2)
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> (wwp0s29u1u1i7): DHCPv4 state changed preinit -> expire
    Sep 15 09:46:19 localhost dhclient[10376]: DHCPDISCOVER on wwp0s29u1u1i7 to 255.255.255.255 port 67 interval 6 (xid=0xae2cec8)
    Sep 15 09:46:19 localhost dhclient[10376]: DHCPREQUEST on wwp0s29u1u1i7 to 255.255.255.255 port 67 (xid=0xae2cec8)
    Sep 15 09:46:19 localhost dhclient[10376]: DHCPOFFER from 10.102.67.253
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> (wwp0s29u1u1i7): DHCPv4 state changed expire -> preinit
    Sep 15 09:46:19 localhost dhclient[10376]: DHCPACK from 10.102.67.253 (xid=0xae2cec8)
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> (wwp0s29u1u1i7): DHCPv4 state changed preinit -> bound
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> address 10.102.67.12
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> prefix 24 (255.255.255.0)
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> gateway 10.102.67.12
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> nameserver '10.4.81.103'
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> nameserver '10.4.182.20'
    Sep 15 09:46:19 localhost NetworkManager[724]: nm_ip4_config_add_wins: assertion `wins > 0' failed
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> wins '0.0.0.0'
    Sep 15 09:46:19 localhost NetworkManager[724]: nm_ip4_config_add_wins: assertion `wins > 0' failed
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> wins '0.0.0.0'
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> Activation (wwp0s29u1u1i7) Stage 5 of 5 (IPv4 Configure Commit) scheduled...
    Sep 15 09:46:19 localhost NetworkManager[724]: <info> Activation (wwp0s29u1u1i7) Stage 5 of 5 (IPv4 Commit) started...
    Sep 15 09:46:19 localhost avahi-daemon[607]: Joining mDNS multicast group on interface wwp0s29u1u1i7.IPv4 with address 10.102.67.12.
    Sep 15 09:46:19 localhost avahi-daemon[607]: New relevant interface wwp0s29u1u1i7.IPv4 for mDNS.
    Sep 15 09:46:19 localhost avahi-daemon[607]: Registering new address record for 10.102.67.12 on wwp0s29u1u1i7.IPv4.
    Sep 15 09:46:19 localhost dhclient[10376]: bound to 10.102.67.12 -- renewal in 97473 seconds.
    Sep 15 09:46:20 localhost NetworkManager[724]: <info> (wwp0s29u1u1i7): device state change: ip-config -> secondaries (reason 'none') [70 90 0]
    Sep 15 09:46:20 localhost NetworkManager[724]: <info> Activation (wwp0s29u1u1i7) Stage 5 of 5 (IPv4 Commit) complete.
    Sep 15 09:46:20 localhost NetworkManager[724]: <info> (wwp0s29u1u1i7): device state change: secondaries -> activated (reason 'none') [90 100 0]
    Sep 15 09:46:20 localhost NetworkManager[724]: <info> Policy set 'Telstra' (wwp0s29u1u1i7) as default for IPv4 routing and DNS.
    Sep 15 09:46:20 localhost NetworkManager[724]: <info> Activation (wwp0s29u1u1i7) successful, device activated.
    I'm going to ask on #fedora and see how i can best diagnose what's going on. At least I now have it working, albeit on an older kernel.
    Last edited by qnm (2013-09-14 23:48:05)

  • -111 Failed to Connect to SBOCommon

    I am getting an occational error when I am trying to connect to one of our test databases with the DI API.
    This is what the code looks like:
      oCompany = New SAPbobsCOM.Company
            oCompany.Server = "192.168.123.76"
            oCompany.CompanyDB = "Feb19_ForAuditors"
            oCompany.UseTrusted = True
            oCompany.UserName = "maanger"
            oCompany.Password = "manager"
            '** Disconnect from DB if connection present
            If (oCompany.Connected = True) Then
                oCompany.Disconnect()
            End If
            Try
                '** Attempt connection to DB
                lRetCode = oCompany.Connect
            Catch ex As Exception
                MessageBox.Show("Error upon connecting to " & oCompany.CompanyDB & Environment.NewLine & _
                            ex.Message, "SAPbobCOM Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
                Close()
            End Try
            If lRetCode <> 0 Then
                '** If there was a code other than 0 (connected) state why
                oCompany.GetLastError(lErrCode, sErrMsg)
                MessageBox.Show(sErrMsg)
            End If
    Now normally my SAP B1 setup for the application itself is set to Used Trusted.  I started off using .UseTrusted = True but it would never let me connect until it supplied .Username and .Password
    Now it seems it seems to fail more often now with both the username and password as well as being a trusted connection.
    I can use SAP fine, but when I try to run my little app it says Failed to Connect to SBOCommon
    Is there anything wrong in the above code? I would like to use the trusted connection because I don't want to have people type in their username/password each time they run this little middleware app nor do I want to store it on each machine.
    Could it possible be an issue if my program crashes and the connection to the SAP database was not closed properly and it has to wait to timeout??
    Just looking to figure this out

    Tyler,
    You state that you get the error "occasionally".  Does that mean that you do not get it all of the time?   If you do not get it all of the time, what is the difference/what has happened between the time that you do not see the error and the time that you do?  What version of Business One and patch level are you using?
    Here is a note from the SAP Notes database that may help, but it has to do with db ownership and also may not pertain to your issue ...
    https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/smb_searchnotes/display.htm?note_langu=E&note_numm=0000979081
    Eddy

  • Heartbeat failed to connect to standby ORA-12160: TNS:internal error: Bad e

    <msg time='2010-09-03T11:37:46.548+06:00' org_id='oracle' comp_id='rdbms'
    client_id='' type='UNKNOWN' level='16'
    host_id='DC-DB-01' host_addr='192.168.100.101' module=''
    pid='24310'>
    <txt>Error 12160 received logging on to the standby
    </txt>
    </msg>
    <msg time='2010-09-03T11:37:46.548+06:00' org_id='oracle' comp_id='rdbms'
    client_id='' type='UNKNOWN' level='16'
    host_id='DC-DB-01' host_addr='192.168.100.101' module=''
    pid='24310'>
    <txt>Errors in file /u01/app/oracle/diag/rdbms/bddipdc/bddipdc1/trace/bddipdc1_arcq_24310.trc:
    ORA-12160: TNS:internal error: Bad error number
    </txt>
    </msg>
    <msg time='2010-09-03T11:37:46.548+06:00' org_id='oracle' comp_id='rdbms'
    client_id='' type='UNKNOWN' level='16'
    host_id='DC-DB-01' host_addr='192.168.100.101' module=''
    pid='24310'>
    <txt>PING[ARCq]: Heartbeat failed to connect to standby &apos;bddipdrs&apos;. Error is 12160.
    </txt>
    </msg>
    From trace file,
    [oracle@DC-DB-01 ~]$ less /u01/app/oracle/diag/rdbms/bddipdc/bddipdc1/trace/bddipdc1_arcq_24310.trc
    Redo shipping client performing standby login
    OCIServerAttach failed -1
    .. Detailed OCI error val is 12160 and errmsg is 'ORA-12160: TNS:internal error:
    Bad error number
    OCIServerAttach failed -1
    .. Detailed OCI error val is 12160 and errmsg is 'ORA-12160: TNS:internal error:
    Bad error number
    OCIServerAttach failed -1
    .. Detailed OCI error val is 12160 and errmsg is 'ORA-12160: TNS:internal error:
    Bad error number
    *** 2010-09-03 11:37:46.548 4132 krsh.c
    Error 12160 received logging on to the standby
    *** 2010-09-03 11:37:46.548 869 krsu.c
    Error 12160 connecting to destination LOG_ARCHIVE_DEST_2 standby host 'bddipdrs'
    Error 12160 attaching to destination LOG_ARCHIVE_DEST_2 standby host 'bddipdrs'
    ORA-12160: TNS:internal error: Bad error number
    *** 2010-09-03 11:37:46.548 4132 krsh.c
    PING[ARCq]: Heartbeat failed to connect to standby 'bddipdrs'. Error is 12160.
    *** 2010-09-03 11:37:46.548 2747 krsi.c
    krsi_dst_fail: dest:2 err:12160 force:0 blast:1

    SQL> select
    2 substr(local.name,1,50) "Archive Name",
    case when remote.sequence# is null then 'NOT TRANSMITTED'
    3 4 else 'transmitted'
    5 end,
    6 local.sequence#,
    7 local.thread#
    8 from
    9 (select * from v$archived_log where dest_id = 1) local
    10 left join
    11 (select * from v$archived_log where dest_id = 2) remote
    12 on local.sequence# = remote.sequence# and
    13 local.thread# = remote.thread#
    14 order by local.sequence#;
    Archive Name CASEWHENREMOTE. SEQUENCE# THREAD#
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED         1       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED         2       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED         3       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED         4       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s transmitted             5       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED         6       2
    +RECOVERY/bddipdc/archivelog/2010_08_31/thread_1_s NOT TRANSMITTED         6       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED         7       2
    +RECOVERY/bddipdc/archivelog/2010_08_31/thread_1_s NOT TRANSMITTED         7       1
    +RECOVERY/bddipdc/archivelog/2010_08_31/thread_1_s NOT TRANSMITTED         8       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED         8       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED         9       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED         9       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        10       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        10       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s transmitted            11       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        11       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        12       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        12       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        13       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        13       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        14       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        14       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        15       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        15       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        16       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        16       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        17       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        17       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        18       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        18       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        19       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        19       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        20       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        20       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        21       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        21       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        22       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        22       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        23       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        23       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        24       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        24       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        25       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        25       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        26       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        26       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        27       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        27       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        28       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        28       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        29       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        29       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        30       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        30       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        31       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        31       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        32       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        32       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        33       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        33       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        34       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        34       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        35       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        35       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        36       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        36       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        37       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        37       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        38       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        38       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        39       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        39       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        40       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        40       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        41       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        41       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        42       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        42       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        43       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        43       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        44       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        44       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        45       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        45       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        46       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        46       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        47       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        47       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        48       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        48       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        49       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        49       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        50       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        50       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        51       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        51       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        52       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        52       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        53       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_2_s NOT TRANSMITTED        53       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        54       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        54       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        55       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        55       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        56       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        56       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        57       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        57       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        58       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        58       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        59       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        59       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        60       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        60       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        61       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        61       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        62       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        62       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        63       2
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        63       1
    +RECOVERY/bddipdc/archivelog/2010_09_01/thread_1_s NOT TRANSMITTED        64       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        64       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        65       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        65       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        66       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        66       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        67       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        67       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        68       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        68       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        69       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        69       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        70       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        70       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        71       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        71       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        72       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        72       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        73       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        73       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        74       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        74       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        75       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        75       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        76       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        76       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        77       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        77       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        78       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        78       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        79       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        79       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        80       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        80       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        81       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        81       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        82       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        82       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        83       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        83       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        84       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        84       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        85       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        85       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        86       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        86       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        87       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        87       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        88       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        88       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        89       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        89       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        90       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        90       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        91       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        91       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        92       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        92       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        93       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        93       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_2_s NOT TRANSMITTED        94       2
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        94       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        95       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        96       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        97       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        98       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED        99       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       100       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       101       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       102       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       103       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       104       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       105       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       106       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       107       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       108       1
    Archive Name CASEWHENREMOTE. SEQUENCE# THREAD#
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       109       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       110       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       111       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       112       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       113       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       114       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       115       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       116       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       117       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       118       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       119       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       120       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       121       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       122       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       123       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       124       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       125       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       126       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       127       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       128       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       129       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       130       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       131       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       132       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       133       1
    +RECOVERY/bddipdc/archivelog/2010_09_02/thread_1_s NOT TRANSMITTED       134       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       135       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       136       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       137       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       138       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       139       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       140       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       141       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       142       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       143       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       144       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       145       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       146       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       147       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       148       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       149       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       150       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       151       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       152       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       153       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       154       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       155       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       156       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       157       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       158       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       159       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       160       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       161       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       162       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       163       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       164       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       165       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       166       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       167       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       168       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       169       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       170       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       171       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       172       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       173       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       174       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       175       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       176       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       177       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       178       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       179       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       180       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       181       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       182       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       183       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       184       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       185       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       186       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       187       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       188       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       189       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       190       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       191       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       192       1
    +RECOVERY/bddipdc/archivelog/2010_09_03/thread_1_s NOT TRANSMITTED       193       1
    282 rows selected.

  • Facetime Calls Fail to connect-need Network update help

    Since we got a new desktop computer (PC) facetime calls come in but fail on connecting on all of our devices. Wifi access otherwise works fine. We have 2 iphone 4s-1 on IOS 6 and one on IOS 7 and two ipads-one on each IOS and the problem is universal so I know I don't need to update IOS as all help says you have to as a first step (it's the apple version of reboot). Anyway, all devices work fine on my office network so it's clearly our home network is somehow blocking facetime. Looking at the network settings on the ipad vs PC Network properties, the last digit of the IP address is different but it's not editable. I tried forgetting the network and going to settings>general>reset>reset network settings and nothing seems to have changed. Our router is cable company supplied and I don't know anything about setting up or changing network settings, there's nothing immediately obvious to change on that screen. Found some help stuff on AirPort utility but it's way above my head-I have no idea if it even applies to a PC...any help/ideas? I'm barely computer literate (obviously) so beyone poking around in the control panel, I'm stuck.

    Since all your devices have the same problem, the cause must be something in your router or at your ISP. Something is blocking the required traffic.
    Well known TCP and UDP ports used by Apple software products

  • Failed to connect Error - Need Help, Please

    I installed , created the simple "Hello" program and it ran fine on the simulator.
    Then, I click the run OTA and now I'm in deep yogurt!
    I get the message:
    *** Error ***
    Failed to connect to device 0!
    Reason:
    Emulator 0 terminated while waiting for it to register!
    BUILD SUCCESSFUL (total time: 4 seconds)
    I just want to restore things to what they were before I selected Run OTA. I've been reading for the past 3 hours and haven't found out to restore. I even deleted and re-installed but, still get the same meassge (probably some saved java pref file...). Anyway, HOW TO RESTORE to a virgin setup????
    Thanks

    ... I read somewhere I need to reboot - I did and it took care of it.

  • Remote app on ipod fails to connect to itunes 10

    After upgrading to iTunes 10, my remote app on the ipod touch 4G fails to connect. I've reauthorized, which times out most times, but eventually when it works, it only continues to connect to iTunes until I close and restart the program. I've disabled all firewalls and still have the issue. iTunes 10/iPod Touch 4G/iOS 4.1/ancient remote.app do not play well together.
    Anyone else unable to get the remote app working reliably with this combination?

    Hello all,
    I would like to get more details from people who are still having trouble getting Remote 2.0.1 to connect. If you are unable to connect, please email me <[email protected]> with the following information:
    - A detailed description of the specific issue you are seeing.
    - What OS is on the host computer? (the one with iTunes on it)
    - What OS is on the affected iOS device(s)?
    - A description of your network topology. Please be as detailed as you can, including hardware and firmware versions, if possible. Also please explain how everything is connected.
    - Is the base station running default settings, or do you have any non-standard settings enabled? If so, please elaborate.
    - Do you have the built-in firewall enabled on the host computer?
    - Do you have any other firewall or Internet protection (anti-virus, etc) installed on the host computer?
    - Were you able to connect with versions of Remote prior to 2.0?
    - If you have multiple computers, can you get Remote to connect to any of them?
    - Does Home Sharing work between computers on your network?
    - Do you see any messages in Console (in Applications/Utilities) on the host computer that seem to coincide with the connection failures?
    Thanks,
    Roy
    <[email protected]>

  • My iphone 5 won't make a call when i fail to connect to the internet via 3g

    My iphone 5 won't call when i fail to connect to the internet via 3g.
    At work i dont have wifi i have 3g, if i launch say the sky go app,or the iplayer, sometimes they work and everything is fine...sometimes they wont load as 3g for whatever reason cant get a connection at that particular time........ if i then try and make a call the call will fail. I've experimented 25 + times and this is definately the cause.
    (note: when the 3g connection does work, the phone has absolutely no problem calling people)
    Anyone had this problem?
    Even better has anyone got a solution?
    Thanks,
    Nick.

    Are you sure that the carrier's signal is strong where you are having this problem? Certain building structures and locations have poor cellular signal strength and this often results in the "No Service" indication. Are other users able to get service in the same locations where you have problems?

  • On Windows 2012 Terminal Server Outlook fails to connect to Exchange 2013

    I have a new install of Windows 2012.  I have two physical servers.  One is a W2012 std Domain Controller ("DC").  The Second is configured as W2012 HyperV  ("HV").  Under HV I have
    two VMs.  One VM is W2012/Exchange 2013 ("ExchVM) and the other is W2012/Terminal Server ("VMTS").  All systems are behind a firewall appliance.  Exchange is working via Outlook and OWA internally and externally.  The self
    created SSL must be installed manually on external machines since it comes up as an untrusted certificate.  Once installed remote outlook works and OWA works.  I have configured the terminal server and I am able
    to login remotely as various users under my "TS group".  The problem is when ever I attempt to open Outlook for the 1st time, it fails to connect to the exchange server.   (Open Outlook 2013, click next
    on the splash screen, "Yes" Add an Email Account splash screen, click next, Auto Account screen populates NAME and Email Address correctly, click next, Searching for mail server settings..., check on establishing network connection, check on searching
    for alias@ domain, then fails the logging on to the mail server)  The error reads:  "Outlook cannot log on.  Verify you are connected to the network and are using the proper server and mailbox name.  The
    connection to Microsoft Exchange is unavailable.  Outlook must be online or connected to complete this action."   I am connected in RDS from offsite, and from the RD session I can access shared folders on ExchVM and DC.  I have
    tried have verified the server Exchange server name is correct via "Get=ClientAccessServer" command.  I have also tried to use the guid via "Get-Mailbox
    ALIAS | fl name, exchangeguid.  Keep in mind all desktop users on the network are connecting to Outlook without issue.
    I would appreciate any thoughts on solving this issue.

    Hi,
    According to your workaround, it seems that the Outlook Anywhere configuration in Outlook client is not correct when using the Autodiscover service.
    Once you connected to Exchange server by manually settings, please run Test E-mail AutoConfiguration tool in external Outlook client to check the autodiscover service:
    open Outlook - press CTRL key - right click on the Outlook icon from right bottom corner taskbar - Test Email AutoConfiguration. Put your email address - uncheck use guessmart and secure guessmart authentication - click Test to check your Autodiscover service.
    Please check the Log tab and confirm whether the Autodiscover service is connected successfully. Also confirm if the connection issue happens to all external users when they open Outlook for the 1st time. In Exchange server, please make sure
    autodiscover.domain.com has been included in your Exchange certificate which is assigned with IIS service.
    Regards,
    Winnie Liang
    TechNet Community Support

Maybe you are looking for

  • Envelopes do not feed correctly on my HP5610 All in One printer and return addresses get chopped off

    I'm running a Windows 8 64 bit laptop and the feeder seems to grab the paper properly but it cuts off part of the return address all the time. I can push it in maybe and inch or so when the feeder starts to grab the paper and this will correct it, bu

  • Re: Broadband speed issues

    So - You think that you have a problem. Compared to the atrocious broadband service which I receive from BT, Your connection is Fast.   Since having my phone line installed 15 months ago, I have spent Hundreds of hours on the phone ( when it works )

  • Bind Operator to Function with optional parameter

    Hi, as mentioned in the subject, I would like to create an operator which is bind to an function with an optional parameter: CREATE OR REPLACE FUNCTION           TS_Base_Func(iobject IN CIBase, format IN VARCHAR2 DEFAULT NULL) RETURN VARCHAR2 IS BEGI

  • Adobe inserts spaces instead of letters during editing

    When I try editing a PDF I created in Adobe, it inserts spaces in place of certain letters.  Any guidance to overcome this? 

  • Reg: Sampling procedure .

    Dear friends, Currently we are implementing QM for process industry. I need your valuable inputs on Sampling procedure. what exactly meant by sampling procedure. How to configure for sampling procedure. Thanks in Advance.