Problems with EAS 11.1.2

1. After opening Outline, I can't expand the dimension hierarchy
2. Substitution variables are not visible after i have created one, but when creating the same substitution variable, I get the error, saying it already excists...
3. When choosing "create calculation script", nothing happends
4: When validating Business Rule, I get this error (when trying to select member to validate on): *"java.lang.NullPointerException"*.
Can someone tell me if all these problems are related to Java, or is this a security issue?

This could be down to an permissions issue on the machine, can the client be run on the eas machine without any issues or does the web client work.
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • Problems with Windows 7 Ease of Use Magnifier & Narrator

    I am legally blind and need Windows 7 Ease of Use programs to use the computer.  However, I have been having problems with both the narrator and the magnifier.  I have Home Premium running on i5-3317u with integrated graphics and 6gb ram.
    Q1:  Magnifier has options to follow the keyboard focus and the text insertion point.  However, in my case, it will only follow the mouse pointer.  It will not follow the keyboard insertion point.  I want magnifier to follow the mouse
    pointer, the keyboard focus, and the keyboard insertion point.  How can I get them all to work properly?
    Q2:  I cannot get narrator to read documents, whether I use notepad, MS Word, or third party software.  Also, I cannot control narrator with the keyboard controls.  How can I fix these problems?
    Thank you for your time

    Hi,
    This may occur if there are some corrupt system files on the computer. I would suggest that you run a SFC scan which would scan for corrupt system files on the computer and replace them
    How to use the System File Checker tool to troubleshoot missing or corrupted system files on Windows Vista or on Windows 7
    http://support.microsoft.com/kb/929833
    If the above step fails then check if the issue persists in a new user account
    Create a user account
    http://windows.microsoft.com/en-us/windows/create-user-account#create-user-account=windows-7
    Please also update your sound card and display card.
    Meanwhile, I suggest changing  Resolution settings for testing the issue.
    Change your screen resolution
    http://windows.microsoft.com/en-US/windows7/Change-your-screen-resolution
    Thanks

  • Why can version 3.16.6 have problems displaying more than nine posts in a forum thread when IE7 does so with ease?

    In a forum that I have been using for the last several years, I posted a problem. When I tried to reply to post #9 in that thread, my post would not appear. I tried again and still my post did not appear.
    I then opened IE7, navigated to that forum and thread. IE7 displayed all 13 posts.
    I have no problems adding to long threads in other forums. If it helps you, I am including a link to the thread I'm having problems with.
    http://www.bt3central.com/showthread.php?t=53395

    The slowness may be caused by background processing after the library update. Are you shooting RAW?
    Also, where is your iPhoto library stored? In your Pictures folder or on an external drive?
    How much free storage do you have on your system drive
    3. Finally when my old folders, books and contents of my old photo gallery appears in the left side of the application I have access to no photo and the program remains as it were unresponsive.
    You may need to repair your iPhoto Library.
    Run the iPhoto library first aid tools and use the options "Repair permissions" and "Repair database".
    To launch the "First Aid Tools" hold down the options-command keys while double clicking your iPhoto Library.
    Then select "Repair Database". Repeat with "Repair Permissions". If this does not help, back up your iPhoto Library and use the option "rebuild".

  • Problem with the FOR statement.....again!

    Hi everyone,
    Well I'm still trying to do a car slideshow using external
    files and can't seem to see the end. The current movie is here:
    http://www.virtuallglab.com/projects.html
    I also attach the code. My problem is I had originally set up
    an animation with 2 pictures sliding in with some text, and then
    wait 4 seconds before sliding out, and then next pictures and text
    would slide in and so on, using a setInterval.
    The problem is the FOR loop seems to skip the setInterval and
    the function "wait", so it just loops quickly and jumps to last
    picture, so on the example above, it just slides the last picture
    (i=9) and that's it!
    Can you not include another function within a FOR statement.
    Or is there a way to tell the FOR loop to wait until all motion is
    finished?
    Any help greatly appreciated
    import mx.transitions.*;
    import mx.transitions.easing.*;
    for (i=0; i<10 ; i++) {
    var picLeft = "pics/"+i+".jpg";
    var picRight = "pics/"+i+"b.jpg";
    var txtToLoad = "text/"+i+".txt";
    this.createEmptyMovieClip("leftHolder",1);
    leftHolder.loadMovie(picLeft,i,leftHolder.getNextHighestDepth());
    leftHolder._x = -200;
    leftHolder._y = 15;
    var leftTween:Tween = new Tween(leftHolder, "_x",
    Strong.easeOut, leftHolder._x, 10, 2, true);
    this.createEmptyMovieClip("centerHolder",2);
    centerHolder.loadMovie(picRight,i+"b",centerHolder.getNextHighestDepth());
    centerHolder._x = 180;
    centerHolder._y = 250;
    var centerTween:Tween = new Tween(centerHolder, "_y",
    Strong.easeOut, centerHolder._y, 15, 2, true);
    text._x = 600;
    myData = new LoadVars();
    myData.onLoad = function(){
    text.carText.text = this.content;
    myData.load(txtToLoad);
    var textTween:Tween = new Tween(text, "_x", Strong.easeOut,
    text._x, 420, 2, true);
    myInterval = setInterval(wait, 4000);
    function wait() {
    var leftTweenFinished:Tween = new Tween(leftHolder, "_x",
    Strong.easeOut, leftHolder._x, -200, 1, true);
    var centerTween:Tween = new Tween(centerHolder, "_y",
    Strong.easeOut, centerHolder._y, 250, 1, true);
    var textTween2:Tween = new Tween(text, "_x", Strong.easeOut,
    text._x, 600, 1, true);
    clearInterval(myInterval);
    ***************************************************************************************** ***

    There is no way to tell a for loop to wait. That is not what
    they do.
    The entire for loop will execute (if possible, and it doesn't
    enter some kind of continuous infinite loop) completely before each
    time the frame is rendered.
    If you want to spread things out over time you need to use
    the setInterval -- but not inside a for loop! If you do that you
    immediately set however many intervals as your loop has. In this
    case you will also assign the ids for those intervals to the same
    variable, effectively overwriting the value so you will never be
    able to clear most of those intervals.
    So you need to rethink you whole structure. Set up some kind
    of counter and limit like this:
    var slidesToShow:Number=10;
    var curSlide:Number=0;
    Then have your setInterval increment the curSlide each time
    it is called and check to see if it has shown all of them. That is
    where your "loop" comes in.
    As for the other part of your question -- yes you actually
    have two different issues going on -- again you cannot make a for
    loop wait for anything. So no there is no way to pause it while you
    wait for your tween to end. But you can be notified when a tween
    ends.
    Check out the documentation about the tween class in the help
    files. There you will find the onMotionFinished event. So you can
    set up one of those to start whatever needs to be started when the
    tween has finished.
    You should also use the MovieClipLoader class to load your
    images, because you have no idea how long it will take to load
    them. Using that class you get a nice event (onLoadInit) that tells
    you when the asset is ready to be used.
    Finally I'm thinking you might want to use setTimeout instead
    of setInterval. It only goes once, while setInterval repeats
    forever. So I would think your algorithm would be something like
    this.
    1. load external asset
    2. when ready animate in and set onMotionFinished handler
    3. when motion is finished start loading next asset and
    setTimeout for 4 seconds.
    4. when 4 seconds is up or the clip is loaded (which ever
    takes longer) go to 2 and repeat.
    If this is going to be run locally on a hard drive or CD you
    won't have any problem with the length of time it takes to load the
    external assets, but if it is over the web it will take time.

  • Problems with Mediasou

    I have been having huge problems with MediaSource ever since I bought by Zen Touch. For some reason, this software slows my computer down to an extreme level, including not allowing me to use some programs (including WMP 0) and forces me to restart. This happens EVERY time I try to start MediaSource. Another big problem is that even when I try to start MediaSource, most times it won't even open! And if it does open, I can't get it to recognize my player. I have tried all the upgrades that are on the site (which made these problems happen on an even BIGGER scale). I also tried to uninstall everything then reinstall everything back to original fuctionality without the upgrades (although these problems have happened from the very beginning) and it still will not recognize the player and the software seems even worse!
    Is anyone else having these problems where Mediasource slows the computer functionality? I mean a major hit (even though it says only 5% CPU Usage in taskbar) that will slow everything. Is there a way to fix this, or is Mediasource just that bad? After reading some of the comments, it seems that people seem to be ok. Why am I getting hit so bad? Is there an alternati've I can use to Mediasource (for this is making me want to throw the Touch away and buy an ipod, the ease of use functionality is looking better and better for the price the longer I spend trying to figure out how to USE the software)?

    <SPAN>bufu3284, what is the problem you that faced when transferring songs from your Zen Micro to your PC? By the way, <FONT face=Helv size=2>have you:
    - Download and install the latest Creative MediaSource Player/Organizer 3.30.2 from your product download site.
    - (Depending on your firmware)
    Download and install the latest Creative Zen and NOMAD Jukebox plugin 2.00.9 for Creative MediaSource from your product download site.
    or:
    Download and install the latest Creative MediaSource Plugin for PlaysForSure devices (version .00.8) from your product download site.

  • Problem with creating/viewing PDF's from InDesign CS3

    I have a problem with our PDF workflow and just cannot seem to resolve it.
    The problem is as follows: My coworker and I (both designers running CS3 on iMac's running 10.5.6 Leopard) work daily on producing documents and graphic layouts.
    Internally we can view and print PDF documents we create just fine with no troubles with the exception of our supervisor, who is running a mac with Tiger operating system. Our office environment is both Mac and PC. On may occasions he cannot print PDF's we create. Many times his prints will contain garbled characters, drop italics and formatting, replace fonts, or just print slowly.
    This problem is also happening to our editor who is offsite. This is a fairly serious problem for her, considering her job relies heavily on being able to view and open PDF files we create. She was able to send a PDF file which shows the garbled mess her printer spit out when she printed. Apparently there were pages upon pages of messy garbled text. When documents do print from her, they are usually very slow in printing, taking up to a minute or more to print each page.
    The sample of what she sent me is attached, and can also be found on my MobileMe iDisk at: http://public.me.com/rlcollier (document entitled Print Results.PDF)
    My question really to the community is obviously what might be causing these problems. Its very frustrating not being able to determine if its something we're doing ourselves thats causing some incompatability or corruption in these files, or if its the users systems themselves. I can say that Debra our editor has can have a garbled mess of a 4 page file from us, and then turn around and print a graphic heavy 90 page PDF with ease from Boeing. Our PDF's seem to be the only ones she struggles with. That being said, my inclination is that its something on our end.
    Any ideas of where to start looking? Any help at all would be greatly appreciated and welcomed. Thanks!

    I currently had our editor test printing of some of our files using both Foxit and Adobe Reader (as was suggested) in order to see if either made a difference in her printing ability and here is what she came back with:
    I tried to print out both these pdfs (David's is the one you reworked and Lisa's HESSM-3, both sent yesterday).
    With Adobe:  David's first page printed quickly, but it had errors (part of his pants didn't print, and there's an arbitrary shaded box in the text).  Page 2 didn't print--every time I tried it had a different "offending command" code.  Printing Lisa's HESSM  made it up to page 7 before problems showed up (stock photo only partially printed), and it stopped on page 8 (with the random "offending command" code).
    With Foxit:  Both David's and the HESSM pdfs printed completely and without error...but it took a long time.   David's 2 pages took about 3 to 4 minutes, and HESSM's 16 pages took close to 20 minutes.  The time is in the transfer of data to the printer; the physical printing  goes pretty quickly.
    I cant say that I believe email is the problem, although I cant rule it out. I've tested emailing vs. passing through our workgroup with my supervisor, and it does not make any difference in his ability (or lack of ability) to print our files. He was able to print to a different printer (an HP 4650 as opposed to a 4100) without troubles. He refuses to believe its a printer problem however because PDF files originating from our office are the only ones he has trouble with. Never has he had any trouble with a single PDF file produced from any other source. This is also the case for our editor who only has trouble with PDF files originating from either mine, or my coworkers systems.
    PS: I've attached both files that were referenced by our editor above for viewing/testing.

  • I've been editing images with ease for a long time but now the changes are not being saved.

    I've been editing images with ease for a long time but now the changes are not being saved.
    Also, it is not liking me adding a large ammount of images in one go?

    Remember: we cannot see your machine. There are 9 different versions of iPhoto and they run on 8 different versions of the Operating System. The tricks and tips for dealing with issues vary depending on the version of iPhoto and the version of the OS.  So to get help you need to give as much information as you can. Basic things like :
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. As full a description of the problem as you can. For instance: 'iPhoto won't export' is best explained by describing how you are trying to export, and so on.
    - History: Is this going on long? Has anything been installed or deleted?
    - Are there error messages?
    - What steps have you tried already to solve the issue.
    - Anything unusual about your set up? Or how you use iPhoto?
    Anything else you can think of that might help someone understand the problem you have.

  • Problem with Opening Outline in edit mode in Essbase

    Hi ,
    I am trying to open an outline in edit mode in EAS console, but I am getting the followong error
    "There is a problem with locking the outline object ,error # 1,051,675"
    Kindly help me to fix the issue.
    Thanks,
    Satheesh

    Did you try google?
    locking th eoutline error (Again a new feature of OTN)
    Can you view the outline, if yes try  the steps in Error Opening Database Outline in Edit Mode : "There is a problem with locking the outline object, error # 1,051,675" [ID 1491030.1]
    I've seen this error (not sure about the number) where EAS cannot allocate more memory (for loading the outline). I'll try stopping apps and start this one and see if it fixes the issue.
    Regards
    Celvin
    http://www.orahyplabs.com

  • Resolution problems with Acer aspire 5520

    Hello,
    I'm having trouble making both tty and Xorg resolution be native. I have an nVidia 7000M gpu.With nouveau drivers I managed to get KMS working, but realized Xorg resolution is wrong. If I set the right resolution with xrandr the problem with tiling WMs similar to what I explained in this thread. What is different is mouse can go to the blank part and still be visible, floating windows could be placed in the blank area or resized to full screen, but WM won't ever place windows there. Some tiling WMs are able to utilize the full width of the screen. WMs that do not work like this are dwm, wmii and musca.
    Dwm has problems displaying conky in its bar (cuts of a lot of output). This made me think the problem is not the resolution/driver and, dwm being my favourite WM, helped hiding the problem.
    Wmii utilises the whole screen after change of resolution, but leaves an unmovable vertical line where right edge of a window used to be prior to resolution change.
    Musca just works, but could take some getting used to.
    All floating WMs work perfectly.
    Then I tried nVidia closed source drivers, which worked perfectly in Xorg. The problem was no KMS. I installed and enabled uvesafb, but it did not change the maximum tty resolution from 1024x768.
    The WMs I tried:
    dwm
    fluxbox
    i3
    musca
    snapwm
    spectrwmsubtle
    A lot of others I either did not like, or they required some configuration to even start
    What I tried to fix the problem: various xrandr options (with nouveau), various kernel command line options (with nvidia) and what was mentioned in arch wiki about screen xorg configuration. Nothing I did to "/etc/X11/xorg.conf.d/10-screen.conf" had any effect so I just deleted the file to ease switching between nouveau and nvidia.
    As to which driver I intend to use... I don't care as long as it can display everything correctly.
    P.S.
    /etc/modprobe.d/uvesafb.conf has only one lien
    options uvesafb mode_option=1280x800-32 scroll=ywrap
    cat /sys/bus/platform/drivers/uvesafb/uvesafb.0/vbe_modes
    says top resolution is 1024x768.
    EDIT:
    Just now I've tried every tiling WM I could find, and the ones working are echinus, musca and qtile.
    Last edited by bstaletic (2015-05-30 18:11:25)

    Mr.Elendig wrote:https://wiki.archlinux.org/index.php/Bu … l.2FNVIDIA
    Didn't work.... Already said I tried it

  • Problem with Essbase add-in 9.2.1 and office 2010.

    Hi all,
    we have a problem with Essbase add in 9.2.1 and office 2010.
    Every time when a user opens Excel a new (additionally) euntry in the ad-on menue appears.
    Indeed what happens is, that the add-in is loaded n-times.
    At the first start of excel one time, second two times and so on...
    Thtas's very annoying.
    Can someone confirm this issue or even better know a workaround.
    (A way we have found so far to ease the pain a bit -well only temporary- is to disable the ad-in, close Excel and start it again.
    However with every new start of execel the issues begins again.
    But that's not a solution you can recommand to the end user.)
    Any help is welcome.
    Thank you in advance!
    Andre

    Have a read of the following on Oracle Support - Support for Office 2010 in Essbase Excel Add-In and Smart View [ID 1191235.1]
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Screen Problems with iMac G5 20" (iSight)

    Hello!
    I had the same problem with my iMac G5 20" (iSight) as described by Bob North Apr. 18, 2006 at http://www.macintouch.com/readerreports/imacg5/topic2276.html#apr25:
    """" I repair Apple products, and recently I've seen strange and erratic display problems with the G5 flat-panel (iSight) 17" and 20"...and I am very curious about the origin. The picture will display what I will call "plaid pixles". Upon boot, the dispaly appears normal, but within 5-10 minutes, either at desktop or in ASD, the normal display will "crash" to the "plaid" display. The desktop, or whatever, can still be distinguished in the background, but it is overwashed by the plaid patterns -- which do change slightly, and also cover the full space of the screen. I've seen different scenarios, 3 in 2 weeks, where the symptom is exhibited with no particular failure pattern -- both before and after repair. I've replaced the main logic on one occasion, with no fix...but the 2nd try replaced both display panel and inverter. The display issue was fixed, but the system exhibited lockups only when it reached the destop. Another repair the same issue was seen after replacing the 20" main logic, where the symptom was not present previous. Personal opinion of the late 2005 IMAC flat-panels, in the hardware sense, is the likelihood of component manufacture issues, possibly the main logic boards or the panel displays themselves. Repair of this model, as opposed to the earlier, non-iSight flat-panel 17 and 20" models are extremely difficult -- access to main componenets is blocked by the display panel, which must be removed for each troubleshooting attempt. The internal hardware design is not oriented for repair ease...they are by far the most difficult to work on.
    Any input regarding the display issues? Thanks.""""
    I can't use the mouse or anything else, and after a while the fans start to go on max. This is the second time I encounter this problem within 30 days. What I have noticed is that the day before, the brightness of the screen started to "blink" slightly -- like if the screen tried to adjust itself.
    But I haven't experienced what Bob North describes as the: "Upon boot, the dispaly appears normal, but within 5-10 minutes, either at desktop or in ASD, the normal display will "crash" to the "plaid" display".
    I just restart with the power button and everything is working OK. I made an Extended Hardware test without any problems detected.
    I have been looking for this issue with iMac G5 20" (iSight) and only found it at http://www.macintouch.com/readerreports/imacg5/topic2276.html#apr25 :
    Apr. 18, 2006
    bob north
    I repair Apple products, and recently I've seen strange and erratic display problems with the G5 flat-panel (iSight) 17" and 20"...and I am very curious about the origin. The picture will display what I will call "plaid pixles". Upon boot, the dispaly appears normal, but within 5-10 minutes, either at desktop or in ASD, the normal display will "crash" to the "plaid" display. The desktop, or whatever, can still be distinguished in the background, but it is overwashed by the plaid patterns -- which do change slightly, and also cover the full space of the screen. I've seen different scenarios, 3 in 2 weeks, where the symptom is exhibited with no particular failure pattern -- both before and after repair. I've replaced the main logic on one occasion, with no fix...but the 2nd try replaced both display panel and inverter. The display issue was fixed, but the system exhibited lockups only when it reached the destop. Another repair the same issue was seen after replacing the 20" main logic, where the symptom was not present previous. Personal opinion of the late 2005 IMAC flat-panels, in the hardware sense, is the likelihood of component manufacture issues, possibly the main logic boards or the panel displays themselves. Repair of this model, as opposed to the earlier, non-iSight flat-panel 17 and 20" models are extremely difficult -- access to main componenets is blocked by the display panel, which must be removed for each troubleshooting attempt. The internal hardware design is not oriented for repair ease...they are by far the most difficult to work on.
    Any input regarding the display issues? Thanks.
    Apr. 19, 2006
    Robert Mohns
    bob north describes: "...recently I've seen strange and erratic display problems with the G5 flat-panel (iSight) 17" and 20"...and I am very curious about the origin. The picture will display what I will call "plaid pixles". Upon boot, the dispaly appears normal, but within 5-10 minutes, either at desktop or in ASD, the normal display will "crash" to the "plaid" display. The desktop, or whatever, can still be distinguished in the background, but it is overwashed by the plaid patterns -- which do change slightly, and also cover the full space of the screen."
    Does it look anything like this?
    http://downwardspiral.net/gallery/pbg4-display
    My nearly 3 year old Titanium PowerBook G4 just did this one day, out of the blue. The problem went away after a few minutes, but I had already taken photos. Thanks to those photos, Apple gave the powerbook a new logic board.
    (This PowerBook has had its logic board replaced twice, a new optical drive, and a cracked case edge replaced. AppleCare has more than paid for itself. Despite the occasional problems, I remain very happy with this machine. I'm sure I'd be much less happy if I had not bought AppleCare!)
    Hubert

    Hubert Frank,
    To Apple Discussions!
    What troubleshooting methods have you tried to solve your issue?
    The knowledgeable users will need this info to avoid the "been there, done that" senerios.
    Have you tried the methods mentioned in the following Knowledge Base Article?
    http://docs.info.apple.com/article.html?artnum=301283 Troubleshooting when there's no picture on the display
    Do you have AppleCare? If so, have you contacted them? If so, outcome?

  • Problems with viewlink

    I have been having some problems with a viewlink lately. First it wouldn´t make the where clause and I got a message saying it was restoring the default where clause and an empty field for the view link where clause. After restarting Jdeveloper and trying a few times I suddenly got the create view link wizard to make the where clause for me but after the last step in the wizard I got a message saying: "Could not complete View Object Modifications because it would result in an invalid document".
    However the viewlink was created. If I open a Module and click on the "Data Model" tab I can see the link in the"Available View Objects:" window but I am not able to shuttle it over to the "Data Model" window and I am not standing on the wrong viewobject in the "Data Model" window :). If anyone has had a similar problem before and solved it I would appreciate if you let me know how you solved it. I am thinking about just adding it to trough the source of the module but havent tryed it yet. I would however make me feel more at ease if I knew what is causing this so I am hoping someone could tell me.

    Stephen,
    if the problem is that you cannot execute the query in teh BC4J tester, then this is because it doesn't support testing with parameters.
    Another way of doing what you want is to create two EO and then have the VO select the attributes from both. However, to do the filtering you still need to add parameters to the query.
    Frank

  • Problem with machine rebooting. Essbase 11.1.1 installation.

    Hi all,
    I have a problem with my Essbase 11.1.1 installation. In a nutshell when I reboot the machine I can't log in EAS anymore. The only way I found out is just reconfigur EPM system after rebooting but It's just a work around.
    Thanks for helping

    Hi user,
    AsI read between lines, it seems that you previously were able to access EAS so your installlation is not the problem but you accessing to EAS isthe problem. As you mentioned you are having problems accessing it after rebooting the server, I think it could be a prolem with the services. Please try stopping all the services in this order:
    administration servicese
    Essbase services 11.1.1.1_Hypservice_1
    Foundation
    Openldap
    and then restart them from bottom to top. Let me know.
    J.

  • Problem with OCS   connection.

    Hi all
    Since two days we encounter some problems with OCS for the connection.
    Principally by accessing OCS Content Services with the web client and by Oracle Drive.
    We've tested using Content Services Web Services it's OK
    From the web client :
    Clear the private data (cookies ) from Firefox .
    Access following URL : http://hera.gva.spg.ch:7777/content/app/explorerPage.jspx
    Normally we should be redirected to the SSO Login page - We have a "No response from Application Web Server"
    The workaround is : Access directly the SSO Login page, authenticate (to put the cookie in the browser), return to http://hera.gva.spg.ch:7777/content/app/explorerPage.jspx page : it's OK
    We could work with files in the Web File Explorer.
    Follwoing URLs have also problems :
    http://hera.gva.spg.ch:7777/pls/portal
    http://hera.gva.spg.ch:7777/content/dav/
    This URL has no problems:
    http://hera.gva.spg.ch:7777/dav_portal/portal/
    When accessing by the web services : we connect then put some files... it's OK
    Using Oracle Drive, idem, could not connect.
    Checking logs :
    nothing in OC4J logs, nothing in mod_plsql logs
    I see the following errors in webcache logs :
    [26/Jan/2009:15:39:45 +0100] [req-info] [ecid: 98636183815,0] [client: 10.1.200.61] [host: hera.gva.spg.ch:7777] [url: /content/app/explorerPage.jspx]
    [26/Jan/2009:15:39:45 +0100] [error 11364] [ecid: 98636183815,0] Network error response is returned.
    [26/Jan/2009:15:39:45 +0100] [error 11385] [ecid: 98636183815,0] The request fails because the service is unavailable.
    We also have some core dump in the Oracle HOME
    The command :
    strings core.* | grep ERROR
    ... gives me some errors like this :
    ********** INTERNAL ERROR 17271 **********
    ERROR-%u
    *** KGL INTERNAL ERROR 17070 ***
    *** KGL INTERNAL ERROR 17068 ***
    ***---> Level link ERROR [%d] [%d] <---***
    ********** Internal heap ERROR %d addr=%p *********
    ********** Internal heap ERROR %d addr=%p *********
    ***** Internal heap ERROR %s addr=%p ds=%p *****
    LRU ERROR: LINK = %p
    ERROR:Bad magic number or prv %p %p
    ERROR, BAD FIRST EXTENT (%p)
    ERROR, BAD NEXT EXTENT (%p, %p, %p)
    ERROR, INVALID SUBHEAP DESCRIPTOR (%p)
    ERROR, BAD SUBHEAP DESCRIPTOR (%p)
    ERROR, BAD TYPE %lX
    ERROR, BAD SIZE IN NEXT CHUNK (%lX)
    ERROR, INACCESSIBLE NEXT NEXT CHUNK HEADER %8lx
    ERROR, INACCESSIBLE NEXT CHUNK HEADER %8lx
    ERROR, BAD SIZE (%lX)
    ERROR, BAD MAGIC NUMBER (%lX)
    ERROR, INACCESSIBLE CHUNK HEADER %8lx
    ERROR extent at %p contains wrong ds %p
    ERROR, BAD EXTENT ADDRESS (%p)
    ERROR, BAD EXTENT ADDRESS IN DS(%p)
    ERROR
    OCIERROR
    ERROR-%u
    *********** Internal ERROR %s [0x%lx] ***********
    ERROR: Heap not initialized (flags=0x%lx)
    ERROR:Bad prv 0x%lx
    ERROR, BAD HEADER TYPE 0x%x
    ERROR, BAD SIZE (%lx)
    ERROR, BAD MAGIC NUMBER (%lx)
    ERROR, BAD BATCH-HEADER for batch %u [%lx][%lx]
    ERROR, BATCH-HEAP MISMATCH for batch %u [%lx][%lx]
    ERROR, ZERO-SIZED CHUNK addr=%lx
    ERROR, BITVEC-FREELIST MISMATCH %u [%u][%u]
    skgmmap(2): ERROR where=%d, ret=%d = vlmmap(wcb=%p, offset=%d / length=%d, saddr=%p)
    skgmmap_ro(2): ERROR where=%d, ret=%d = vlmmap(wcb=%p, offset=%d / length=%d, saddr=%p)
    skgmvaddress(4): ERROR ret=%d = vlmgetvaddr(wcb=%p, offset=%d / length=%d, saddr=%p)
    ERROR: Unable to attach to VLM segment at %p: window size=0x%lx size=0x%llx
    dataLen(ERRORMSGREP) < 4
    CKR_DEVICE_ERROR
    CKR_GENERAL_ERROR
    OraDAV: Forcing HTTP_INTERNAL_SERVER_ERROR. NLS href conversion error while converting href %s to a utf8 value.
    DESIGN ERROR: dav_validate_request called with depth>0, but no response ptr.
    INTERNAL ERROR: versioned resource with no versioning provider?
    DESIGN ERROR: attempted to product an activelock element from a partial, indirect lock record. Creating an XML parsing error to ease detection of this situation: <
    DESIGN ERROR: a liveprop provider defined a property, but did not respond to the insert_prop hook for it.
    INTERNAL DESIGN ERROR: resource must define its URI.
    INTERNAL DESIGN ERROR: the lockdb was opened readonly, but an attempt to save locks was performed.
    INTERNAL DESIGN ERROR: DAV_GETLOCKS_COMPLETE is not yet supported
    DESIGN ERROR: dav_dbm_get_statefiles() returned inconsistent results.
    DESIGN ERROR: a mix of repositories was passed to copy_resource.
    DESIGN ERROR: a mix of repositories was passed to move_resource.
    DESIGN ERROR: walker should have been called with padding in the URI buffer.
    DESIGN ERROR: walker called to walk locknull resources, but a lockdb was not provided.
    INTERNAL ERROR: PROP_KEY_BUFSIZE overflow
    INTERNAL ERROR: dead props are unretrievable
    INTERNAL ERROR: propcount is less than 0
    INTERNAL DESIGN ERROR: lock resource expected to have docid
    ORADAV INTERNAL ERROR: DAV_GETLOCKS_COMPLETE is not yet supported
    ORADAV ERROR: unexpected failure fetching lock data
    INTERNAL DESIGN ERROR: failure to find lock by locktoken
    INTERNAL DESIGN ERROR: lock resource expected to have lockcount
    INTERNAL DESIGN ERROR: could not create a null resource for locknull
    INTERNAL DESIGN ERROR: Failed to retrieve doc id while locking resource
    ORADAV ERROR: failure in dav_ora_get_direct_lock_resource
    ORADAV ERROR: failure attempting to find lock by locktoken
    ORADAV ERROR: failure to locate lock by locktoken
    ORADAV ERROR: lock resource expected to have docid
    OraDAV ERROR: walker fetch returned error
    DESIGN ERROR: walker should have been called with empty cursor handle.
    DESIGN ERROR: walker should have been called with padding in the URI buffer.
    DESIGN ERROR: walker called to walk locknull resources, but a lockdb was not provided.
    OCI returned OCI_ERROR, but no additional error information available
    OCI returned OCI_ERROR, but no message available for status %d
    OCI returned OCI_ERROR; error %d getting error message
    Any answer is welcome to help me in my investigations
    Regards

    If it did work before, this kind of problem should be treated through a SR with Oracle support.

  • Problem with cue point from After Effects to Flash (CS5.5)

    Hello,
    anyone has, or has not problems reading, in Falsh, cue points included with After Effects? (Navigartion cue points).
    It is possible export from Flash movie in  .flv format? (Both versione CS5.5).
    Thank you.

    No I don't believe it's the footage, as I've been able to transfer the same files on my school computer and use it with ease.It's just any type of footage, if I attempt to drag any of my imported files (whether they're images of any kind or .mp4, .mov, .wav, .mp3) just as I would click and hold the file, my cursor turns into the Mac loading ball. Perhaps is there something these programs require such as Java? I'm not sure if it's related, but I've also not been able to play some games via Steam that I have been able to play in the past with the same system.

Maybe you are looking for