Issue with OracleHelp loading HelpSet with space in file path

Hi,
I'm running into an issue where I cannot get OracleHelp to load a HelpSet correctly with RoboHelp contains when the file is in a directory with a file space in it.
This will load successfully if the path does not contain any white spaces. It looks like oraclehelp may be running into an issue decoding the %20. Any thoughts?
java.io.FileNotFoundException: C:\temp\qa_relea%20se\windows\data\help\oracl
e_help_files\HelpTOC.xml (The system cannot find the path specified)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.<init>(FileInputStream.java:106)
at java.io.FileInputStream.<init>(FileInputStream.java:66)
at oracle.help.engine.DataEngine._getBufferedReader(Unknown Source)
at oracle.help.engine.XMLTOCEngine.createDataObject(Unknown Source)
at oracle.help.common.View.getViewData(Unknown Source)
at oracle.help.common.navigator.tocNavigator.TOCUtils.getTopicTree(Unkno
wn Source)
at oracle.help.common.navigator.tocNavigator.MergingTopicTreeNode._creat
eTopicTreeNodes(Unknown Source)
at oracle.help.common.navigator.tocNavigator.MergingTopicTreeNode._reall
yAddView(Unknown Source)
at oracle.help.common.navigator.tocNavigator.MergingTopicTreeNode.addVie
w(Unknown Source)
at oracle.help.navigator.tocNavigator.TOCNavigator.addView(Unknown Sourc
e)
at oracle.help.Help._createNavigatorForView(Unknown Source)
at oracle.help.Help._createNavigatorsForBook(Unknown Source)
at oracle.help.Help.addBook(Unknown Source)

Hi Experts,
My concern was Say I delete the requests from the day the data was loaded with thw wrong update rule, I have the data sitting in the PSA and I can reconstruct them. I understand that the data can be corrected in ODS.
But in the cube, some key figures are there with the update method as 'addition'. So say I delete the content of the cube and reload it from the ODS all over again, wont the key figures get corruipted yet again?
Also as I was thinking, say we delete the respective request from the cube as well, and reconstruct the data in the ODS. can I fire the delta request again to capture the changed records to be loaded to cube. to be exact will all the data from the date of the data corruption(as I am going to delete the requests from the cube from that day also) will be loaded to the cube?
Also another thing is will it be a better idea to reconstruct a request in the ODS and run the delta package for the cube.. And go on ..
Kindly suggest..
Thanks in advance !!!

