(fileSystem::extract Blob From Local Path) after installing B.O. XI 3.1

Hello,
I've installed B.O. XI 3.1 client tool on a laptop, but when I try to run Designer, or Deski the following error occurs (REPOSITORY ERROR (fileSystem::extract Blob From Local Path) file not found) and the application quits.
Anyone has an idea?

Hi
What operating system are you using on your laptop?
I have a colleague having a similar problem using Windows Vista, whereas I am fine (using XP).
Did you manage to resolve this issue? (And if so, how)
regards, Lara

Similar Messages

  • Creating a Mavericks USB boot drive after the horse has bolted.  Can I create a bootable USB drive from my iMac after installing Mavericks without saving the Install OS X Mavericks.app file?  Do I need to re- download the whole 5.29 Gb again?

    Creating a Mavericks USB boot drive after the horse has bolted.  Can I create a bootable USB drive from my iMac after installing Mavericks without saving the Install OS X Mavericks.app file?  Do I need to re- download the whole 5.29 Gb from the App Store again?  My problem is my 4Gb/month allowance on a 12 month contract.  I cannot purchase a data block from my ISP and although my speed is theoretically slowed to 64k after reaching my 4Gb, it actually ceases to download in reality.

    HI tasclix, it depends what you mean by an OS X boot drive.
    If you want a recovery disk from which you can reinstall (by re-downloading) or recover from a time machine backup, then nbar is correct.
    If, however, you want to boot and run the OS X installer from the USB drive (so that you don't need to download again), then you will need a copy of "Install OS X  Mavericks.app"; see this article:
    http://support.apple.com/kb/HT5856
    Before downloading again, search your system to see if the installer is still there - it's usually in the /Applications folder unless it has been deleted, but check your whole system for it anyway, you never know, you might still have it somewhere.
    Message was edited by: SilverSkyRat

  • Display Image from Local path "c:\image.gif"

    Hi Experts,
    Is there anyway to display an image from local path i.e "c:\img.jpg".
    I need to display an image from the path in Dialog(Screen) programming.
    I need to do it using program not any other way...
    Can anyone suggest me a method please.
    Thanks
    Regards
    Naveen

    Hi Naveen,
    You'll have to create a custom control for this and perform coding like this:
    data piccon type ref to cl_gui_custom_container.
    data my_piccon type ref to cl_gui_container.
    data my_pic type ref to cl_gui_picture.
    data my_container type ref to cl_gui_container.
    * invoking the static attribute of the class.
    my_container = cl_gui_container=>default_screen.
    create object piccon
    exporting
    parent = my_piccon
    container_name = 'IMG_CON'
    * STYLE =
    * LIFETIME = lifetime_default
    repid = sy-repid
    dynnr = sy-dynnr
    * NO_AUTODEF_PROGID_DYNNR =
    exceptions
    cntl_error = 1
    cntl_system_error = 2
    create_error = 3
    lifetime_error = 4
    lifetime_dynpro_dynpro_link = 5
    others = 6
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    create object my_pic
    exporting
    * LIFETIME =
    * SHELLSTYLE =
    parent = piccon
    * NAME =
    exceptions
    error = 1
    others = 2
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    * Can be used to load the picture from the presentation server.
    call method my_pic->load_picture_from_url
    exporting
    url = 'file://D:mydataPicturesMisc_pics 1fw1.jpg'
    * IMPORTING
    * RESULT =
    exceptions
    error = 1
    others = 2
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.

  • I cannot print from Sharp 2610 after installing Yosemite

    I cannot print from Sharp 2610 after installing Yosemite from my MacBook Pro. How can i get this to work?

    Is there anything in "All Messages" or /var/log/cups/error_log in /Utilities/Console? Is there an updated driver? Do you get this problem printing form all apps or just Apple apps?

  • /sbin not in PATH after installing lightDM?

    Sorry, I'm a tad confused here, and very new.
    When I try to run fdisk, or other similar commands found in /sbin, from the terminal... it says they aren't found.
    If I run /sbin/fdisk ,  the command works fine.  I am also not able to reboot or shut down the pc unless I do so from the terminal - /"sbin/reboot"
    I can change my path within the terminal, and fdisk works fine on its own, but obviously, once I close the terminal, that change goes away.
    The path in my /etc/profile is as follows:
    PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin"
    export PATH
    It looks to me like /sbin is there just fine, but what do I know.
    This change happened after installed lightDM, which otherwise works flawlessly. 
    Thanks for any help

    Sorry, I'm a total idiot today.  I couldn't remember where I read that stuff (the comments).  Anyway, before coming back here, I fixed the /sbin issue, as well as the shutdown/reboot issue with oblogout, but I don't think they are the best solutions.  (Adding path to bash.bashrc, and adding /sbin/ to oblogout.conf)
    Maybe I will try another DM instead.  This is just my first shot at anything linux, so.. I'm having fun!
    Thank you
    Last edited by ianforcements (2011-10-21 20:18:40)

  • Extracting BLOB from ORDImage

    Hi
    I need to extract the BLOB from an ORDImage object and store it in the same table (for use in an APEX report).
    I've managed to accomplish this but can't understand why another simpler (to me anyway) approach fails.
    CREATE TABLE ORDImage_images
    (image_id   NUMBER PRIMARY KEY,
    filename   VARCHAR2(20),
    image      ORDSYS.ORDImage,
    thumbnail  ORDSYS.ORDIMAGE,
    blob_thumb BLOB);
    -- load the image and confirm the image is loaded and thumbnail and blob_thumb columns are null
    -- try to extract the BLOB
    DECLARE
      l_image_id INTEGER:= 1;
      l_orig     ORDSYS.ORDImage;
      l_thumb    ORDSYS.ORDImage;
    BEGIN
      -- lock row
      SELECT image
      INTO l_orig
      FROM ORDImage_images
      WHERE image_id = l_image_id FOR UPDATE;
      -- clear thumbnail and blob_thumb columns just in case
      UPDATE ORDImage_images
      SET thumbnail = null, blob_thumb = null
      WHERE image_id = l_image_id;
      -- this doesn't work
      l_thumb := ORDSYS.ORDImage.Init();
      -- but this does
      UPDATE ORDImage_images
      SET thumbnail = ORDSYS.ORDImage.Init()
      WHERE image_id = l_image_id;
      SELECT thumbnail
      INTO l_thumb
      FROM ORDImage_images
      WHERE image_id = l_image_id;
      l_orig.processCopy('maxScale=128 128',l_thumb);
      UPDATE ORDImage_images
      SET blob_thumb = l_thumb.source.localdata
      WHERE image_id = l_image_id;
      COMMIT;
    END;I get the following error:
    ORA-29400: data cartridge error
    IMG-00710: unable to write to destination image
    ORA-22275: invalid LOB locator specified
    ORA-06512: at "ORDSYS.ORDIMG_PKG", line 1074
    ORA-06512: at "ORDSYS.ORDIMAGE", line 175
    ORA-06512: at line 32
    29400. 00000 -  "data cartridge error\n%s"
    *Cause:    An error has occurred in a data cartridge external procedure.
               This message will be followed by a second message giving
               more details about the data cartridge error.
    *Action:   See the data cartridge documentation
               for an explanation of the second error message.I can't see why I need to use the thumbnail column (which I don't have any other use for) to initialise the l_thumb local variable. Why doesn't
    l_thumb := ORDSYS.ORDImage.Init();accomplish the same thing? Or am I missing something really obvious?
    Thanks for any help
    Brian
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE     11.2.0.3.0     Production
    TNS for 64-bit Windows: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production

    ORDSYS.ORDImage.Init() initializes the image object and provides a LOB locator to the BLOB field of the object.
    When a LOB that is being initialized is a persistent LOB (a column in the table), the LOB locator points to a location where LOB content can be written to. So processCopy can write to the BLOB. This is what happens in your example that works.
    When a LOB that is being initialized is not persistent (for example, is a variable in a PL/SQL program), then the LOB locator is not pointing to any location. A temporary LOB has to be created for this LOB locator.
    For example,
    l_thumb := ORDSYS.ORDImage.Init();
    dbms_lob.createTemporary(l_thumb.source.localData, true);
    -- processCopy
    -- don't forget to free the space when done
    dbms_lob.freeTemporary(l_thumb.source.localData);
    Now you would not have to create a column just to be a destination for the processCopy.
    You could also directly processCopy to the destination BLOB (blob_thumb in your example), using the relational interface for processCopy. This will avoid a copy from the local variable to the destination BLOB, and the overhead of creating and deleting the temporary lob.
    blob_thumb := empty_blob(); -- to get the LOB locator
    processCopy(l_orig.source.localData, 'maxscale=128x128',blob_thumb);
    -- see http://docs.oracle.com/cd/E11882_01/appdev.112/e10776/ch_relatref.htm#g1116554 (processCopy for BLOBs) for details.
    Finally, if you want to keep the thumbnail image in ORDImage and still use APEX, you could do that - specify to APEX the location of the BLOB in the ORDImage object (by referring to thumbnail.source.localData). Then you could work with image and thumbnail columns in your table, initialize both with ORDSYS.ORDImage.init(), and use processCopy for ORDImage objects.
    Edited by: mannamal on Oct 17, 2012 2:32 PM

  • Mavericks Keychain keeps asking to unlock "Local Items" after install

    Today I Updated my iMac from Mountain Lion to Mavericks.
    After Installing the first boot went smooth but the mac after booting asked me to reboot again.
    On the second Restart when the login window appeared also apeared a Password input window asking me to enter the password for several "LOCAL ITEMS" in the keychain but when I type my administrator password it won't work.
    I hit the ESC key and the window appears several times asking for different password for several items that need access to "Local Items" in the keychain.
    I tried opening the KeyChain and running the KeyChain firstaid but it didn't work.
    Any help is greatly appreciated.

    Your login.keychain password is out of sync with the new iCloud keychain and needs to be re-sync'd.
    The new iCloud keychain is either called "Local items" if you don't have syncing enabled or "iCloud" if you enabled iCloud keychain sync.
    Open 'Keychain Access' Application
    Select the 'login' keychain from the keychains list
    Click the lock at the top to lock the login keychain
    Click the lock again to unlock the login keychain
    After entering your login keychain password you should be presented with a dialog:
    Clicking the reset button will re-sync your login.keychain password with the iCloud keychain password.
    If everything from the above fails for whatever reason the last resort you can do the following:
    Open terminal
    cd ~/Library/Keychains
    ls  
    When you 'ls' here you will see a folder that contains a bunch of random number liks so:
    94ED610F-DD96-4ECF-A2BC-7D2F8651A464  (this number is unique on each system)
    rm -rf 94ED610F-DD96-4ECF-A2BC-7D2F8651A464
    Reboot
    <when you log back in everything should be back to normal>

  • Extract filename from a path

    Hi folks!
    Anybody knows if there is a MF to extract the filename from a path...
    for example, if i have a path like:
    server\filename.ext
    c:filename.ext
    c:\>filename.txt
    i want to extract the filename: 'filename.ext' (or just, 'filename')
    Thank's in advance!
    Xavi.

    Hi,
    You can use the FM <b>CACS_SPLIT_PATH</b>
      Import parameters               Value         
      I_PATH                          C:TEST.TXT                                                                               
    Export parameters               Value         
      E_PATH                          C:           
      E_FILENAME                      TEST.TXT      
      E_PSERVER                       X  
    Regards
    vijay

  • Pictures DISAPPEARED from pictures folder after installing lightroom to use with creative cloud

    so i had lightroom on a trail period that had ended.  i had then gone to try out the creative cloud lightroom and it asked me to install.  in hindsight i should have just transferred my files to my external hard drive just in case... but i didn't.  so after installing the new updated lightroom, MOST of my photos have disappeared from their original folder.  like LOTS and LOTS of photos.  but it kept SOME of the photos. 
    can anyone help me?!  lots of memories lost possibly and i'm quite displeased and worried...

    I have never had a program install remove anything... but you might ask in that forum Photoshop Lightroom

  • New Bitmap missing from context menu after installing photoshop

    After installing photoshop CS6 from CD onto Windows 7x64; my context menu > New > bitmap is no longer available.  registry settings are intact and I've used Bridge ro reassociate .bmp with mspaint but the option still does not appear.  The installation of photoshop is the only change to the computer in several months.
    I can workaround by creating new txt files and changing the extension but this adds a step to a (non photoshop related) workflow that's been in place and worked well for years.

    I don't know why Photoshop would kill the system default entry for new bitmap - possibly because it has associated itself with that file type.
    First thing to look at - start Adobe Bridge CS6, go into the Edit - Preferences - File Type Associations dialog, and see if you can re-associate MSPAINT.EXE with the BMP format.  That may correct the issue, but I can't say for certain as I don't want to try it here and change my own setup.
    I don't use the New context menu functionality for making new bitmaps myself, but when I looked to see what shows up in my New context menu, I found this:
    Choosing the IrfanView BMP File entry led to this:
    If you can't recover the old functionality via the Bridge settings, it may be that you can install the freeware viewer IrfanView and have it associate itself with the BMP file type.
    -Noel

  • The Airways Icon has disappeared from my Ipad after installing IOS 7. I was told by support  to reset my ipad. I have now lost my wifi internet connection aswell. What can I do?

    The Airways Iccon has disappeared from my Ipad Mini after installing IOS7. I was told by Apple Support to reset my Ipad. I did this. I have now lost my wifi internet connection as well. What can I do?

    Also my drop box is empty. A much bigger problem...

  • Can't read from WD storage after installing lion

    After installing Lion, unable to access files on WD storage.
    The error below comes up
    The folder “bbb” can’t be opened because you don’t have permission to see its contents.
    How can this be corrected?

    Thanx for the suggestion. Sounds like an ugly work-around and not a true solution. Unfortunately for me, the two Panther machines (one is a laptop) can not be easily co-located with a printer. Any chance that the problem is due to a known software bug for which a fix might be forthcoming? Also, wondering if it's known that it won't work to hook the printer up directly to the Tiger machine and have the Panther machines print through the Tiger one. —Ken

  • Can't open any apps downloaded from the internet after installing application loader update and messages beta

    I've run into an unusual problem recently. I think it it related to two recent software installs.The problem only started after i installed the new application loader.
    My issue : I'm unable to open application I downloaded from the web. I get the following error message below.
    Question: Has anyone else run into this issue and do you have a solution?
    Thanks for you help.
    P.S I haven't tried rolling back the lastest softwarte installs yet. I'm hoping I can avoid that.

    When I press cancel nothing happens. I can do nothing and it still won't load the program.
    Messages beta: http://www.apple.com/macosx/mountain-lion/messages-beta/

  • Suddenly can't import photos from SDHC card after installing Snow Leopard

    After we installed Snow Leopard, we suddenly can't import any photos from our camera when we use an SDHC memory card. Regular SD cards work fine and importing from our SDHC card onto our MacBookPro w/o SnowLeopard works just fine. Anyone have any solutions for this? Tried my card reader, too, and get same problem. Hook up camera/card reader, iPhoto takes a long time to recognize it, and then I get blank photos. I click import and then get an error message about unreadable files. Only happens when using the SDHC card. We're using iPhoto '08 on both Macs.

    I vaguely remember other posts regarding the SDHC card. Have you searched for "SDHC" in the forum to see what other users report and they found a solution?
    OT
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier versions) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. There are versions that are compatible with iPhoto 5, 6, 7 and 8 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    NOTE: The new rebuild option in iPhoto 09 (v. 8.0.2), Rebuild the iPhoto Library Database from automatic backup" makes this tip obsolete.

  • Warning!  Songs were removed from iTunes Library after installing new iTunes and iPad/iPod Sync

    I purchased the iPad 2 yesterday, updated my itunes software, and itunes messages indicated that it would not allow certain songs to be included in my library any longer since these were not purchased from iTunes.  Many of the songs were from CDs that I stored on this library for several years.  Only after I upgraded iTunes with this new iPad was my music removed.  Luckily I still have my music on my iPod, but my iTunes library on my laptop contains only the music I have purchased from iTunes with the last 18 months.  Weirdly, except for one particular song that iTunes said was not purchased from them, but it was part of an entire album purchase from iTunes.  Also, all of the movies I purchased from iTunes were also removed. I am not able to sync any movies onto my iPad. 
    I restored the iPad a second time, reinstalled the itunes and have the same result.  All of my older archived music is gone from the iTunes library. 
    Warning, if you want your music, back it up before installing the latest iTunes particularly if you have the new iPad 2.

    Hmm, it is only very recently (about 6 months ago I think) that the policy on Music changed. Prior to that you would be routinely reminded to back up all purchases (immediately after the successfully completed download), unless of course you ticked an option not to be reminded again. The change in policy (in our favour) would have been noted in the small print that neither you or I read when upgrading iTunes, though we say that we have.
    Again I'm still not certain if audiobooks are excluded from both "Music" and "Books". One would hope that they belonged to one category or the other in respect of redownloading. In the past, in the event of an absolute disaster, fatal hard-drive crash, fire etc. some users have been able to prevail upon the charity of the iTunes store staff who would occasionaly grant a second, but never a third, download of past purchases.
    The restictions on different types of media are ultimately imposed by the rights holders, not Apple. It is in Apple's interests to offer the same terms as their competitors, so my guess is that nobody currently offers unlimited repeat downloads of movies. Certainly the unique codes you get on some DVDs/Blu-Rays are one-time only.
    Backup all (or at least the non-replaceable parts) of your library with this User Tip.
    tt2

