BI 4.1 SP03 Patch 01 incompatibility issue with DS 4.2 SP01

Hello,
this message it's only to advise that the error "Unable to locate BOE platform components. Install or reinstall BOE platform and retry" when you try to open "Data Services Designer" with the following software can be solved uninstalling Patch 01 of BI 4.1 SP03
Windows 7 SP01
SAP BO BI Platform v4.1 SP03 Patch 01 (client components)
SAP BO Data Services v4.2 SP01 Patch 04 (client components)
Hope this helps
Regards

Hello Ilias,
yes, we opened it and they told me this:
Hello Rubén,
Thanks for the confirmation that without the patch the installation
works - this is as we expected it.  Your observations on the
combinations you were trying have been noted.
Once the patch level hass been approved (post-QA etc) then the KNBA
will be adjusted appropriately to reflect any issues and/or bugs that
might be discovered in QA and fixes applied.
Regards
Rubén

Similar Messages

  • Version incompatibility issue with Interop.SAPbobsCOM.dll in SBO 2004

    Hi,
    I have encountered an incompatibility issue in DI API 2004 across different patch level-versions. Originally, I developed an application in SBO 2004 pl4 environment. Now, some of the customers who were installing the application, notified me that the application has a login problem. It turned out that the CompanyClass.connect() method returns an error message "object reference not set to an instance of an object", when the DI API version installed in the production environment is higher (in this case, pl7) than the DI API version which was used in the development environment.
    I figured out that the problem can be fixed by replacing the Interop.SAPbobsCOM.dll file in the application directory by a newer version that reflects the DI API that is installed in the system. However, it seems a rather lousy workaround, if the customer needs to manually replace the dll. Maybe the installer could be customized to "sniff" the correct DI API level, but this too would be a pretty kludgy solution.
    Does anyone know a better solution to this problem ?
    Regards,
    Henry

    normally this is not a problem as long as they don't change the signatures on the DI-API (which they said they wouldn't) but it appears in P5 they changed that signature... we noticed some enums that got added and a few minor changes.

  • ACS SE 4.1.1.23 patch 5 issue with users

    HI There, I am facing very weired issue with ACS SE 4.1.1.23 patch 5. I am trying to add users in ACS it is added successfully but I can not see these users when I click list all users.
    But I can see users are increasing in groups when I add users..but when I do list all users it say there are no users defined. and I tried to login with newly created users from devices  ....I am able to login with those new users.....
    also when I go to that particular group in which I added new users....and say list users in group...I get message from ACS saying that "can not read users from group" ....
    what could be issue any one has any idea....customer complained that he was unable to login to devices...with the users created on ACS...when I saw there was no users in database....then I added 2-3 users by looking at old passed and failed authentication... but I dont know how users got deleted automatically...even I tried to see appliance audit logs...could not see any thing which indicates someone deleted users...
    please help me to solve this issue..
    Thanks

    Issue resolved. The CRL that was being parsed from the cert was one level higher than the CRL that needed to be checked. The User CRL was ppointing to the Intermediate CA's CRL. I had to manually change the URL from this:
    http://DOMAINvmsp.DOMAIN.xxxx-xx.edu/pkipub/DOMAIN%20Intermediate%20CA%201.crl
    to this:
    http://DOMAINvmsp.DOMAIN.xxxx-xx.edu/pkipub/DOMAIN%20User%20CA%201.crl
    Mark

  • Incompatibility issues with the new flash pplayer

    Ever since I installed the new version of flash 11.5 I have had major issues with watching video etc. I am also into astronomy. Myself and many others have paid a lot of money to use Sloohs robotic telescopes in their canary islands observatory.
    I now cannot enjoy this because the flash player has compatibility issues with your browser. Me and quite a lot of others are getting rather annyoed this opportunity is being ruined because adobe have released a version of flash without checking it's compatibility with all browsers first.
    May I suggest that you contact them and ask that you are notified about new versions and release dates to ensure that you can make necessary amendments to prevent incompatibility issues.
    That way lots of angry people like me will not be complaning.

    At work, symantec endpoint. At home, norton. Ever since firefox 15, no flash version works except for 11.2. Now that ff18 was pushed out, it "forces" the upgrade to 11.5, and absolutely will not accept anything less. But as with any version of flash that was not 11.2, it just causes firefox to freeze up completely.

  • Flex incompatibility issue with SDK 3.5.0.12683 and IE6

    Anyone have experience with issues for IE6 and Flex SDK 3.5.0.12683?
    As a secondary issue, does anyone know of a way to force a browser cache refresh?
    thanks
    Simon

    Add a random number as a parameter to the url.
    Something like:
    url = url + "?t=" + new Date().time;

  • SBO B1 2005 SP 01 Patch 11 - Issues with recordsets.

    Hi,
    We are using ‘recordset’ for Query all over our application. I have performance problems when I upgraded to SP01 Patch 11. Recordset retrieves the data fast but takes very very long time when I do movenext() or eof() or movefirst().
    Here is a sample code:
    Dim rs As SAPbobsCOM.Recordset = Query (sqlStmt)
                ' If no record is fetched, returns false which indicates the finding failed
                rs.MoveFirst()
                If rs.EoF() Then Return False
                ' Caches the object columns
                CacheColumns(rs)
                ' Releases the referenced object
                rs = Nothing
    The whole process takes long time. So I debugged the code. The delay is at MoveFirst() and eof() stage. If I comment these 2 steps, it is faster. But I have to use the recordset functions. 
    IT WAS VERY QUICK IN SBO 2005 before upgrading the sp01 patch 11. Am I missing something? Is something changed in SP01? I am using Recordset to query on user tables only.
    Please somebody help me out.
    Regards,
    Prakash

    Does this bug also affect the GetByKey method? Because I am developing an addon, and all of a sudden it starts to hang. I did upgrade to PL11 during the development. I have been going insane trying to figure out what made my program stop working, and I even back-tracked numerous revisions. In the end, it is the following code that made the difference:
    oDocs = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oOrders)
                            strSQL = "Select DocEntry from ORDR where DocNum = '" + strDocNum + "'"
    oRecs = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                        oRecs.DoQuery(strSQL)
                        strDocEntry = oRecs.Fields.Item("DocEntry").Value
                        If oDocs.GetByKey(strDocEntry) Then
    oDocs.UserFields.Fields.Item("U_MyField").Value = strValue
    end if
    If I comment out the last if statement with GetByKey, it seems to be fine. If I leave it in, it hangs when I click the "Update" button on the Sales Order form. The database I'm working on has thousands of order records. Could it be caused by the bug since it's a large volume of records to go through? We also use record sets all over the place. It also doesn't make sense to me that in other areas it seems to work ok.

  • How do I fix incompatability issues with i tunes

    When I download the latest version of i tunes on my computer, everything slows way down. It can take several minutes to open a program if it opens at all. When I try and fix it with the recomended settings it doesnt help and I get a message that i tunes is an incompatable app. How can I make i tunes work on my computer? I have windows 7, 64bit, on a 1 year old toshiba laptop.

    When I download the latest version of i tunes on my computer, everything slows way down. It can take several minutes to open a program if it opens at all. When I try and fix it with the recomended settings it doesnt help and I get a message that i tunes is an incompatable app. How can I make i tunes work on my computer? I have windows 7, 64bit, on a 1 year old toshiba laptop.

  • Incompatibility issue with imported images losing keywords and other metada

    I am reposting this with a more descriptive title in hopes that the powers that be will look into this. This really nice piece of software is currently doubling the time in my workflow by having to re-input keywords, etc. after importing.
    Wayne_N
    Posts: 5
    From: Texas
    Registered: Sep 24, 2006
    Re: import keywords and ratings into Aperture from adobe apps?
    Posted: Nov 18, 2006 2:40 PM in response to: Egg
    Click to reply to this topic Reply email Email
    I am getting the opposite result. I have lost a lot of my keywords and various other data input in Bridge. Is there a setting I'm missing? I also put in Country name, city, state, contact, etc. in my Brdige metadata, but this is not importing with the RAW files. I am referencing images if that matters, although it shouldn't.
    Macbook Pro and Mac Pro Mac OS X (10.4.7)
    pvonk
    Posts: 19
    Registered: Mar 2, 2005
    New! Re: import keywords and ratings into Aperture from adobe apps?
    Posted: Nov 18, 2006 3:25 PM in response to: Egg
    Click to reply to this topic Reply email Email
    I also used Bridge/ACR to rate and add keywords to RAWS (Canon) and also used Adobe DNG converter to make DNG files from these.
    No ratings or keywords have imported for any RAWs and DNGs. And, for some DNG files (which I can see in Bridge and iViewMedia), they cannot be displayed in Aperture. It's very strange since I've used the same workflow to create the DNG files over the past year. Some can be imported/viewed, some cannot be viewed. All originally from the same camera/RAW file. I've read in this forum that Aperture cannot read things like keywords from sidecar files.
    I am hopeful that Apple will make DNG sidecar file import a big priority.
    - Pierre
    MacBook Pro, 2.16 GHz, 2 GB SDRAM Mac OS X (10.4.8)
    Macbook Pro and Mac Pro Mac OS X (10.4.7)
    Macbook Pro and Mac Pro Mac OS X (10.4.7)
    Macbook Pro and Mac Pro   Mac OS X (10.4.7)  
    Macbook Pro and Mac Pro   Mac OS X (10.4.7)  
    Macbook Pro and Mac Pro   Mac OS X (10.4.7)  
    Macbook Pro and Mac Pro   Mac OS X (10.4.7)  
    Macbook Pro and Mac Pro   Mac OS X (10.4.7)  
    Macbook Pro and Mac Pro   Mac OS X (10.4.7)  

    I have been testing Lightroom since beta 2, but after reading The DAM Book, I decided to hold off committing to LR since it was not clear that it would fit into the workflow recommended in the book.
    I had processed some of my recent photos, adding ratings and keywords (and doing some editing - but I knew that was not necessarily permanent due to LR's incompatibility with PS/Bridge when it came to metadata).
    I had briefly looked at Aperture a while back, but was turned off by the price (then $500) and the fact that it couldn't reference the original files. When the 1.5 demo came out with its improvements, I tried it and loved it! After much thought about the workflow I had developed, I decided that I could alter it so that Aperture would fit in - in fact it would be my main app (giving up Bridge/ACR/iViewMedia Pro).
    As per The DAM Book, I had begun converting my Canon RAWs to DNG (fortunately kept most of my RAWs). The first thing I discovered in the demo (I have since purchased the app, 1.5.1) was the fact that none of my ratings and keywords came through. Also, I used the color labels in Bridge to help during the evaluation phase, those didn't come through either, but I expected that. As I also noted in the previous post, some of my DNGs can't be viewed in Aperture even though they can be viewed in Bridge and iViewMedia.
    Fortunately, I had not "processed" all that many photos in my collection, so I can easily start again with the ratings and keywords. BUT there will be many photographers who have, and if Aperture hopes to tempt them away from LR or the other workflows, the Apple team should seriously consider providing support for Adobe's keywords/ratings found in sidecars and perhaps in DNGs. Also, good support of DNGs might be another thing to look at, as many users have been converting from RAW as I have.
    Just my three cents (inflation).
    - Pierre

  • IWeb incompatibility issues with firefox chrome and ie 7 for windows

    I have a Blog using MobileMe and iweb 09 when using windows machine all my comments are not available, I also cant access entries, the redirect fails putting up the apple issue page. Yet using a mac there are no problems.
    No visibilities of entries and not able to place comments.
    RapidWeaver is looking better all the time.

    Hi I just use
    http://wordpress.com/
    its a free account and just link to it with an Iweb page,
    word press works on all browsers.
    Iweb pages have lots of issues on other browsers, stay away from iweb photo slide shows, and reflections on your iweb pages. if the people you are trying to show your site to, have firefox and e7 or e8, it gets kind of weird.
    hope it helps
    angus cooney

  • Geforce3 Incompatibility Issue with Newer Drivers

    Well... now that I know that my GF3 Ti-200 won't work properly with drivers above 44.xx, does anyone know for sure if MSI is aware of this issue? Or is it all just hearsay? Are they doing anything about it? Is there a software fix or BIOS update in the works?
    If MSI deviated from the reference design, they should be responsible enough to fix it.

    Thaks for your message.  I am having similar problem. I have the VGA card just slightly over 18 months and some of my DVDs stopeed playing. I have tried updates of drivers and BIOS, couple removals of MSI WinDVD and new installations.
    NOTHING WORKS. I HAVE EVEN SEND THEM AN E-MAIL. They do not seem to give a damn.
    I guess that was last time I bought anything from MSI.
    George

  • Has the recent Itunes upgrade caused incompatibility issue with APPLE TV 1st gen?

    after recent upgrade to itunes, itunes no longer recognizes data on my apple tv 1st gen....but the Apple TV still has them loaded.  additonally this new itunes does not let me resync new songs or movies, etc.  thoughts? thanks!

    I'm having the exact same issue. Nothing in the "Music" menu except "My Music". I Noticed it this afternoon when I woke my Apple TV from standby. The disappearance, in my case, was not related to a reset. My Apple TV has not been reset since the power went out here several weeks ago. Though I obviously don't know for sure, I'm guessing that it's some kind of store problem and we most likely won't be able to correct it from our end.

  • Incompatibility Issues with connecting USB Hard Drive to Airport Extreme

    Over the last few days i have been fiddling around with my new Airport Extreme Base Station N router. I can connect a printer and use the internet through it seamlessly. I can even share two of my hard drives through a USB hub, however, my Maxtor 500 gb One Touch 4 HDD will not connect with my macbook through AEBS. It is only this drive that is not working with AEBS and it is the one i need to be connected and sharing. If i plug my 500gb Maxtor directly into my macbook it works fine, i can read all the files. This drive is formated as Mac OS Extended (journaled).
    I am about to give up on this because i have tried everything:
    1. Reformatted HDD
    2. Downgraded Firmware
    3. Searched Forums for advice
    4. Reconfigured AEBS in, i think, every way possible
    So, these are most of the things ive tried and so far there is no solution in sight. I have one hypothesis: my particular HDD (Maxtor 500gb One Touch 4) is incompatible with AEBS at this time, but it is possible that a future firmware update could fix this.
    Does anyone have any advice? I'm lost and disappointed. Please help, thanks.
    Message was edited by: benjaminwooda

    Chances are pretty good that the power draw of your external drive is just at the "tipping point" for what the USB port on the Extreme can deliver. Powered USB hubs are inexpensive and should help in this situation.

  • Bing Toolbar patch? - Issue with Bing appearing in my test environment.

    Hi Everyone,
    I just recently had bing toolbar show up in my test environment after introducing patching. I don't think any of my applications introduced it..  Can anyone direct me to a specific KB that this might be introduced so I can exclude it? 
    Also, if there are any other annoying Windows 8.1 patches I should avoid, I'd appreciate it.  Thank you.
    Ryan

    Hi,
    Add this to your customsettings.ini file
    WUMU_ExcludeKB001=2505591
    Check this
    post to learn how to exclude some updates
    / Yannick Plavonil
    blog: Deploiement Windows
    twitter: @yplavonil
    facebook:
    www.facebook.com/deploiementwindows

  • Incompatibility issue with HP printer driver?

    Hello, all.  I am running Windows XP SP3 and IE 8 on two computers.  My printer is HP Photosmart C4380 All-in-one on a wireless network.  I have had a bad week of constant un- and re-installations of HP printer drivers and Adobe Flashplayer, and am wondering if anyone can help me resolve the problem.
    The problem started with the installation of Flashplayer 10. I upgraded one of two networked computers with no problem, several days later upgraded the other and suddenly my printer stopped working.  Lots of re-installations of the HP software later, I got the printer working again, but then the Adobe software had disappeared on one computer, and on the other it only works on the administrator account, but not on the others.  I followed the Adobe support article for resolving a conflict with IE8 and got the Flashplayer reinstalled on the one computer.  Now Flashplayer is working again, but I am getting error messages from the printer - usually "printer offline", sometimes "printer disconnected".  Sometimes I get printer offline and printer connected (not dis-) simultaneously. When shutting down, I also now get two error messages: Device IO Notification Window and program not responding  hpqste08.exe
    I haven't tried to address the administrator/guest account problem on the other computer yet. On both computers I am now being invited to update my Adobe Reader, but I'm afraid to start down another path.
    Can anyone recommend a solution?  I hasten to mention that the HP product has been problematic from the start, but this is the first time it has apparently conflicted with another specific, and rather important, application.  I have, of course, contacted them, but no joy as yet.
    Thanks for any advice

    I would try this link. http://forums.adobe.com/thread/430948?tstart=0   I too have IE8 as well as Firefox 3.5 Beta 4. I also have an HP printer. I would recommend you follow my steps, then after restart, reinstall your hp drivers. This hopefully should fix your problems. (Recommend you do the flash update for both computers using an administrator account.) If it works, then you should be able to update your reader, without complications. (I recommend you install Foxit Reader if you can, and uninstall Adobe reader. Does the same things just uses a lot less resources and a lot less buggy.)

  • Incompatibility issues with Dual Layer DVD+R  help?

    I think I've made a serious mistake in believing I could author a Dual layer dvd for replication and sale on my own. I've spent over 14 months on this film, which is working perfectly in Encore, complete with extensive menus and transitional movies.
    I've done my best to transcode the media in the most compatible way (keeping bitrate below 7mbps and using dolby digital audio format) BUT I'm still having bad luck with MOST dvd players.
    The DVD plays properly on my cheap sony player, but both my toshiba and humax/tivo players failed to read the disc. (multiple tries/burns....or coasters, now) I've read that there are common problems with dual layer +R.
    MY QUESTION IS: what is the BEST POSSIBLE WAY to author/burn this project for mass replication? Can I really achieve the result I'm looking for with Encore or will I have to give up and go to a professional authoring house with DLT capability?
    Will I get the best result by burning from encore straight to disc OR burning an image or folder, then using a third party burning program?
    Thanks SO MUCH for any responses. This process has been soul-crushing.

    >The DVD plays properly on my cheap sony player, but both my toshiba and humax/tivo players failed to read the disc. (multiple tries/burns....or coasters, now) I've read that there are common problems with dual layer +R.
    Marc, the only mistake I think you are making is in assuming that set top players can handle a written DVD+R DL disc.
    Support in older players is at best sketchy.
    If the disc is working properly in at least one player, then you should be good to go.
    Replication will produce a different type of disc. One that
    i will
    play properly.
    Not all burners support book typing, and unless you know what you're doing here do not use these "fudges". It's best using Plextor, and even Benq burners. The freeware utility IMGBurn has this ability, and it also tells you what burners do this. I've never needed it personally, as my Pioneer burners & Denon players have no trouble with +R DL media.
    What you really need is a player that you
    i know
    plays DVD+R DL discs properly. Once you know your player is good with the format, then all other inconsistencies are player related, not authoring, and not your problem. There is simply no way at all you can guarantee any form of compliance with +R DL media, as there is nothing in the specs that says any set top player has to read these discs. Or -R DL where support is generally even worse.
    Whilst most players will read -R single layer & +R single layer, again there is no mandatory requirement to do so.
    You will need to get these
    i replicated
    and not duplicated. Duplication (burning) will result in a lot of returns, and a lot of wasted money.

Maybe you are looking for

  • How can I hide file names in a photostream?

    How can I hide file names in a shared photo stream on icloud.  I don't want people to see how many pictures I take at an event.  Can this be done to pictures already posted?

  • There was a problem connecting to the server "my_server"

    At one time, a long time ago, I had a mount for "my_server/Our_Pictures" set up.  Now, whenever I try to do something like, say, change the background image on my desktop, I'm presented with a message saying "There was a problem connecting to the ser

  • "Welcome to Itunes" each time I open itunes

    Hi all, Only recently, each time i open up itunes, I get a screen "Welcome to Itunes" and it wan't to take me through steps to set up my library and import songs etc. I don't want to do anything that might possibly cancel my music library, so I say "

  • What is the point of Location Services?

    I have an iPod Touch and some Apps keep asking me to switch this on. What is the point and will it drain my battery? Thanks

  • IT105 warning message "user does not exist in this period"

    Does anyone know if we can change the warning message on IT105 subtype 0001 to be an error message?  This is causing an issue when HR are entering the User ID before it's been created in SU01, so sometimes there is a mismatch. Hope you can help, than