Software download shows code dump and hangs

Customer has reported that when trying to download the Oracle Business Process Management 10gR3 (10.3.2) Standalone software for Solaris Operating System (SPARC 64-bit) the browser shows a code dump and downloads hangs.
http://www.oracle.com/technology/software/products/bpm/index.html

Hi,
Yes I have tried downloading myself but experience the same issue.
Thanks

Similar Messages

  • I purchaised MPV's Core Numbers '09 101 software online yesterday. The software only shows the toutorial, and I couldn't find the actual spread sheet. I have taken a long time watching the toutorial. Please help me on how I can find the actual program.

    I purchaised MPV's Core Numbers '09 101 software online yesterday. The software only shows the toutorial, and I couldn't find the actual spread sheet. I have taken a long time watching the toutorial. Please help me on how I can find the actual spread sheet to work on. Thank you in advance

    Visit the developer site for help.
    https://www.appomator.com/support/

  • Process chain executed synchronously produces dump and hangs

    Process chain (RSPC) being executed synchronously hangs on a step (not first) with yellow status. Analysis of ST22 shows there is dump: RAISE_EXCEPTION
    The chain loads data from flat files on frontend to several characteristics (attributes and texts). All the steps are sequential.
    After the start first file is loaded successfully (info package), subsequent data transfer process has no errors too. But the second info package becomes yellow and hangs just after ( after some time timeout occurs and the step becomes red). In ST22 i see dump, text of the dump is below. Analysis of the dump reveals that 'GUI_UPLOAD' FM doesn't work during execution of the second info-package.
    The chain looks as follows:
    1. Info package 1
          V
    2. Data transfer process 1
          V
    3. Info package 2              <-------   hangs here because of dump
          V
    4. Data transfer process 2
         V
    Hangs on step 3 (infopackage 2).
    Text of the dump:
    Runtime Errors         RAISE_EXCEPTION
    Date and Time          10.10.2010 19:07:59
    |Short text                                                                                |
    |    Exception condition "NOT_SUPPORTED_BY_GUI" raised.                                            |
    |What happened?                                                                                |
    |    The current ABAP/4 program encountered an unexpected                                          |
    |    situation.                                                                                |
    |Error analysis                                                                                |
    |    A RAISE statement in the program "CL_GUI_FRONTEND_SERVICES======CP" raised the                |
    |     exception                                                                                |
    |    condition "NOT_SUPPORTED_BY_GUI".                                                             |
    |    Since the exception was not intercepted by a superior                                         |
    |    program, processing was terminated.                                                           |
    |                                                                                |
    |    Short description of exception condition:                                                     |
    |                                                                                |
    |                                                                                |
    |    For detailed documentation of the exception condition, use                                    |
    |    Transaction SE37 (Function Library). You can take the called                                  |
    |    function module from the display of active calls.                                             |
    |    -                                                                                |
    |How to correct the error                                                                          |
    |                                                                                |
    |    If the error occures in a non-modified SAP program, you may be able to                        |
    |    find an interim solution in an SAP Note.                                                      |
    |    If you have access to SAP Notes, carry out a search with the following                        |
    |    keywords:                                                                                |
    |                                                                                |
    |    "RAISE_EXCEPTION" " "                                                                         |
    |    "CL_GUI_FRONTEND_SERVICES======CP" or "CL_GUI_FRONTEND_SERVICES======CM00X"                   |
    |    "FILE_EXIST"                                                                                |
    |                                                                                |
    |    or                                                                                |
    |                                                                                |
    |    "CL_GUI_FRONTEND_SERVICES======CP" "NOT_SUPPORTED_BY_GUI"                                     |
    |                                                                                |
    |    or                                                                                |
    |                                                                                |
    |    "RSBATCH1 " "NOT_SUPPORTED_BY_GUI"                                                            |
    |    If you cannot solve the problem yourself and want to send an error                            |
    |    notification to SAP, include the following information:                                       |
    |                                                                                |
    |System environment                                                                                |
    |    SAP-Release 701                                                                               |
    |                                                                                |
    |                                                                                |
    |    SAP kernel....... 701                                                                         |
    |                                                                                |
    |    Patch level. 69                                                                               |
    |    Patch text.. " "                                                                              |
    |                                                                                |
    |User and Transaction                                                                              |
                                                                                    |
    |    Program............. "CL_GUI_FRONTEND_SERVICES======CP"                                       |
    |    Screen.............. "SAPMSSY0 1000"                                                          |
    |    Screen Line......... 6                                                                        |
    |                                                                                |
    |Information on where terminated                                                                   |
    |    Termination occurred in the ABAP program "CL_GUI_FRONTEND_SERVICES======CP" -                 |
    |     in "FILE_EXIST".                                                                             |
    |    The main program was "RSBATCH1 ".                                                             |
    |                                                                                |
    |    In the source code you have the termination point in line 8                                   |
    |    of the (Include) program "CL_GUI_FRONTEND_SERVICES======CM00X".                               |
    |Source Code Extract                                                                               |
    |Line |SourceCde                                                                                |
    |    1|method FILE_EXIST.                                                                          |
    |    2|* ...                                                                                |
    |    3|                                                                                |
    |    4|  CLASS CL_GUI_CONTROL DEFINITION LOAD .                                                    |
    |    5|                                                                                |
    |    6|*-check if valid GUI is available----
                             |
    |    7|  IF IS_VALID_HANDLE( ) NE 0 AND cl_gui_control=>www_active IS INITIAL.                     |
    |>>>>>|    RAISE NOT_SUPPORTED_BY_GUI.                                                             |
    |    9|  ENDIF.                                                                                |
    |   10|                                                                                |
    |   11|* check parameter, wild characters not allowed                                              |
    |   12|  IF FILE IS INITIAL OR FILE CA '*<>|"'.                                                    |
    |   13|  MESSAGE 'WRONG PARAMETER: FILE_NAME' TYPE 'I' RAISING WRONG_PARAMETER.                    |
    |   14|    EXIT.                                                                                |
    |   15|  ENDIF.                                                                                |
    |   16|                                                                                |
    |   17|* special handling for SAPGUI for HTML                                                      |
    |   18|  IF CL_GUI_CONTROL=>WWW_ACTIVE IS NOT INITIAL.                                             |
    |   19|                                                                                |
    |   20|    DATA: rc type i, filename(4096) type C.                                                 |
    |   21|    filename = file.                                                                        |
    |   22|    CALL FUNCTION 'ITS_QUERY'                                                               |
    |   23|      EXPORTING                                                                             |
    |   24|        filename = FILEname                                                                 |
    |   25|        query    = 'FE'                                                                     |
    |   26|      IMPORTING                                                                             |
    |   27|        return   = rc.                                                                      |
    |Active Calls/Events                                                                               |
    |No.   Ty.          Program                             Include                             Line   |
    |      Name                                                                                |
    |    8 METHOD       CL_GUI_FRONTEND_SERVICES======CP    CL_GUI_FRONTEND_SERVICES======CM00X     8  |
    |      CL_GUI_FRONTEND_SERVICES=>FILE_EXIST                                                        |
    |    7 FUNCTION     SAPLSFES                            LSFESU16                               96  |
    |      GUI_UPLOAD                                                                                |
    |    6 METHOD       CL_GUI_FRONTEND_SERVICES======CP    CL_GUI_FRONTEND_SERVICES======CM013     4  |
    |      CL_GUI_FRONTEND_SERVICES=>GUI_UPLOAD                                                        |
    |    5 METHOD       CL_RSDS_ACCESS_GUI_UPLOAD=====CP    CL_RSDS_ACCESS_GUI_UPLOAD=====CM001    74  |
    |      CL_RSDS_ACCESS_GUI_UPLOAD=>IF_RSDS_EXTRACT_DIRECT~EXTRACT                                   |
    |    4 FUNCTION     SAPLRSDS_BACKEND                    LRSDS_BACKENDU01                      304  |
    |      RSDS_DATA_PULL                                                                              |
    |    3 FUNCTION     SAPLRSSM                            LRSSMU17                             5422  |
    |      RSSM_CALL_RSAR_DATA_REQUEST_1                                                               |
    |    2 FORM         RSBATCH1                            RSBATCH1                             1327  |
    |      START                                                                                |
    |    1 EVENT        RSBATCH1                            RSBATCH1                              498  |
    |      START-OF-SELECTION                                                                          |

    If i load the step manually it works. The hung step is possible to re-execute after it gets red (with context menu) and it works then. After that it hangs on the 3rd info-package and so on.
    The file lays on a network drive, but i suspect it doesn't matter

  • Error Code 2755 and hang-up at "Registering Modules"

    So a few days ago I decided to download iTunes 7, and everything in the installation seemed to be going fine until it stopped for about half an hour at "Registering Modules: iPodUpdaterExt.dll". I cancelled the installation, but iTunes worked anyway, and I thought that maybe it wouldn't really be an issue. I was wrong.
    I can't update the software on my Nano to the 1.2 version because the installation never really finished. And when I tried a few more times to re-download the installation files, it didn't work, gave me this error code 2755, and a little note popped up saying the installation encountered an unexpected error before it could be completed.
    If anyone could give me any advice, that'd be fantastic.
    Dell Dimension E510   Windows XP  

    This is the exact same problem that I'm having currently, Right now, I'm in the installation process for iTunes 7 and it has been taking a while to move on past "Registering Modules". I did the same thing before and cancelled the installation because it wasnt moving on, and later opened iTunes 7 to find it worked fine. Unfortunately, it didnt allow my iPod to get updated and nopw I have iPod games that are sitting around and need to get onto my iPod. Can someone please explain what is going on with the "Registering Modules" process of the installation?

  • Is there any good Linux software to show slideshows, videos and more?

    Hi.
    We are trying to replace windows and apple on all computers in our church. Now, I know we will most likely hang on to some of our macs for video editing purposes, but we have identified several computers that runs Windows that can easily use Linux.
    We have come across one nut that we have yet to solve, and I would hope that someone would have some input on how to do this.
    In the lobby, we have a windows computer hooked up to a tv. On the screen we are showing Slideshows with information on upcoming events, videos from meetings, twitter and also a list of all the Buses leaving from the nearby bus stop. The latter one is hooked to "Västtrafiks" (our local bus company) API, and update in real time.
    All this is very easily done in WPF (Windows Presentation Foundation). Since there is no support in mono for this yet, we are looking to replace the application all together. However, we can't seem to find a suitable replacement. We have all been looking for a while, and we are starting to think that we may have to write our own program in Java.
    Now, this would be a huge time sink, so I hope that some of you might have some insight about a software that could fulfill our needs.
    The basic requirements are Image slideshow, background Music, Video slideshow, twitter feed, and perhaps rss feed integration. Now, the ability to show Västtrafiks time table would be neat, but I think we can hack that ourselves if we find a suitable open source solution for the rest.
    I am going to try to get a video on what it looks like today, to get a better understanding about what it is.

    skottish wrote:
    Before this thread drifts, the primary goal is here:
    kveras wrote:In the lobby, we have a windows computer hooked up to a tv. On the screen we are showing Slideshows with information on upcoming events, videos from meetings, twitter and also a list of all the Buses leaving from the nearby bus stop. The latter one is hooked to "Västtrafiks" (our local bus company) API, and update in real time.
    I have some questions: How is the formatting on this? I mean, is the slideshow, video(s), feeds and such all on screen at one time like an American cable newscast?
    Yes, if I understand you correct.
    A bit more information. Today we use a Dropbox folder to add media, like videos and images etc. After every loop that the software has made it stops to check if the folder has any new files. If it has, it automatically includes it in the feed, as well as deletes any media that has been removed from the folder. So everything is managed by uploading to the folder from anywhere, the box itself is headless and is only running this single output.
    Today we only show the output on one single screen. But it may be interesting to do this over several screens in the future.
    We could use openshot and manually edit the feed etc, but that takes away the ease of use. The idea is that anyone with something to say should be able to upload it without any tech skills. Right now, we are thinking about porting the functionality to Java, however I think that this would be at least 50 work hours to get it functional.

  • Download Edge Code, Inspect, and Phonegap OSX 10.6.8

    How can I download all three free apps: Adobe Edge Code CC, Adobe Edge Inspect CC, and PhoneGap all for Mac OSX 10.6.8?
    I have seen numerous places where it shows that 10.6.8 is supported for these apps, however, through Creative Cloud (CC), it says that my operating system is no longer supported. There must be a way to download them without going through the Creative Cloud website (like a separate download link).
    Thank you!

    Thank you!
    However, aren't Edge Code and Edge inspect NOT trial-based? Meaning that they wont expire/stop working after 30 days or so.
    Also, I did not find PhoneGap in that link. I know the build version is part of Adobe too but the regular version from Phonegap.com downloads as a zip that I can't open. I am not sure if Phonegap is for Mac or not or if I am doing something wrong.
    Is there any way to make the webpages we build on Edge Code mobile friendly? In other words, make it so their is a mobile version (not desktop version view) of the site when one visits that webpage on a mobile browser.
    I appreciate your help! Thanks!

  • Reports builder shows startup screen and hangs...

    hi all.
    my reports builder does normally start when i double click its icon, and shows the welcome splash screen. but then nothing happens anymore. the process is being shown in the task manager, but nothing more.
    i installed some oracle 6.x applications AFTER the installation of iDS90200, so might this be the problem?
    thank you for your help.
    Josh

    Hi Joshua,
    This depends on your environment, so very difficult to pin-point the problem. However, you can check your system PATH to make sure it points to the iDS JDK directories, eg,
    D:\Oracle\iDS10g\jdk\jre\bin\classic;D:\Oracle\iDS10g\jdk\jre\bin;D:\Oracle\iDS10g\jdk\jre\bin\client;D:\Oracle\iDS10g\jdk\bin;D:\Oracle\iDS10g\jlib
    Navneet.

  • Ipad showing itunes symbol and hanged up

    hi,
    my i pad air is showing the symbol of itunes and is frozen.cant change the option .once when the i pad is switched off and switched on again,the same symbol persists.i am finding it to be very frustrating
    thanks

    IPAD IS IN RECOVERY MODE
    1. Turn off iPad
    2. Turn on computer and launch iTunes (make sure you have the latest version of iTune)
    3. Plug USB cable into computer's USB port
    4. Hold Home button down and plug the other end of cable into docking port.
    DO NOT RELEASE BUTTON until you see picture of iTunes and plug
    5. Release Home button.
    ON COMPUTER
    6. iTunes has detected iPad in recovery mode. You must restore this iPad before it can be used with iTunes.
    7. Select "Restore iPad"...
    Note:
    1. Data will be lost if you do not have backup
    2. You must follow step 1 to step 4 VERY CLOSELY.
    3. Repeat the process if necessary.

  • My Canon MG 5220 shows Code C000 and Turn off and wait a little. I did turn it off but the message

    What can I do to get the printer work again?

    Hi ClemensVerbeek!
    So that the Community can help you better, we will need to know what Computer Operating System you're using (Windows XP/Vista/7/8 or Mac 10.x).
    Any other details you'd like to give will only help the Community better understand your issue!
    If this is an urgent support need, please CLICK HERE to reach our friendly Technical Support Team by phone or email.
    Thanks and have a great day!

  • N95 Crashes and Hangs

    help please. My N95 crashed more than five times within 24 hours of my getting it. It would just show the logo and hang without rebooting or prompting to indicate whats gone wrong. For a while, removing and replacing the battery and SIM made it boot up again -- only to crash again a few hours after.
    The N95 sent me running to the nearest nokia service center where they re-installed the software and managed to make it boot up again. But just when I thought the problem was solved, the darn phone crashed again when I tried to put in a new contact (ironically, the number of nokia repair!) The phone is now back in its box while I contemplate returning it to the store.
    Thing is, I haven't even tried half the applications. Just setting up contacts seems enough to make the whole system collapse. This is the most unstable phone I've ever used!
    Is my phone a lemon or is anyone else having the same problems? What's causing the crash and what should I do?

    16-Apr-200704:23 AM
    gin95 wrote:
    help please. My N95 crashed more than five times within 24 hours of my getting it. It would just show the logo and hang without rebooting or prompting to indicate whats gone wrong. For a while, removing and replacing the battery and SIM made it boot up again -- only to crash again a few hours after.
    The N95 sent me running to the nearest nokia service center where they re-installed the software and managed to make it boot up again. But just when I thought the problem was solved, the darn phone crashed again when I tried to put in a new contact (ironically, the number of nokia repair!) The phone is now back in its box while I contemplate returning it to the store.
    Thing is, I haven't even tried half the applications. Just setting up contacts seems enough to make the whole system collapse. This is the most unstable phone I've ever used!
    Is my phone a lemon or is anyone else having the same problems? What's causing the crash and what should I do?
    16-Apr-200704:23 AM
    gin95 wrote:
    help please. My N95 crashed more than five times within 24 hours of my getting it. It would just show the logo and hang without rebooting or prompting to indicate whats gone wrong. For a while, removing and replacing the battery and SIM made it boot up again -- only to crash again a few hours after.
    The N95 sent me running to the nearest nokia service center where they re-installed the software and managed to make it boot up again. But just when I thought the problem was solved, the darn phone crashed again when I tried to put in a new contact (ironically, the number of nokia repair!) The phone is now back in its box while I contemplate returning it to the store.
    Thing is, I haven't even tried half the applications. Just setting up contacts seems enough to make the whole system collapse. This is the most unstable phone I've ever used!
    Is my phone a lemon or is anyone else having the same problems? What's causing the crash and what should I do?
    My new N95 locks up, heats up and drains battery charge quickly. This usually happen when I am browsing the web and it always hang half way. Very disappointed...!!!

  • Description showing code characters

    I've finally got my podcast working through the free wordpress.com blog, feedburner and archive.org, but when I do the itunes test, the description shows code characters and I can't seem to get rid of it no matter what I try.  It looks like this...<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=dnsshow.wordpress.com&blog=86051393&post=70&subd =dnsshow&ref=&feed=1.
    I have combed the internet and feel like I've tried everything.  From what I gather, it's a wordpress thing, but no one has an answer on how to get rid of it on the wordpress forums.   Any help would be greatly appreciated, as I don't want to submit this to iTunes looking like it is.  Thanks in advance!

    First of all thanks for the quick answers!  I have read some of your other posts and are very knowledgeable about iTunes podcasts.
    In any case, I decided to just use blotspot and forget the Wordpress.  It looks right now in the (http://feeds.feedburner.com/blogspot/UUgur) when doing a test in iTunes.  You're right that the image for the podcast is not showing up as it was on the archive.org server and now has disappeared which lead me to my question. 
    Do you suggest bringing the newly created mp3 file into iTunes and attaching art to the mp3 file or just using a link in feedburner for the podcast like I had done but archive.org apparently deleted my file?  If I'm not making myself clear, what is the proper way to get art on one's podcast for iTunes?  Again, thx for the help.

  • Downloaded Edge Code (Preview)

    I downloaded Edge Code (Preview) and I still have the old application icon in my applications folder. What am I doing wrong? Or where do I find the updated version?

    Do you mean you're now seeing two icons in Applications?  If you're only seeing one icon, it is probably the icon for the newest version (it should replace the previous version in place).  Is there something that makes you think it's still the old version?
    Btw, I assume you're using the Creative Cloud desktop application to download Edge Code -- is that correct?  What OS are you on?
    - Peter

  • TS1424 I've downloaded a TV show on itunes and it is freezing up after 10 minutes. I see an error code 3256 - anyone have any ideas about how to get it unstuck?

    I've downloaded a TV show on itunes and it is freezing up after 10 minutes and won't play beyond that point. It says error=3256. Any ideas on how to fix this? thanks!

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a Fusion Drive or a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • HT1338 i have downloaded the new updates and restart the computor. The software updates still show the same software to be updated. I could not update itune 11.0.1 version

    HI,
    I have issue in updating software for my Macbook Pro and it kept showing the same software to be updated. I have restart the computer after install the software and still showing the same issue. In addition, i could not update the new itune version and every website i goes to it will show a msg indicating that the website is might not be the real website and would ask me to choose; show certificate, cancel or continue. This applies to the apple website as well.
    Pls help and advice.

    What version of OS X are you running?
    What updates are you downloading and from where?

  • I purchased 20 copies of the King of Math App in VPP and downloaded the codes but it doesn't show up in Apple Configurator. What do I do now?

    I purchased 20 copies of the King of Math App in VPP and downloaded the codes but it doesn't show up in Apple Configurator. What do I do now?App not showing

    If you click View, Show Sidebar you will see the other libraries under Shared in the left hand column. Click on the Library you want and you can expand it to select Music, Movies etc. Select whatever items you want and click import if you want to move them to your Library.
    You will have to have all computers authorised with the relevant Apple ID's
    Store  >  Authorise this computer...
    This is separate from the Home Sharing username and password and is to allow playing of DRM Movies, TV shows etc from the other computer.
    If both Computers use the same apple id this step is not required.

Maybe you are looking for