Why rwservlet as default filename instead of Report name?

am trying to execute Oracle report through the web interface. I get a File download dialog box that asks if you want to
Open, Save or Cancel:
The Dialog also displays:
File Name: rwservlet
Type: Unknown File Type
From: <<Server Name>>
key map is:
Key1: %* server=appserver userid=xxxs/xxx@xxxx report=D:\Reports\sample.rdf destype=cache desformat=rtf
I am trying to figure out why the File Name is rwservlet? Is there any way to prompt the user reportname as filename instead of rwservlet as filename?

Hello,
A solution is described in the Metalink Note :
Note.418366.1 How To Change The File Name In The "File Download" Dialog Box For Web Reports?:
Regards

Similar Messages

  • When I save a PDF report the file name is xdo instead of "report name.pdf"

    Hi,
    I started a new project with BI Publisher integrated with OBIEE, I builded a set of reports that are working properly (these are the first reports on this OBIEE/BIP server)
    Accessing Oracle BI Cataloge I can run the reports and change the output format to pdf.
    when I press the right mouse button and select "save as" a dialog box appears.
    On the "File name" field, the default name that BIP writes is "xdo" I would like it to be the "name of the report.pdf".
    It seems that if I create a new report the file name is correct but if I change the name of the report then BIP always selects XDO as the default file name.
    Is there any place where I can configure the default name.

    Thanks for the quick reply.  I figured out how to get the desired results by using tagging.  For anyone who may reference this post in the future, I went to "Customize" in the top right corner of Adobe, then selected "Create new tool set...", looked under "accessiblity and found the "tag" option.  Hit ok, tag is added to the toolbar.  Then I highlighted the dataset in the PDF that was relevant to the output format, then clicked "tag", saved as spreadsheet.  Sorry I can't provide more details on how tagging works or if there's a more elegant solution available, but I'm sure one's out there.

  • Report Name does not come when converted to HTML format.

    We are using Report Builder 10.1.2.3.0 to convert a .rep file to HTML. We need the HTML output file to feed to a reports to xls converter.
    Problem is, the html output does not have the report name. Report name (and also date, time. user, page etc.) are in the margin section. For some reason, it wont print the report name in the html. It works fine when I run it in the builder.
    Here is a graphic of the actual outputs: http://postimage.org/image/uio1x32gt/
    Why is this??? The property palette for a label that is printing in all pages (like Date ) is the same as for the report name (GL EXTRACT DETAIL REPORT), BUT it does not appear in the HTML output???
    Any help would be greatly appreciated.
    PS: We use rwrun.exe with desformat=HTML.

    amitphynyl wrote:
    hi,
    have you tried another label for the header of your report.Hi Amit, I tried that, and you are right.
    I created a simple text boilerplate in the margin , on top of the report name. And when we generate the HTML it comes in every page properly.
    The property palettes of the 2 texts are EXACTLY the SAME.
    So why doesn't the old text (with report name) does NOT appear and ONLY the new text appear????
    Cos, we are trying to generate an MS Excel version of every report. For this, we use a tool called rep2excel, and it users as in input an HTML file. So, we have to generate the HTML from the rep and feed it to that.
    So, since we have 200 odd reports, we will have to change all of them, that is why.
    Here is the output (HTML file): http://www.freeimagehosting.net/newuploads/dgrip.gif

  • Why does the default text tone play instead of the personalized text tone I have selected for a given contact?

    The selected text tone plays when I check it out on the contact page, but when I receive a text message from this contact the default text tone plays.

    Not me. iPhone or not, it always plays the default sound instead of the custom one

  • Set default filename for file save dialog on Save button click

    Hi,
    I am using AxAcroPDF (version 9.0) control to view pdf files in windows forms (C#). The pdf loads into the viewer in the form. Now, when I click on the Save button in the viewer, a Save dialog pops up with a default filename having complete path info.
    If I have loaded the pdf file into AxAcroPDF viewer with filename:
    "C:\Documents and Settings\KB_Kravi\My Documents\CustomerList.pdf"
    then in the save dialog, the default filename will be:
    "C_Documents_and_Settings_KB_Kravi_My Documents_CustomerList.pdf"
    Is there any option to set the default filename in the save dialog to some short name, instead of this lengthy name?
    Thanks,
    Ravi.

    Hi,
    I've found a solution.
    public void Open(string filePath)
    axAcroPDF.LoadFile(filePath);
    //this will set the correct name in the save file dialog.
    axAcroPDF.src = filePath;
    Thanks for your help.
    Freedon

  • Setting default filename for servlet-based download

    I'm new to servlet programming and am attempting to download a file from the server to the client. When I am prompted to open the file from it's current location or save it to disk, the correct filename appears. However, when I click ok and the Save dialog appears, the default filename isn't the actual name of the file but instead contains the name of the package the servlet is located in. Can anyone tell me how I can change my code to have the default filename appear instead of the package name. Thanks.
    Here is the code to call the servlet located in the package named 'frosttwo':
    WebgapBeanFactory wgbf = WebgapBeanFactory.getWebgapBeanFactory();
    String path = wgbf.getTransferFileDirectory();
    String filename = path + request.getParameter("file");
    System.out.println(filename);
    response.sendRedirect("/servlet/frosttwo.Servlet1?file=" + filename);
    Here is the code contained in the servlet:
    public class Servlet1 extends HttpServlet {
    private static final String CONTENT_TYPE = "text/html";
    /**Initialize global variables*/
    public void init(ServletConfig config) throws ServletException {
    super.init(config);
    /**Process the HTTP Get request*/
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    String file = null;
    try
    file = URLDecoder.decode(request.getParameter("file"));
    String filename = file.substring((file.lastIndexOf(File.separatorChar) + 1), file.length());
    response.setContentType("application/octet-stream");
    response.setHeader("Content-disposition", "attachment;filename=" + filename);
    File f = new File(file);
    FileInputStream is = new FileInputStream(f);
    ServletOutputStream s = response.getOutputStream();
    byte[] buffer=new byte[8192];
    int length=buffer.length;
    while((length=is.read(buffer))!=-1)
    s.write(buffer,0,length);
    s.flush();
    catch (IOException ex)
    System.err.println("There was an error sending file " + file);
    ex.printStackTrace();
    catch (Exception ex)
    System.err.println("There was an error sending file " + file);
    ex.printStackTrace();
    public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    doGet(request, response);
    /**Clean up resources*/
    public void destroy() {
    Thanks again.

    I use something like this for res.setHeader and it works fine for me. In the save dialog box it puts this filename there. But if its not able to find the filename then sometime it used to put servletname instead of filename:
    res.setHeader("Content-Disposition","multi-part attachment;filename=\""+
    fname+"\";");
    hope it helps
    vinod

  • Defining default value for financial reports display in the workspace (9.3)

    Hi
    I need to change the default value for financial reports workspace preview mode, for every workspace user. It is actually set on html, and I would like to have pdf instead.
    This option can be changed when logged on the workspace, in file->preferences->financial reporting->default preview mode. However I want every user to start with the right settings, so they dont have to change anything manually.
    I have tried to do it with Shared Services : under projects, BI+, assign preferences. From there I can change the default folder and the start page (the general preferences), however I cannot find the options for financial reporting.
    Is there a way to change these values with hyperion tools ?
    If not, is it possible to change it directly in the repository DB ?Thanks and best regards

    We looked at this about 2 years ago - from memory, you can only set preferences when the users are first setup in Shared Services, under the manage preferences section of the wizard.
    I can't remember if there is a settings file you can edit for the default users - i think there is, but again this must be set before users are set up.
    We looked at changing users preferences, but gave up on the idea as all users had been provisioned already :-(
    Cheers, Iain

  • Most times when I import photos from my desktop or dropbox to iPhoto, iPhoto will keep the title I created for the image as the display title under the image. but occasionally it displays the filename instead and I have to go back through and reenter

    most times when I import photos from my desktop or dropbox to iPhoto, iPhoto will keep the title I created for the image as the display title under the image. but occasionally it displays the filename instead and I have to go back through and reenter the title in iPhoto. why the inconsistency? running OS 10.9.5 and using iPhoto 9.5.1

    Try this:  select one of the photos that are showing the wrong title and use the Photos ➙ Batch Change ➙ Title to File Name menu option.
    See if that will put the name that you want under the thumbnail.

  • Iphone mail (ios6) replies from default account instead of alias recipient

    Hi.
    Since upgrading to ios6, iphone mail replies from my default account instead of the alias address that the email was originally sent to.
    Prior to this upgrade, iphone mail would reply to the address that the email was sent to.
    All alias addresses are present, and i can change teh sent from address to the alias manually.
    If i reply to the same email from icloud.com, the email is sent from the alias address it was sent to, not the default account.
    I tried turning mail off and back on, but the problem remains.
    Please let me know if there is a new setting i have to look for, or if anyone else has solved this problem.
    Thanks.

    I have a similar problem, and was about to start a discussion on it when I saw your post.  I'm assuming that you're using iCloud, like me.
    Things changed in iOS 6 regarding Mail settings, but I still think the behaviour you and I are seeing should be considered a bug.  Under Settings > Mail, Contacts, Calendars > iCloud > Account > Mail, you should see that there's a new setting that allows you to:
    Choose a default address to use when sending from your iCloud account.
    To confirm that you and I are experiencing the same problem, can I ask you to confirm that the default address chosen here is the default address that is being erroneously used as the "From:" address when replying to emails sent to aliases? If it is, you should probably make doubly sure that this setting is the cause of the behaviour you're seeing by changing it to one of the aliases you've created, and seeing whether this becomes the "From:" address for new replies.
    Please post back with the results of this, and we can go from there.  If you're seeing this behaviour too I think I'll report it as a bug to Apple.

  • Change finder search default (filename not content)?

    In Leopard, when one types into the search field of a Finder window, the window changes to search "This Mac" on "Content."
    That is never, ever what I want it to do!
    What I always want it to do is, search folder I had selected, on FILENAME. In other words, two extra mouse-clicks to make the search -- click the folder-name instead of "this mac" and click "filename" instead of "Content."
    Is there any way to persuade the Finder to make selected-object/filename the default for searches?
    P.S. this does not refer to anything in Spotlight preferences or in Finder Preferences that I can find.

    You can get it down to one mouse click if you open the folder you want to search, then use the key combo of Command-Shift-F to bring up a search window. You still have to click the name of your location to get out of the idiotic default of This Mac, but at least you are in Name contains:___ and can immediately type the file name in the space.
    Be sure to send feedback to Apple:
    http://www.apple.com/feedback/macosx.html/
    If enough people raise enough Cain we may get a return to sanity in the Spotlight GUI. Worked for Stacks in the Dock, where Leopard originally had less functionality than Tiger.
    Francine
    Francine
    Schwieder

  • Set default filename for file save dialog

    Hi,
    I am using AxAcroPDF control to view pdf files in windows forms.
    Is there any option to set the default filename in the save dialog?
    Thanks for your help.
    Freedon

    Hi,
    I've found a solution.
    public void Open(string filePath)
    axAcroPDF.LoadFile(filePath);
    //this will set the correct name in the save file dialog.
    axAcroPDF.src = filePath;
    Thanks for your help.
    Freedon

  • How do you determine what the default filename is when you do a SaveAs?

    I have a shcedule that I saved and now I want to save it as a .pdf file, so I go into File, SaveAs and select .pdf in the drop down and the default filename is "document" not what the name of my schedule was.  Where is that set?  How
    do I make it default to the name of the MS Project Filename?
    Thanks,
    Casey

    Hi Casey,
    Which version, SP and CU do you have? Trying with Project 2010 SP1, the original file name is kept whatever extension selected in the "save as" dialog box.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Hello, 2 questionss here is it possible or is there a way to convert all object s outlines in all frames to fills at once and not frame by frame? and why sometimes erases the outline instead of converting it to fill?

    Hello, 2 questionss here>is it possible or is there a way to convert all object s outlines in all frames to fills at once and not frame by frame? and why sometimes erases the outline instead of converting it to fill?

    Hello, 2 questionss here>is it possible or is there a way to convert all object s outlines in all frames to fills at once and not frame by frame? and why sometimes erases the outline instead of converting it to fill?

  • I cannot use a website I need to use, with Firefox 5.0. So, I need to uninstall and go back to 3.5 or 3.6. Please advise. Also, my control panel locks up since Windows Explorer has pbms. Which is why I am using Firefox instead. Thanks for any help!

    I cannot use a website I need to use, with Firefox 5.0. So, I need to uninstall and go back to 3.5 or 3.6. Please advise. Also, my control panel locks up since Windows Explorer has pbms. Which is why I am using Firefox instead. Thanks for any help!

    ''I figured it was going to be FAFSA causing your problem.''
    Install Portable Firefox 3.6.x to your hard drive for that one website. It won't affect your current Firefox installation at all. <br />
    http://portableapps.com/apps/internet/firefox_portable/localization#legacy36

  • I installed iOS 7 and it deleted some of my contacts, as expected, so I just resaved them all. There's one particular number that will save but in my messages, it shows up as the number instead of the name saved. How do I fix it? And why is it doing that?

    I installed iOS 7 and it deleted some of my contacts, as expected, so I just resaved them all. There's one particular number that will save but in my messages, it shows up as the number instead of the name saved. How do I fix it? And why is it doing that?

    I had this problem too, I fixed it by going to my settings and under general at the bottom there is a reset option, go there. One of the options should be reset network settings, select that one. I’m not sure why it happens but that worked for me; hope you have the same luck!

Maybe you are looking for

  • DATA_CHANGED event handler is not triggered after input.(OO ALV)

    Dear Experts, What I did: I register Enter as the trigger event for data_changed event, and I put my checking logic in data_changed_handler which is a method of a local class. When the checking fails, I put messages using er_data_changed->add_protoca

  • Java parser v2 XML-0108

    I am getting XML-0108 when attempting to parse an InputStream in servlet. String being posted to servlet: =============================== <?xml version = '1.0'?> <ROWSET> <ROW num="1"> <GREETING>Hello World</GREETING> </ROW> </ROWSET> Code fragment:

  • Sending the SOAP request back in the SOAP response

    Hi, I have a requirement in which I need to update a database from the information I receive in a SOAP request. Now my database will respond back with the number of records that are updated. Now I need to send back a SOAP response which should have t

  • ALV USING FM (layout)

    what is the purpose ''slis_layout_alv".Please explain briefly  and with sample code.

  • Photoshop documents dissapearing from desktop

    I'm using Photoshop CS3 for windows, running in parallels on my iMac with Lion OS. Documents I'm working on keep disappearing from the PS desktop. I then have to close PS and start again, but not before being asked If I want to save the documents. Ob