Maybe you are looking for

  • 5.0.1 to5.0.4 or not??

    IPhoto 5.0.1 WAS working well for me. I use it for editing/printing/ making books. I have 6 libraries with 1000-4000 photos in each one. I upgraded to Tiger 10.4.2 without problem, and recently upped iTunes to 5.0. All seemed well with that app. Howe

  • Zen Touch Froze, It will not re-set or enter recovery m

    My Creative Zen Touch froze when my sister was using it, She didn't know what to do with it so waited for me to come home, when i got home the battery had died. Letting the battery die and recharging it has sorted this problem for me on numerous occa

  • Salary Advance

    HI Salary Advace can be conifgured in Dynamic Action, instead of Loan Configuration in Infotype 0014 Salary advance, 0015 Advance deduction. i have done my Salary Advance  Quite Simple ... is't OK regards Sekar

  • Application language don't translate templates ?

    Hi, I use APEX 4.0, Oracle 10g, Windows XP Pro SP3. We need 2 languages for our application (fr and en). I do the following : - Download translatable text to translation file (XLIFF FILE) - Modify it - Apply XLIFF translation file - Publish Translate

  • Test Flash detection

    Hello, I got the flash detection kit and integrated it with a website i am developing. Well a few people told me that they end up with a blank page. I think that the flash detection did not work and i am unable to check this part since all PCs at the