WUT-100

I'm calling client_image.read_image_file to download to client from a blob column .
I'm getting a 0 byte file in workarearoot directory
console shows WUT-100
Has anyone any idea why dbcolumn-file doesn't work correctly?
==webutil 105 unix host
==webutil.cfg
transfer.database.enabled=TRUE
transfer.appsrv.enabled=TRUE
transfer.appsrv.workAreaRoot=/u05/iris/tmp
#List transfer.appsrv.read.<n> directories
transfer.appsrv.read.1=/u05/iris/tmp
#List transfer.appsrv.write.<n> directories
transfer.appsrv.write.1=/u05/iris/tmp
transfer.appsrv.accessControl=FALSE
==console
2005-Jan-17 01:06:04.643 WUT[getProperty()] Getting property WUT_STATUS
2005-Jan-17 01:06:04.653 WUT[getProperty()] Value of WUT_STATUS=FREE
2005-Jan-17 01:06:05.194 WUT[setProperty()] Setting property WUT_FILE_INFO to |19598|N|Y|Download from Server in progress|Please wait
2005-Jan-17 01:06:05.234 ERROR>WUT-100 [FileTransfer.defineFile()] Bad file information string: |19598|N|Y|Download from Server in progress|Please wait
2005-Jan-17 01:06:09.370 WUT[FileTransfer.defineFile()] java.lang.NumberFormatException: N
2005-Jan-17 01:06:10.491 WUT[DownloadAgent()] File Opened:19598
2005-Jan-17 01:06:11.623 WUT[DownloadAgent.setData()] File Closed
2005-Jan-17 01:06:12.695 WUT[getProperty()] Getting property WUT_STATUS
2005-Jan-17 01:06:12.705 WUT[getProperty()] Value of WUT_STATUS=FREE
2005-Jan-17 01:06:13.255 WUT[setProperty()] Setting property WUT_FILE_INFO to |0|S|N||
2005-Jan-17 01:06:13.276 ERROR>WUT-100 [FileTransfer.defineFile()] Bad file information string: |0|S|N||
2005-Jan-17 01:06:15.08 WUT[FileTransfer.defineFile()] java.lang.NumberFormatException: S
2005-Jan-17 01:06:15.859 WUT[getProperty()] Getting property WUT_FILE_INFO
2005-Jan-17 01:06:15.869 WUT[getProperty()] Value of WUT_FILE_INFO=19598|2

Repost
Has anyone webutil filetransfers running successfully on unix ?

