Does Web Tools Work With SBO 8.8?

I'm on Web Tools v652, looking to upgrade to v654. Currently we are on SBO 2007 PL49, but we will need to upgrade to resolve the Contact Synch issue (see related thread Attempted to read or write protected memory on SP01., particularly message Re: Attempted to read or write protected memory on SP01.), so we're going to have to get off of this version. We were considering jumping instead from SP01 PL6 as stated in the message all the way to the latest version, which is 8.8 (I guess there's a new naming convension).
My question is, how does Web Tools interact with 8.8? Is there anything I should be aware of regarding conflicts that were not there previously? Also, should Web Tools go all the way to v654 as soon as possible too, or can we leave it at v652 without any compatibility issues?

It's currently NOT compatible with SBO 8.8 or SQL 2008

Similar Messages

  • Does web ADI work with Office 2010

    We recently move from Office 2003 to 2010 and we have webADI, However we are receiving an error runtime error 1004 Method 'VBProject' of Object_workbook failed.

    902619 wrote:
    We recently move from Office 2003 to 2010 and we have webADI, However we are receiving an error runtime error 1004 Method 'VBProject' of Object_workbook failed.Please see these docs.
    Installing, Configuring and Troubleshooting Web ADI (Web Applications Desktop Integrator) [ID 417692.1]
    Visual Basic Error 1004 in Create Document Using Excel-2003 Viewer with Asset Additions Integrator [ID 317145.1]
    Attempting To Create Batch using BEE Spreadsheet Interface, Errors: Run-time error '1004': Method 'VBProject' of object '_Workbook' failed [ID 337695.1]
    Run-time Error '1004' When Attempting To Use Spreadsheet Expenditure Entry [ID 309728.1]
    Run-time error '1004' Opening WebADI Spreadsheet to Import Dimension Members [ID 376013.1]
    Webadi Error: Method 'Vbproject' Of Object'_workbook' [ID 406526.1]
    FAQ: Certification Information For Client ADI And Webadi [ID 1251224.1]
    What are the Web ADI Requirements to work with Excel 2010? [ID 1272346.1]
    Unable To Create Webadi Templates In Office 2010 [ID 1238663.1]
    Thanks,
    Hussein

  • Does Magic Mouse work with ipad air?

    Does Magic Mouse work with IPad Air?

    Yes, it is a Bluetooth device. However, my iPad will not connect to the mouse.  Not sure why.
    I use my iPad as my personal computer. Mainly for surfing the web, social media, paying bills online... I already have a Bluetooth keyboard that connects to the iPad, so thought it would be nice to have a mouse.

  • Does creative cloud work with windows 8

    does creative clould work with windows 8?. I see windows 7 as a minimum requirement with no mention of windows 8

    lewis0,
    Welcome to Adobe Community .
    Minimum requirements means that you have to have these as the minimum configuration to install the Adobe Products . You can surely go ahead and install the product on a windows 8 PC and it should work fine.
    Regards,
    Kartikay Sharma

  • WLS :: Will Vista web client work with Weblogic Server 8.1.6 over SSL?

    Hello,
    I have installed 51-2 bit SSL cert on weblogic 7 and found that the secure site doesn't work on Vista web client.
    Weblogic gives error in handshaking and says algorithm is not supported.
    Vista web client uses some algorithms which were not supported by weblogic 7.
    So would like to know if would Vista web client work with Weblogic Server 8.1.6 over SSL?
    Any information in this regard would be helpful.
    Thanks in Advance.

    can you use the following debug flags in the weblogic server as java_options and paste the complete ssl handshake exception here.
    -Dweblogic.StdoutDebugEnabled=true
    -Dssl.debug=true
    thanks,
    sandeep

  • Does apple tv work with hdmi to VGA hd15 cable?

    I have a Phillips tv and there is no hdmi to hdmi connection. But there is a VGA 15 input. Does apple tv work with it? I seem to be getting a black screen.

    I tried hard. Four different manufacturers, including Belkin, none of HDMI to VGA works with rMBP. However, all of them work with other sources, like Dell notebook.
    HDMI directly from rMBP to HDMI intput works fine.

  • Does apple tv work with ee router

    does apple tv work with my ee smartbox router

    Doubtful.
    What allows for streaming content from an iPad to a television thru an Apple TV is Apple software included with iOS on the iPad and the Apple TV software. Unless there is a 3rd party android app that provides for this, no.

  • Does Apple TV work with ipads?

    Does Apple TV work with ipads?

    http://www.apple.com/airplay/
    http://support.apple.com/kb/HT5209
     Cheers, Tom

  • Does apple tv work with both N wireless bands

    Does apple tv work with both wireless "N" bands

    Yes, I have both the 1G and 2G ATVs working off a 5 GHz n only network. Since the 2.4 GHz band can be set up to be backwards compatible with b/g networks it will work here too.
    I use an Apple Time Capsule to create a dual band network. Running my ATVs and Airport Expresses on the 5 GHz band improved streaming and AirPlay speaker reliability substantially in my location. I suspected interference from my neighbor's networks as well as other 2.4 GHz sources. I had to create the 2.4 GHz network for my 1G touch and an older laptop to work which don't need as reliable of a network connection.

  • Does apple tv work with Hannspree tv's?

    does apple tv work with Hannspree tv's?

    Welcome to the Apple Community.
    Never heard of them, but the Apple TV requires a TV with an HDMI connection that supports 720p input and is widescreen.

  • Does apple tv work with android tablets

    Does apple tv work with android tablets.

    Doubtful.
    What allows for streaming content from an iPad to a television thru an Apple TV is Apple software included with iOS on the iPad and the Apple TV software. Unless there is a 3rd party android app that provides for this, no.

  • Does apple tv work with fios

    does apple tv work with fios?

    Doubtful.
    What allows for streaming content from an iPad to a television thru an Apple TV is Apple software included with iOS on the iPad and the Apple TV software. Unless there is a 3rd party android app that provides for this, no.

  • Does INNER JOIN work with Oracle 8i ? (ORA-00933)

    hi,
    I try to execute the sql:
    SELECT
    A0.FULL_NAME,A0.MANAGER_ID,A0.DEPT_NO,A0.TOP_DEPT
    FROM
    HR_ORG A0
    INNER JOIN
    HR_EMP A1
    ON
    A0.MANAGER_ID=A1.EMP_NO
    WHERE
    A1.NAME = 'michael'
    but I caught an exception:
    java.sql.SQLException: ORA-00933: SQL...(message in
    chinese)
    Does INNER JOIN work with Oracle 8i ?
    thanks.

    INNER JOIN syntax is introduced in 9i, it does not exists in 8i. You can rewrite your statement:
    SELECT
    A0.FULL_NAME,A0.MANAGER_ID,A0.DEPT_NO,A0.TOP_DEPT
    FROM
    HR_ORG A0
    , HR_EMP A1
    WHERE
    A0.MANAGER_ID=A1.EMP_NO
    AND
    A1.NAME = 'michael'

  • Does Dreamweaver CS3 work with 64 bit version of Windows 7?

    Windows 7, 64 bit, Home Premium was clean installed.  I had no difficulty reinstalling Dreamweaver CS3, but when I try to open a file I get a message that  says." A problem has caused the program to stop working correctly.  Windows will close the program and notify you if a solution is available."  Apparently none is.  So my question is, does Dreamweaver CS3 work with the 64 bit version of Windows 7?  If not, does CS4 work or would I be wasting money by upgrading?

    I just installed it and ran it fine.  I have Windows 7 Ultimate 64 bit
    Make sure it is a clean install from a fresh "boot".  I ran into problems the first time when I tried to install it right after I installed another program.  I simply uninstalled it.....which took a long long time, but after it was removed and I rebooted, everything went fine.
    Rick

  • Does Elements 10 work with mac os 10.8 thanks

    Does Elements 10 work with mac os 10.8 thanks

    Yes it works fine.  Are you running into any particular difficulties.

Maybe you are looking for

  • HTTPS and a Proxy server?

    Does the plugin-in still not work with HTTPS and a proxy server? From plug-in docs - "Java Plug-in supports http, ftp, gopher and SOCKS v4 protocols through the proxy server. Currently, Java Plug-in does not support https (SSL). "

  • Pivot the table

    Hi, Need help in pivot the table. Table data NAME LINE_TYPE_REF_ID Class CreateShipmentServiceAdapterImpl Method getContactsAndSitesForAccount User skkond Node Name PB15CKY Num Contacts 3 Class CreateShipmentServiceAdapterImpl Method getContactsAndSi

  • Building coherence rpm fails because of Unix flat file permission.

    Hi - New to coherence but have large implementation ahead. Trying to rpm it. Refer bug - https://bugzilla.redhat.com/show_bug.cgi?id=250295. lot of files in coherence.jar have flat unix file permission which makes building rpm fail. Solution is to un

  • HT4759 apple tv photo stream

    please help with iphone, tried to download os 6 and froze up iphone while trying to fix photo stream on apple tv. iphone showing usb plug qnd itunes symble. 

  • Cost Center based Release Strategy for PR's

    System :4.6c At this time, we have PR release strategy with classification configured for over all release. Created a new characteristic for cost center , assigned the values for the cost center characteristic, with zeros at the beiginnig. Now when I