Similar Messages

  • Spaces in File Path Hyperlink

    I have a crystal report that lists invoices. On each row is an image that contains a hyperlink that loads an image of the scanned invoice. The invoice fields related to that row are passed into the hyperlink. The hyperlink is as follows;
    PVault\Documents\Accounts Payable\Invoices\"&{Invoice.VendorNumber}&"\AP Invoice "&{Invoice.VendorNumber}&" - "&{Invoice.InvoiceNumber}&".tif"
    This hyperlink worked outside of the DNN portal. I have added this report to the portal and am running the report successfully. However when I click on the hyperlink in the DNN portal the hyperlink fails with cannot find file path.
    I would appreciate any help with this. Thanks.

    Hi,
    Please have a look at the Rules of Engagement before posting to these forums. The link is here:
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement
    Once you have read the above, please provide the necessary information.
    VS version?
    CR Version?
    Service pack level?
    Production or development issue?
    Sincerely,
    Amit

  • Pages not loading with Safari, loads OK with Firefox

    Hi
    The site is fine on iMac intel and iBook but on G3s with safari I get this
    # Exception: TypeError
    # Message  : Value undefined (result of expression IWAllImages.hasOwnProperty) i s not object.
    # File     : iWebImage.js, Line:18
    The pages don't load and the images don't load, works alright with firefox on the G3
    I don't know if it works on a pc... strange because it all worked fine before iWeb 08
    Anyone else seen this?

    iWeb 2 writes page code that requires a modern (Web 2.0) browser.
    Safari 3.1.1 is but Safari 1.3.2 is not.
    Use Firefox or other more modern browser that can be installed on your older OS.

  • Load data with SQL Loader link field between CSV file and Control File

    Hi all,
    in a SQL Loader control file, how do you specify link with field in CSV file and Control file?
    E.g. if I wat to import the record in table TEST (col1, col2, col3) with data in csv file BUT in different position. How to do this?
    FILE CSV (with variable position):
    test1;prova;pippo;Ferrari;
    xx;yy;hello;by;
    In the table TEST i want that col1 = 'prova' (xx),
    col2 = 'Ferrari' (yy)
    col3 = default N
    the others data in CSV file are ignored.
    so:
    load data
    infile 'TEST.CSV'
    into table TEST
    fields terminated by ';'
    col1 ?????,
    col2 ?????,
    col3 CONSTANT "N"
    Thanks,
    Attilio

    With '?' mark i mean " How i can link this COL1 with column in csv file ? "
    Attilio

  • Loading external swf fonts created with fontswf, loaded with a Loader, compatible with iOS

    Let me immediately start out by saying that I do in fact have a current working solution for using embedded fonts, generated by fontswf and working in an AIR ActionScript mobile application, and also currently working fine with iOS.
    My current app needs CFF fonts, so I currently use the fontswf tool to pre-generate the .swfs using:
    fontswf -4 -a [SomeAlias] -o [SomeFont.swf] [SomeFont.ttf]
    and then I am currently embedding them in my app source code .as for compilation using:
    [Embed(source="/swf/SomeFont.swf", symbol="SomeAlias")]
    public static var SomeFontClass:Class;
    I then have no problem registering them using Font.registerFont(SomeFontClass) and everything works fine.
    However, I would prefer to take the use of these swf fonts one step further and load them dynamically using a Loader so that I do not have to take the hit of having multiple CFF font swfs embedded in the main compiled SWF and so that I could even load an unknown future set of fonts without having to supply them as part of the app build.
    Now I have seen and read many blogs and tutorials where people have exported font swf from Flash Builder where you add an explicit 'Class' name or even made standalone .as static files compiled into standalone swfs only including the two lines:
    [Embed(source="/swf/SomeFont.swf", symbol="SomeAlias")]
    public static var SomeFontClass:Class;
    so that you also have a 'Class' involved. Then people use some form of appropriate applicationDomain.getDefinition("className") as Class
    to pull out the class for the font registration.
    My question is, how does one perform the same font loading and registration of fonts using a Loader only loading the .swfs produced directly from fontswf?
    It seems only a DefineFont4 is tagged in the swf, there doesn't seem to be a 'Class' per se to call on.
    More importantly, iOS apps cannot load external swfs with code in them, so my understanding is any extra wrapped swf that would contain a custom Class technique would fail the iOS requirement of only having one main SWF with any ActionScript compiled code.
    Is there an alternative to the 'Class' technique by grabbing the DefineFont4 tagged resource from the swf and instantiating a proper working Font class from that? One that would still be compatible with the restrictions placed on AIR mobile apps running on iOS?

    Ironically, just after posting this, Adobe released AIR 3.5 beta onto labs, and added multiple SWF support for iOS.
    While this new support makes it easier to manage your content across multiple SWFs and technically allows you to use the class based separate .swfs for each font if desired, the system still requires that all these SWFs be present at compile time when making the final app .ipa for iOS.
    So this still doesn't solve trying to load fonts after the app is already built. For example, as part of a downloaded in-app purchase mechanism.

  • Spaces in file path preventing image load

    Hi all,
    I've got a problem: after installing Java 1.4 on Windows 2000, some of my image loading code stopped working--but only under very specific conditions (the code in question follows the post).
    If you run an applet locally, AND the applet is accessing the class files in an archive (a ZIP file, in my case), AND the path to the html file that references the applet contains spaces, the Java plug-in can't find any images (using the default Toolkit's 'getImage' method).
    For example, if I launch "c:/projects/slide_test/slide.htm", everything works great, but if I launch "c:/projects/slide test/slide.htm", the images won't load (assuming the .class files exist in an archive in both cases).
    Similarly, if I launch "c:/projects/slide test/slide.htm" but leave the .class files unzipped and in the "slide test" directory, everything works fine.
    The code works great using the Microsoft JVM and worked well under JRE 1.3_0x.
    Has anyone else encountered and/or solved this problem?
    Thanks in advance for any help or comments.
    Here's the image loading code, though I stress it's been working great up to Java 1.4:
    try {
        this.image = Toolkit.getDefaultToolkit().getImage(imageURL);
        try {
            tracker = new MediaTracker(parentApplet);
            tracker.addImage(this.image, 0);
            try {
                tracker.waitForID(0);
                this.iWidth = this.image.getWidth(null);
                this.iHeight = this.image.getHeight(null);
            catch (Exception e) {
                System.out.print("Failed to track image.\n");
        catch (Exception e) {
            System.out.print("applet not yet initialized.\n");
    catch(Exception e) {
        System.out.print("Failed to data for bitmap " + imageURL.toString() + "\n");

    Hey Safir,
    Thanks for the post. Unfortunately, that didn't fix the problem. I tried reforming the URL using "\ " and " " (in place of the '%20' that Java automatically substitutes), but the problem persists.
    Given that the code works as is until you try to access the class files from an archive, I think there's something deeper at work.
    Thanks again.
    Kreitler

  • Spaces in File path of a command

    Hi all,
    I have a problem in the following API
    Runtime.getRuntime.exec
    ("open /var/root/Desktop/Test Folder/abc.jpg");
    it does not open the file mentioned but the following command
    Runtime.getRuntime.exec("open /var/root/Desktop/TestFolder/abc.jpg");
    it opens the file abc.jpg. the only difference between these 2 commands is spaces in "Test Folder" directory name.
    Please let me know if anybody has an idea.
    thanks
    Message was edited by:
    nav_nini

    Also note that to put a quote within a string, you must use:
    e.g, this string printed out in cmd...
    String text = "\"This is a quote\", he said";
    would be: "This is a quote", he saidJust incase you didnt understand that from masijade's explanation.

  • Multihomed eBGP load balancing with 3 ISP's

    We currently peer with 2 ISPs using BGP in an active/failover configuration.  My company wants to move to a 3 ISP model where Internet traffic is split across the 3 providers so that bandwidth is equally distributed on outgoing traffic across our 2 /22 ARIN IP ranges.  This is from our 2 edge switches that have VSS.  
    Within my limited knowledge of BGP, I have determined that we could do load sharing pretty easily by adding multiple default routes and breaking up our /22's into /24 and advertising them that way.  However, I don't think this satisfies the request that downtime must be seamless, should one link drop.  
    Currently, our ISP's advertise default routes.  From the research that I've done, we could get close to load balanced links if we receive full BGP routes and community settings and definitions.  I'm nervous about this because it looks really complicated, and I don't want our AS to turn into a transit AS.  I've been told the same can be accomplished with only partial BGP routes and community settings and definitions.  
    Personally, I think we just need a WAN load balancer.  However, given the request, is there a thread out there that can explain this, or can someone discuss this requested scenario a little bit?  
    Thanks!

    Hi there
    First question would be what is the required reconvergence time for the applications using the Internet? Should an outage occur, when do they lose their state? Once you know that, you then have a target to aim for in terms of recovery
    With regards load-balancing, with BGP we are always talking inbound and outbound.
    The outbound solution is relatively simple - each ISP advertises a default route to your Internet edge router(s). Create an eBGP session from each edge router to the core, advertise the default route and redistribute into the IGP. Ensure the IGP cost to each BGP next hop is equal and you have ECMP for outbound routing.
    Inbound influence is usually via MED (not likely in this case given 3 ISPs), adjusting local-pref in the ISP via BGP EXT communities configured your end, or via AS-PATH prepending for longer prefixes from your /22. Prepending would be simplest, but your unlikely to get an exact inbound traffic split, however a relatively even distribution should be sufficient. 

  • Issue with a load from R3 to BW 3.5

    Hi Guys,
    We are having an issue here with a load from R3 to BW 3.5 to an ODS and
    a transactional infocube.
    In a daily basis we are running loads to BW from R/3 infosets and all
    of them but one loads fine.
    The one that is having problems is actually the one that loads more
    data, therefore the infopackage is divided into two infopackages.
    In the update rule of the first ODS we are running an initial routine
    in which we are doing a RSDRD_SEL_DELETION (selective deletion) of the
    data to be loaded to both the ODS and the infocube, and is actually
    here where we got the core dump.
    Our first assumption was that maybe there was any yellow request in the
    transactional infocube avoiding the selective deletion but we have
    discarded this.
    We think that, as the only one failing is the one that divides into two
    infopackages, the problem might be that at the moment that the first is
    triying to delete the second one is loading data into the ods and there
    we get the dump.
    The question here is ¿Could this be the problem? ¿How could we
    workaround this if this is the case?
    Thanks for any suggestion.

    Hi,
    Be carefull on ODS activation, if you're using 2 infopackage and/or deleting data from an ODS which is lock for an activation, you'll occurs a dump.
    Check SM12 / ST22 / SM21 and job logs in SM37.
    And if pb still occurs for a load, debug it in start routine.
    Regards,

  • When connected to my Ford Mondeo, my ipod nano can be controlled through interface.  But after while it comes up with message 'loading data' and then freezes.  Anyone else got the issue?

    When connected to my new Ford Mondeo, my ipod nano can be controlled through user interface in car.  This worksd most of the time, but after a while if I try to change the music or search, it comes up with message 'Loading Data'.  I then have to pull out USB and reinseert, at which point it works again.  Has anyone esle expereinced this/have a solution?

    Does not matter if anyone else has this issue.  You need to contact the Ford dealership.  It's their product you are having problems with. 
    If you really want to know if anyone else has this issue, post on Ford's Mondeo message boards.  It's where the Ford car owners hang out.

  • Issue with site load time when exported as HTML. Addressed?

    Has the issue with website load time been addressed?
    I believe the site attempts to load the entire image content at the initial visit - meaning any galleries with numerous pictures are all included when first getting to the site. This is causing a HUGE increase in load time. I was told when I last brought it up that it was an apparent issue that needed to be addressed.
    Any type of resolution coming?
    Site for reference: www.dkrecollection.com

    Major updates of Muse are targeted to release roughly every quarter. The 1.0 release was in mid-May. The 2.0 release was in mid-August. A fundamental change to image loading would only appear as part of a major update due to the engineering and testing efforts required.
    As provided in your previous thread http://forums.adobe.com/message/4659347#4659347 the only workaround until then is to reduce the number of images in the slideshow.

  • Having issues with loading pages with large web articles..

    I'm having issues with pages loading all the way when I read articles off of wikipedia. Mainly from pages that have tons and tons of text, but it doesn't make sense. The browser indicates that the page is loaded all the way, but when I make it half way down the page, everything becomes completely white. Like LITERALLY everything becomes white. This prevents me from reading any further down the page, even though I would force the page to scroll down all the way, that doesn't help one bit.
    Does anyone have a solution or a fix to this? I would like to continue reading my web articles, without being interrupted with these white pages/bugs.
    Post relates to: HP TouchPad (WiFi)

    Try clearing the cache for the web browser. While the browser is open, go up to Web/Preferences and choose "Clear cache".
    Also try rebooting the TouchPad via Device Info/Reset Options/Restart.
    WyreNut
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • Issues with site load time. (bg images)

    Hey, guys.
    Having an issue with a site uploaded with MUSE. None of the images are overly large, but the load time is 5 to 6 seconds where it should be instant.
    Looking at it, it appears as though all of the images are attempting to load simotaneously in one large chunk rather than in a line.  Is there anyway to remedy this?

    This isn't related to background images. It's how Muse is handling the loading of the ~100 images in the slideshow. Thanks for pointing this out. Until we have altered the loading method for these images, the only workaround I have is to decrease the number of images in the slideshow.

  • Issue with delta load from R/3 to BW

    Hi frnds,
    There is a standarded D.S  2LIS_05_ITEM in R/3. Evereday We extraceted data from R/3 to BW based on this standard Data Source with delta load.There are two fields ZX and ZY in BW ,some times the data haven't extracted for this 2 fields in BW with the delta update.But some times this 2 fields properly extracted in to BW with the same delta update.
    Why is it happen like this ? Please give some inputs on this.
    Regards,
    Satya.

    Hello,
    if its a standard field then its getting populated in correct way.
    if its custom field then you need to analyze the records for which its getting populated and for one which its not.
    Quite possible that some cutomization in CMOD results in this behaviour.
    Also,check underlying tables to see the correct values.
    Regards
    Ajeet

  • Issues with exporting movie - insufficient storage space

    Hello,
    Last night I tried to export a 50 minute movie that I created - I checked my hard disk space and I had 4.3Gb available at the time. I didnt think I would have enough space to export in 720p resolution but tried anyway. Imovie started to create the movie but stopped ~60% through stating that it had insufficient storage space to complete the export. But now, instead of having 4.3Gb available I only have 335 Mb available as I believe Imovie did not delete the unfinished file when it cancelled the export (its storage usage went from 500 mb to 4.3gb after the failed export). The issue is, I now have to way of accessing the unfinished file to delete it and do not have enough storage space to export at a lower resolution! Has anyone else run into this issue?
    Is there anyway to access the files embedded in iMovie?
    If not if I delete iMovie do my saved projects remain?
    Otherwise is there anyway to export my movie onto my computer directly?
    I unfortunately did not back up the iPad prior to the export so I cant restore it from a previous point.
    Really appreciate your help!

    Sadly you are rather stuck at this point.
    This appears to be an error in movie that does not clear the space if it is unable to finish creating a movie.
    Your 50 minute video would be about 4 gb by my estimates.
    imovie would first create this video within the app (apps are sandboxes and must create files within their own memory area).
    Once the video is made, iMovie can copy this video to the camera roll.
    The way iOS works is to avoid mixing data, thus it is a copy process.
    Which means you would have to have 8 gb of space to create your video.
    I am going to guess that iMovie correctly made the video, but now has no where to copy it.
    And rather annoyingly it holds on to the video for now.
    You need another 4 gb space to compete the export.
    As you have not enough space left on the iPad you are in a bind and there are only a couple of options left for you.
    Firstly, if you delete iMovie iOS you will lose your projects.
    I do not advise deleting iMovie.
    You cannot export the project, and iMovie iOS projects contain the source video.
    So you would need about 4gb of space to export the project.
    Also do not delete the source videos, iMovie just links to the camera roll.
    So if you delete the video from the photos app then iMovie will lose the video too.
    There is no way that is Apple sanctioned to clear the space in iMovie.
    Apple has strict rules on what we can discuss in these forums, so I cannot help or advise how to clear iMovie of the half made video.
    My best advise would be to delete another app, or files from your iPad.
    I hope you have at some point backed up your iPad to your Mac, of iCloud?
    If not then do so now.
    Then I would suggest you delete large apps to clear space.
    These can be restored later.
    Look for games or apps that save their user data online.
    I have a few Gameloft games, and they store my game data on their servers.
    This way you can restore where you were later again.
    Or you could connect to iTunes, and delete all the music off the iPad.
    THen finish exporting the video, and restore the music later.
    Have a look here to see how to use iOS to check what other apps are using space:
    http://ipadinsight.com/ipad-tips-tricks/how-to-see-how-much-space-is-being-used- by-each-of-your-apps-in-ios-5/
    Good luck, and I hope it works out for you..

Maybe you are looking for

  • Schedule Job and Read Spool

    Hi Guru's, my requirement is 1.I need to run one standard program 3 times with 3 diffrent selection's. 2.the resultant 3 diffrent ouput will be displayed in only ONE output. ( the prgram should have the capalibilty to ceate 3 diffrent jobs simulateno

  • WLAN Connection

    Hello, my wireless connection works, but at irregular intervals my MacBook Pro loses the connection to the WLAN. Sometimes I have to enter the WLAN identifier again. According to the Apple network analysis, everything works perfectly. Does anyone hav

  • A proprietary page I use for logging work hours is not compatible with 4.0. How can I downgrade?

    I use a work-hour logging site called "Infowit" to account for my time on the job. After downloading 4.0, I can no longer log in at the site. It tells me that my browser is not compatible with it. As a result, I want to go back to the older version I

  • Remove Structured Anchored Frame  without disturbing the XML Structure - Reg.

    Dear All, Please any one help me!, How to remove the xml Structured Anchored Frame without disturbing the XML Structure. Manually If I'm removing the XML Structured Anchored Frame, the XML Structured is gone. I tried so many ways.  If  I am removing

  • 9.0.5.2: NPE in JUTreeBinding.treeExpanded()

    In 9.0.3.3 our tree worked without problems. Now, in certain situations I get a NPE in JUTreeBinding. It seems that the user object of a tree node is null. treeNodeBnd.getChildren() then triggers the NPE. Not sure why this happens now. Never happened