Similar Messages

  • Webutil: WUT-100 error

    Hello,
    I'm getting WebUtil WUT-100 error, thus:
    Loading http://2ua300tw.epcor.ca:8890/forms90/webutil/webutil.jar from JAR cache
    Loading http://2ua300tw.epcor.ca:8890/forms90/java/f90all_jinit.jar from JAR cache
    RegisterWebUtil - Loading Webutil Version 1.0.2 Beta
    Loading http://2ua300tw.epcor.ca:8890/forms90/webutil/jacob.jar from JAR cache
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 9.0.4.0
    2004-Aug-03 11:47:02.826 ERROR>WUT-100 [FileTransfer.defineFile()] Bad file information string: |0|S|Y|File Upload|Loading . Please wait...
    I've checked the discussion forum, but I couldn't find any discussion relating to this error. Does anyone know how to resolve this problem?
    Thanks,
    gk

    Harm,
    I get the same error here, but my file is not being uploaded.
    You need to provide a string to the progressSubtitle parameter of the client_to_as_with_progress function, not only ''.
    This works for me.
    HTH
    Gerald

  • Webutil_file_transfer.AS_To_Client_With_Progress

    Hi,
    I'm using webutil on Forms 6i.. When using webutil_file_transfer.AS_To_Client_With_Progress to download files from the server using the following comand :
    v_boolean := webutil_file_transfer.AS_To_Client_With_Progress
         (:b1_1.client_file_path||:b2_1.file_name,
    :b1_1.server_file_path||:b2_1.file_name,
    NULL,
    NULL);
    I get either a
    WUT-118 error - Application server file does not exist or is of zero length
    (no file transfer occurs)
    or
    WUT-100 error - Bad file information string c:\temp\file_name.log|88570|N|Y||
    (The error comes up but the file actually transfers?)
    In both cases the files do exist and I have access rights to both directories.
    Any clues/fix much appreciated

    Hi,
    You can try as follows in your webutil.cfg file:
    transfer.database.enabled=TRUE
    transfer.appsrv.enabled=TRUE
    transfer.appsrv.workAreaRoot=
    transfer.appsrv.accessControl=FALSE
    transfer.appsrv.read.1=
    transfer.appsrv.write.1=
    In formsweb.cfg you might have:
    [webutil]
    WebUtilArchive=frmwebutil.jar,jacob.jar
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    WebUtilDispatchMonitorInterval=5
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    baseHTMLjinitiator=webutiljini.htm
    baseHTMLjpi=webutiljpi.htm
    archive_jini=frmall_jinit.jar,frmwebutil.jar,jacob.jar
    archive=frmall.jar
    lookAndFeel=oracle
    userid=user/pwd@mbcprod10g
    width=100%
    height=100%
    then try with the following link:
    http://localhost:8889/forms/frmservlet?config=webutil&form=<Form_Name>
    Hopefully it will work.
    Regards
    Kausar Iqbal

  • Wut 118 application server file abc.prn does not exist or is of zero length

    dear members,
    I am printing a character mode report which gives the following error:
    "wut 118 application server file c:\abc.prn does not exist or is of zero length"
    my code on when-button-pressed is here:
              declare
                   repid REPORT_OBJECT;
                   v_rep VARCHAR2(200);
                   rep_status VARCHAR2(50);
                   report_name varchar2(100);
                   v_path varchar2(200);
                   rep_server varchar2(50);
              BEGIN
                   select parameter into rep_server from mis where parameter_type = 'REPORT_SERVER';
                   report_name := 'C:\TEMP\abc.prn';
                   repid := find_report_object('reports');
                   SET_REPORT_OBJECT_PROPERTY(repid,REPORT_FILENAME,:global.report_path||'abc123.rdf');
                   SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,BATCH);
                   SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
                   SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,FILE);
                   SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,:global.report_path||'dflt.prt');
                   SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESNAME,report_name);
                   SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,REP_SERVER);
    PF_FGOWGPNO='||:FG_DISPATCH_M.FGOWGPNO||' PF_FISCAL_YEAR='||:FG_DISPATCH_M.XFISCAL_YEAR||:FG_DISPATCH_M.XFISCAL_YEAR||' P_USERNAME='||:DUMMY.USER);
    PF_FGOWGPNO='||:FG_DISPATCH_M.FGOWGPNO||' PF_FISCAL_YEAR='||:FG_DISPATCH_M.XFISCAL_YEAR);
                   SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no PF_FGOWGPNO='||:FG_WH_INTERCHANGE.FG_TRANSIT_ID||' PF_FISCAL_YEAR='||:FG_WH_INTERCHANGE.XFISCAL_YEAR||' PRINT_IT='||:DUMMY.PRINT_IT);
                   v_rep := RUN_REPORT_OBJECT(repid);
                   rep_status := REPORT_OBJECT_STATUS(v_rep);
                   WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED') LOOP
                        rep_status := report_object_status(v_rep);
                   END LOOP;
                   IF rep_status = 'FINISHED' THEN
                        --WEB.SHOW_DOCUMENT('/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=repsrv10g','_blank');
                        NULL;
                   ELSE
                        message('Error when running report');
                   END IF;
                   exception
                        when others then
                        message(sqlerrm);
                        raise form_trigger_failure;
                   END;
                   declare
                        a boolean;
                   begin
                        a := webutil_file_transfer.as_to_client('c:\temp\abc.prn','c:\temp\abc.prn');
                   end;               
                   begin
                        client_host('cmd start /c type c:\temp\abc.prn > prn');
                   exception
                        when others then null;
                   end;Regards:

    Disregard my last. I see what you are doing. You are using file transfer to move the file to the local machine. It was confusing because the paths are the same.
    I would suggest adding a SYNCHRONIZE after the file transfer and before the attempt to print. It might even be a good idea to add some error handling code to verify that the file has been copied and can be found. This will allow you to better deal with situations where the file doesn't get written for some reason. WebUtil offers some functions to check for file existence and size.
    Also, if you are using Java 7U21, this may cause some issues with your CLIENT_HOST call.

  • WUT-125 Webutil Error happens occasionally....

    Hello,
    We are currently running OAS 10g (10.1.2) ti deliver a web-based Forms application to our users (some are onsite and some off-site).
    We use the WEBUTIL file transfer function CLIENT_TO_AS_WITH_PROGRESS to allow the users to upload their work (they are illustrators) tot he server, to be added to their image library.
    Occasionally, and almost always offsite and therefore outside our firewall, we get the following error (please note I have replaced the URL value for anonymity):
    Loading http://URL/forms/java/frmwebutil.jar from JAR cache
    Loading http://URL/forms/java/frmall_jinit.jar from JAR cache
    RegisterWebUtil - Loading WebUtil Version 10.1.2.3
    Loading http://URL/forms/java/caps_icons.jar from JAR cache
    Loading http://URL/forms/java/progressbar.jar from JAR cache
    Loading http://URL/forms/java/calendar.jar from JAR cache
    Loading http://URL/forms/java/jacob.jar from JAR cache
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 10.1.2.3
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
    +     at sun.applet.AppletClassLoader.getBytes(Unknown Source)+
    +     at sun.applet.AppletClassLoader.access$100(Unknown Source)+
    +     at sun.applet.AppletClassLoader$1.run(Unknown Source)+
    +     at java.security.AccessController.doPrivileged(Native Method)+
    +     at sun.applet.AppletClassLoader.findClass(Unknown Source)+
    +     at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)+
    +     at java.lang.ClassLoader.loadClass(Unknown Source)+
    +     at sun.applet.AppletClassLoader.loadClass(Unknown Source)+
    +     at java.lang.ClassLoader.loadClass(Unknown Source)+
    +     at java.lang.ClassLoader.loadClassInternal(Unknown Source)+
    +     at java.lang.Class.forName0(Native Method)+
    +     at java.lang.Class.forName(Unknown Source)+
    +     at oracle.forms.handler.UICommon.instantiate(Unknown Source)+
    +     at oracle.forms.handler.UICommon.onCreate(Unknown Source)+
    +     at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)+
    +     at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)+
    +     at oracle.forms.engine.Runform.processMessage(Unknown Source)+
    +     at oracle.forms.engine.Runform.processSet(Unknown Source)+
    +     at oracle.forms.engine.Runform.onMessageReal(Unknown Source)+
    +     at oracle.forms.engine.Runform.onMessage(Unknown Source)+
    +     at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)+
    +     at oracle.forms.engine.Runform.startRunform(Unknown Source)+
    +     at oracle.forms.engine.Main.createRunform(Unknown Source)+
    +     at oracle.forms.engine.Main.start(Unknown Source)+
    +     at sun.applet.AppletPanel.run(Unknown Source)+
    +     at java.lang.Thread.run(Unknown Source)+
    +2010-Apr-21 12:24:25.712 ERROR>WUT-125 [WEBUTIL_FILE_TRANSFER.UploadInt] Checksum error closing application server file /data/Live/Graphics_In/gz/GRAPHIC_FILE.cgm. Expected size 1328778. Transferred size 0+
    As said, it is a sporadic problem but then seems to persist for certain files.
    I should also note that the directory /data is actually a linked folder on the UNIX box pointing to an area on a Windows file server.
    This process works more often than not but around 5% are getting this error and thus stopping certain users being able to complete their work...
    We've tried to trap this error via the WEBUTIL error log but the errors are not being logged there.
    Very odd and head scratching time, thus... help?
    Cheers
    Dan

    hi
    u have to sign jars something like this.
    o C:\cd <Developer Home>\jdk\bin
    o C:\<Developer Home>\jdk\bin>
    <Developer Home>\forms90\webutil\sign_webutil.bat
    <Developer Home>\forms90\java\frmwebutil.jarand also u have to modify Default.env. something like this.
    In a new line under (FORMS90_PATH=) add this line:
    o WEBUTIL_CONFIG=<Developer Home>\forms90\server\webutil.cfg
    when i signed the jars so i got the result something like this in java folder.
    jacob.jar.old
    hope it helps u.
    sarah

  • Final cut pro and JVC GY HD 100

    Is FCP able to import HD 25 Pal clips from my JVC GY HD 100 ?

    The GY-HD100 has been discussed wutie a bit lately. A search here for HD100 yielded these posts that may shed some light: http://discussions.apple.com/search.jspa?objID=f939&search=Go&q=HD100
    -DH
    G4mdd, dual 1.25, 2gb RAM, OS 10.3.3 // G5 dual 2.0, 4gb RAM, OS 10.3.9 & 10.4.2    

  • I will give $100 to the person who can solve this problem once and for all.

    I'm not even kidding, dude. We can do PayPay, I'll mail you a check, whatever you want. That is how frustrating this is, that is how badly I want it fixed, and that is how much overtime I've worked lately thanks to being shorthanded at my place of biz-nass. I'm an hombre of my word, so if you actually come up with a solution that works, the cheddar will be yours. Okay let's hit it.
    It's the skipping thing. First 10-12 seconds of a song - every song - will play fine, then iTunes skips, stutters, and basically does the god **** hokey pokey and shakes it all about. It happens most notably with songs that I double-click to play, but I'm pretty much noticing it on any song now after a transition is made. I've been using iTunes for ages and this didn't happen until the upgrade to 7.3. I have poured over these forums for nearly a week, tried every solution offered (even offered one of my own that actually worked for maybe four days before the whole thing started up again) and NOTHING. To save us all some time, here's what I've tried:
    - Downgrading. I'll admit I didn't do this correctly at first. I didn't remove everything according to the support guidelines, but I went down to version 6.05 and that did nothing to quell the skipping. I upgraded back up to 7.3 because hey, why not, and attempted the remaining trial fixes. I have since removed both iTunes and Quicktime, step my step according the the guidelines, and not only have I downgraded to my current running version of 7.2, I put both of the programs on my F drive (as opposed to the default C drive), my gigantic bonus internal drive where I typically keep nothing but my giganto music library. I thought putting the app on the same drive as the music might fix things. I thought wrong. Dead wrong. Dead diddly dum iddly wrong.
    - Quicktime settings. My settings for Quicktime have always been in safe mode with the output size at 16 bits. So when I saw this "fix" I just rolled my eyes. I used to have that dealio back in the dizzle when iTunes would just get all static-y and skip when I'd open other programs or even just minimize it, so that fix worked for that, but it's nothing compared to this. In simpler terms, that fix is like Superman, and this skipping? The kryptonite. Actually that's probably not a great metaphor, but we've got a ways to go and this is going to get mucho boring if I don't throw some chuckles out there. Ready for fix three? Giddy up!
    - Turn off cross-fade? It's never been on. I never really got the appeal of that, and also I think it resulted in some minor skipping back in the d. I also attempted similar fixes like turning off the equalizer, messing with the volume, closing last.fm, REMOVING an old album art retrieval program from back before iTunes got its **** together with album art, ANYTHING that might interfere with playback was turned off, removed, b-slapped, and sent crying home to its moms. Nada.
    - Recreating my library. This was the fix I offered someone else, because it actually did the trick for a few days. After an entire night spent reimporting 73 gigs worth of music, it played fine, but I did lose a ton of album art, playcounts, etc, so you can imagine how ****** I was when this wound up not being a permanent fix. I was beyond ******. I was livid. But I was taught in the dojos of my youth to channel my anger into productivity, and instead of sculpting a lovely bonsai tree, I set out to fix this pup once and for all.
    - That darn anti-virus! This was the final fix I tried, even though I wasn't using any of the culprit programs listed in the forums as causes of the skipping, and even those offering this as a solution confessed it was pretty hit or miss. But having tried everything else, having resorted to playing my music on MediaMonkey of all things, I figured I'd give it a shot. I used (reason for the past-tense forthcoming) AVG Anti-Virus, Lavasoft AdAware and something called Spyware Doctor that I think just came bundled with XP. I removed all of them. I had just done a virus scan recently to see if that's what was causing this, so I figured I'd be okay until I could redownload them after this fix wound up not working. And it didn't work, so there's that.
    There may be a couple of fixes I've tried that I'm forgetting now, since I'm delirious after spending practically every night for the past week trying to fix this problem, while my girlf, Heather, sits and laughs at me while watching Clark and Michael on her MacBook. In fact, she's laughing at the $100 offer as I type this, but I assure you, if you offer a solution that works, the money is as good as yours. If you come up with a workable solution, I'll have to test and make sure it isn't temporary like the recreating my library thing, but I won't leave you hanging once I'm satisfied that it's fixed for good. I know it's unorthodox, perhaps illegal in some states, but I'm desperate here, peeps. The ball is in your court, and I beg you not to give up the rock.
    Gateway E-2000 Windows XP

    I think the problem lays with Last.fm. I had the same exact problem as you. In your processes screen, end the task "lastfmhelper.exe" Last.fm still scrobbles. The tracks don't skip, although I notice there is still a bit of a lag in the first part of the song - but if you can deal with that, no skipping. I think you will have to end that task everytime you boot up your computer, or uninstall last.fm completely until they fix it; it is a bug in their software, as opposed to iTunes.

  • Frontrow left running @ 100% after returning to Desktop - bugfix required

    Tonight my wife and I were watching iTunes TV Show Videos on our living room TV using her black Macbook with lid closed for about 4-1/2 hrs. I had downloaded these TV videos with iTunes on my PowerMac G5 and shared them to the Macbook. The Macbook was connected to the TV using the Mini DVI to video adapter and a sound connection from headphone jack on Macbook to the TV sound L/R inputs. The Magsafe power was connected all the time. The TV videos played just fine and we paused the Front Row periodically.
    When we were done watching the videos I powered off the TV and disconnected the Mini DVI and the sound connections and removed the Magsafe power. I the opened the Macbook lid and the fans started to pick up and make a fair amount of noise.
    I launched Terminal.app and launched top to see what was running and found Frontrow was running at around 100% cpu with its resident memory growing at an alarming rate. I watched this for about 5 mins and Frontrow climbed to just over 500 MB with the cpu use still at around 100% all this time.
    I used the remote to see if I could get the attention of the Frontrow process that was using 100% cpu and memory bloating but to no avail. The rcd (remote control daemon) process did launch when pressing the remote's Menu button but it did nothing.
    I then decided enough was enough and I quit the top display and issued a 'kill 508' where 508 was the Frontrow PID. Frontrow was killed and when using the Remote the Frontrow restarted as it should.
    Thought I should post this Frontrow anomaly in case others may be wondering why their Frontrow doesn't quit as it should when returning to the Desktop mode.
    I will also send feedback to Apple about this mis-behaving Frontrow.
    Anyone else experience this Frontrow behaviour ?

    I forgot to mention a couple of things.
    The communication for sharing the iTunes TV Videos between the PowerMac G5 and the Macbook was via Airport Express which was located some 25 feet away from the MacBook and the signal strength was at max.
    I was also running 10.4.7 on both the PowerMac G5 and the Macbook.
    The Macbook is equipped with 2gig RAM also.
    No other Apps were running with Frontrow on the Macbook other than iTunes for accessing the PowerMac's shared iTune's Video files.
    There was one moment during watching the videos on the TV when sharing stopped. This was because the PowerMac was set to sleep via Energy Saver at 1 hour of zero activity. THis was resolved by waking the PowerMac G5 up and configuring it to never sleep.

  • E-mails with attachments, mostly photos, are replicating themselves in my inbox, 100 or more at a time. What is causing this and how do I fix it?

    It is an intermittent, but a regular-enough-to-be-really-annoying occurrence........when someone sends an e-mail, to which is attached a photo of some kind, or a picture document, it will replicate in my inbox, sometimes 100 or more copies at a time. I delete all of them, empty the trash, and will also go to the Yahoo web version of my e-mail and delete the offending e-mail from there and empty the trash. Sometimes worked. Now that process isn't working, and this particular e-mail just filled up my inbox with over 100 copies of itself, even after the other steps were taken. Can't get any incoming mail.
    This log jam of replicated e-mails prevents incoming and new mail from reaching the inbox.
    Needless to say, am not too happy about it. What is causing it, and how do I fix it, other than to go to Outlook for my e-mail client....? :0) This, coupled with the constant "not responding" each time I try to send an e-mail, delete items from the "sent" or inbox folders, is really driving me nuts. We have a crappy internet connection, and that is likely part of it, but the "not responding" is not a new thing with Thunderbird, either.
    Thanks in advance for any assistance you can provide. I dislike the web version of Yahoo, and don't want to have to switch to that, as it just doesn't meet e-mail needs. Would like to get Thunderbird fixed.

    I have not seen your error in either my IE or my chrome. I do note that you are using a "strict" Document Type Declaration.
    You might try a transitional DTD, which should be more forgiving than the strict:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    Other than that, I don't see anything particular (because I don't see the error, either) that would cause the menu to drop vertically instead of horizontally.
    Beth

  • HT200196 iCal reminders are clogging up my computers, iPads and iPhone.  When I view the Calendar list in iCal, it seems it has added a new calendar every time an event is added.  I have a calendar list that has grown to over 100.  How do I remedy this?

    My laptop, iPad, and iPhone are being clogged by repeated iCal alerts.  Every time an event is added, it seems another Calendar is also added.  When I view the Calendar list in iCal, there are over 100...and the number is growing.  They can not be deleted with a simple "Select all" or "Delete All" and, when deleted individually, the list quickly grows to huge numbers again rapidly.  How do I keep this from happening and eliminate the excessive number of calendars?

    The warranty entitles you to complimentary phone support for the first 90 days of ownership.

  • T410s with extremely poor performanc​e and CPU always near 100% usage

    Hi,
    I've had my T410s for almost a year now and lately its been starting to get extremely slow, which is odd since it used to be so fast.
    Just by opening one program, Outlook, or IE or Chrome, just one window, it will start to get extremely slow and on task manger I can clearly see the CPU usage at 100% or very near.
    Also another thing I noticed was the performance index on the processor dropped from 6.8 to 3.6!!!
    I did a clean Windows 7 Pro 64Bit install, I have all Windows and Lenovo updates installed and the problem persits
    What is happening and what should I do??
    Thank you
    Nuno

    thank you again for your answer,
    I've done that but hard drive health is also ok as you can see from the screenshot.
    IAt the time of the screenshot I had just fineshed to boot up the laptop and it wasnt hot at all.
    I am getting desperate here, I am unable to work with my T410s
    Link to picture
    Thank you
    Nuno
    Moderator note; picture(s) totalling >50K converted to link(s) Forum Rules

  • How to load one report page at a time for heavy reports of over 100 pages.

    Three banks merged together and now my reports have to pull massive combined data of all 3 banks. Even after tuning the queries, applying indexs, its taking long to load. A normal report now has over 100 pages.
    Do you know if I can just load 1 page at a time and show it to user so the user donot have to wait for all 100 or more pages to load before they can see the whole report...? Kind of spooling...or something.
    Thank you.
    Edited by: Aditi_Seth on Jul 28, 2010 2:54 PM

    I am not aware of a simple solution to set the file name. You need to set the content-disposition, but I don't think this is possible with any of the report parameters. A workaround is to save to save the report as a pdf file (destype=file&desname=myreport.pdf), and then open it in the browser after the report is finished.
    About the timeout: this can be set in the repserver conf file (engineResponseTimeOut) or override it in the url with parameter ENGINERESPONSETIMEOUT. It's all in the documentation, so always start your search there!
    http://download.oracle.com/docs/cd/B14099_17/bi.1012/b14048/pbr_cla.htm#sthref2775

  • How can I tell if my phone is only getting a quick charge if it reads charged 100%?

    iPhone 5c battery is not holding charge for more than 3-4 hours.  It has gone completely dead twice in one day because of it.  Battery says 100% at start.  Apple Genius Bar help said that I'm only getting a soft charge or a partial charge and that is why the battery runs down so quickly.  They recommended replacing my power cords.  Problem is, I have charged it on 3 different cords and it doesn't seem to matter. 
    Took it to Apple store- they wiped it, let it die completely, recharged it to 100% overnight and still had trouble.  Took it back, reloaded everything, phone died, let it charge overnight to 100% and today the battery is down to 40% after about 2 hours. 

    No problem.
    If you took it to the Apple store and they troubleshoot it for you and you still have issues.
    Better to get another phone.

  • How can I see more than 100 users when adding users to a node?

    When adding new users through the User Management interface, only the
    first 100 entries are listed. How do I increase the number of entries
    so I can see the next hundred (or more) users? Is this done via the server
    configuration parameter maxsearchresult?
    <P>
    The GUI Add User to Node option was meant for infrequent adds in smaller
    environments. In large deployments (more than 100 user adds at a time), you
    should be using the command line script "unidsattach". See the Administrators
    Guide for more details on the command.
    <p>
    The parameter, maxsearchresult, is meant to limit the number of users that can
    be returned on a search request by the calendar client. For example, if you have
    1000's of calendar users and someone tries to search for all of them, this
    parameter will make sure that the user is not left waiting a long time for
    results.

    In Settings > Notification Center, try turning "on" all the six buttons under "Today View".  Also turn "on" the top two buttons under "Access on Lock Screen".  Doing that should show you "Tomorrow" at the bottom of Noticiation Center.

  • Transaction type 100 not possible (posting to affiliated company)

    Hi All SAP Guru's
    I am trying to post asset acquisition through F-90
    Asset Dr Transcation Type 100
    To, Vendor Cr
    while saving the above document  i am getting an error Transcation type 100 is not possible (Posting to Affiliated Company)
    to explain further my client are using Trading Partner Concept, may be that is the reason document is not getting posted
    In Transcation Type I tried to change Post to affiliated Company then system allowing to post the document, but in real sense we should not give post to affiliated company at Transcation Type
    can anybody help, is there any alternative to go ahead
    Regards
    Sreenivasulu
    Edited by: sreenivasulu VAS on Feb 26, 2009 1:57 PM

    Hi,
    When there's a trading partner in the document, you need to use a different transaction type for external acquisition.
    Have you tried this? (I've used this one. without chaging document type setting)
    150     Acquisition from an affiliated company
    Difference from Transaction type 100 is posting type. 150 has a posting type of 'Post to affiliated company' whereas 100 has not.
    Check with IMG (T-code: AO73)
    Heeseon.

Maybe you are looking for

  • Problem with a variable in SQL Statement variable

    Hello I am trying the following query. hstmt = DBActivateSQL(hdbc, "SELECT UserLevel FROM ClassUsers WHERE Password = "+ cadena +""); At this point I recieve this error: Operands of + have illegal types 'pointer to char' and 'pointer to char'. I have

  • Need help on enhancement of 0CO_OM_OPA_1 with Material and Plant

    Hi, I have a requirement that need to build a BW report which shows Actual costs and Planned Costs of Service Orders. We are getting Actual costs from 0CO_OM_OPA_6 and now i am getting planned costs from 0CO_OM_OPA_1. For actual costs we are getting

  • Is it okay to uninstall CS6?

    I've been using Photoshop CC happily. However I'm not able to change file type associations to CC: it keeps defaulting to CS6. Is it safe for me to uninstall CS6? Will I then be able use CC as a file type association? Thanks. Joel

  • Address book?  Can't export, can't upload it, can't print it... ***? please

    I have tried every conceivable way to export, and or print my address book. To put it simply, I am creating an eVite. The only way it would upload my addresses, it said, was to create a CSV or Excel file. Can't do it. Well, I could manually type all

  • Auto crop Scanned Images w/black edge? 1500+ photos to crop!

    I have a job where the client scanned over 1500 photos but didn't crop them properly so there's random black bars & edges everywhere that I'm required to get rid of. Is there any way for Photoshop or ANY application to auto detect and crop & save a b