How to print/post double-quotes on reportserver

Hi, I am using rwservlet and cannot send double quotes. I can escape single quotes with another single quote, but double doublequotes do not work. I have tried url-encoding and html encoding, and even their combination, but report server just refuses to generate the PDF with a string with a double quote.
this is my URL:
http://rs-server:7778/reports/rwservlet?cmdkey&report=somereport.jsp&desformat=pdf&TESTSTRING=aaaaaaaa&destype=cache&ACTUSER=19
now I would need in TESTSTRING to have double quotes
PS: tried BI Oracle Business Intelligence 10g (10.1.2) and forms and reports 10g

PostScript printer - send it to the printer port e.g. LPT1: with a simple copy.
Non-PostScript printer - you'll need to buy a PostScript RIP, or perhaps use Acrobat Distiller to convert the PostScript to PDF, then print the PDF with Acrobat's API - see the Acrobat SDK. (This is not possible with the free Reader).

Similar Messages

  • How to escape the double quote in URL

    Hi,
    I know that using backslash we can escape the ',' while sending the data between pages using URL.
    Can any body please help me how to escape the double quotes.
    Thanks a lot.

    Thanks again for the reply and now I am able to encrypt and decrypt my document number... one more question please : will it be possible to chnage the whole URL to some basic message type URL for eg:
    let's say our URL is "http://testdoc/post?mssg" and I want to change this to as "OPEN DOCUMENT" and when user clicks on ""OPEN DOCUMENT" it will still direct to the original destination that is our original URL.
    I have been told that we don;t want to maintain custom table until and unless it's our last choice.
    Thanks,
    Rajat

  • How to replace one double quotes with two double quotes in XSLT

    How can I replace one double quote to a two double quote in a string in XSLT
    I am passing the parameter string to XSLT template contains the value as
    <xsl:variable name="Description">Hi! "How are you</xsl:variable>
    <xsl:variable name="VQuotes">""</xsl:variable>
    I nead the output as
    Hi! ""How are you.
    Tried with Translate function, but it did not work out
    <xsl:element name="DESCRIPTION_SHORT">
              <xsl:value-of select="translate($Description,'&quot;', VQuotes)" />
            </xsl:element>But it is giving the same result as Hi! "How are you
    When I tried with
    <xsl:element name="DESCRIPTION_SHORT">
              <xsl:value-of select="translate($Description,'&quot;', 'BB')" />
            </xsl:element>
    It gave the result as
    Hi! BHow are you.
    It is replacing only one character with one. how to make it for two characters.
    Am I doing anything wrong in syntax?
    Please help.
    Regards, Vignesh S

    Hi Vignesh,
    Try this.
    Its a two step process:
    Step1: Add the following template would be "called" to do the replacement as your want:
    <xsl:template name="string-replace-all">
    <xsl:param name="text" />
    <xsl:param name="replace" />
    <xsl:param name="by" />
    <xsl:choose>
    <xsl:when test="contains($text, $replace)">
    <xsl:value-of select="substring-before($text,$replace)" />
    <xsl:value-of select="$by" />
    <xsl:call-template name="string-replace-all">
    <xsl:with-param name="text"
    select="substring-after($text,$replace)" />
    <xsl:with-param name="replace" select="$replace" />
    <xsl:with-param name="by" select="$by" />
    </xsl:call-template>
    </xsl:when>
    <xsl:otherwise>
    <xsl:value-of select="$text" />
    </xsl:otherwise>
    </xsl:choose>
    </xsl:template>
    Step2: Call the above templeate in the place where you want to call, like this:
    <!--Define the variables-->
    <xsl:variable name="Description">Hi! "How are you</xsl:variable>
    <xsl:variable name="sQuotes">"</xsl:variable>
    <xsl:variable name="VQuotes">""</xsl:variable>
    <!--Following call the template which you have defined in step1-->
    <xsl:element name="DESCRIPTION_SHORT">
    <xsl:variable name="myVar">
    <xsl:call-template name="string-replace-all">
    <xsl:with-param name="text" select="$Description" />
    <xsl:with-param name="replace" select="$sQuotes" />
    <xsl:with-param name="by" select="$VQuotes" />
    </xsl:call-template>
    </xsl:variable>
    <xsl:value-of select="$myVar" />
    </xsl:element>
    I have tested this and works. And outputs as the following with two-double quote as you want.
    <DESCRIPTION_SHORT>Hi!
    ""How are you</DESCRIPTION_SHORT>
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • Printing out double quote string

    Hello,
    I would like to know how can i print out the double quote string (")
    in JSP using out.print(), because a double qoute has already used
    for indicating the string. If the string that i want to print out is including double quote("), how can i print that string out.
    THX !

    out.println("\"mystring\"");
    generally: backslash "\" is used in Java to quote special characters e.g. out.println("c:\\my documents\\bla");

  • How to Print Post Script Files

    Hi All,
    I am trying to make a utility software in foxpro that could print post script file on:-
    1) Post script printer
    2) Non Post Script printer
    Operating System Windows 95 & above
    Help is requested from all the community members
    Reagards
    Harsh

    PostScript printer - send it to the printer port e.g. LPT1: with a simple copy.
    Non-PostScript printer - you'll need to buy a PostScript RIP, or perhaps use Acrobat Distiller to convert the PostScript to PDF, then print the PDF with Acrobat's API - see the Acrobat SDK. (This is not possible with the free Reader).

  • How to handle single, double quotes

    Hi,
    I have a dataset which contains single- and doubble quotes.
    But when using the DS in javascript, I have problems in handing strings containing  single- and doubble quotes.
                <td onclick="myFunction('{TITLE}');">{TITLE}</td>
    {TITLE} is equal to:  I'm working with spry.
    Spry replaces it in the code as: <td onclick="myFunction('I'm working with spry');">I'm working with spry</td>
    Which leads to a quote error in the functionCall onclick().
    I've tried to solve the problem by escaping these special characters in PHP;
    - addslashes() > solves the javascript error, but give a readable text: I\'m working with spry
    - htmlspecialchars() > no change in existing problem.
    Any clues how to solve this.
    Thanks,
    Pieter

    Hi Pieter,
    When writing text in an HTML document I always use entity references (like &lsquo; for a single quote)  for special characters to not only overcome the sort of problem that you are faced with, but this is also good practice for normal rendering of text in most languages including HTML, XML and JS.
    You could also use character reference (like &#8217; for a single quote) with the same result, but DW has inbuilt functions to help with entity reference.
    Having said this, and assuming that you cannot or it is impracticable to change the data within the database, why not have two fields in your dataset, one called JS_TITLE and the other just TITLE and use each one accordingly.
    This still does not satisfy the fact that the single quote for rendering purposes is not represented by a reference, but that is another matter.
    Gramps

  • Escape double quotes

    hey, how to escape the double quote in xml document?
    eg. for description="SHAFT X 10" "
    <xml_header id="0" action="Export" from_loc="KJA" to_loc="" doc_model="SpInventory" doc_key="" doc_ref_no="" done_by="j">
    <xml_header.items>
    <sp_inventory id="1028" description="SHAFT X 10" " category="BELL" />
    </xml_header.items>
    </xml_header>
    i write the XML file in this way:
    String exportFile = dir + rename(fileName);
                File file = new File(exportFile);
                PrintWriter fout = new PrintWriter(new FileWriter(file));
                ObjectXMLWriter writer = new ObjectXMLWriter(fout);
                writer.write(ob);
                fout.close();Pls help. Thanks.

    Sorry, wrong forum

  • How to print double sided copy from a pdf file on a HP 8500a plus

    Have just purchased a new HP 8500a Plus Printer with a set up manual but no instruction booklet. Have recv'd a PDF file via email and would like to know,
    How do i print that PDF 4 page file from the computer to the printer - But double sided.
    Thank you if you can assist
    LeRoy

    HI,
    THIS might be of some help.
    Say "Thanks" by clicking the Kudos Star in the post that helped you.
    Although I work for HP my posts and replies are my own
    Please mark the post that solves your problem as "Accepted Solution"

  • How do you do double sided printing with eprinting with a hp officejet pro 8500a premium?

    How do I do double sided printing with eprint?  Why is there no option to change it online?  I have
    HP Officejet Pro 8500A Premium

    Hi,
    Automatic Two-Sided printing is not currently supported by the ePrint Service, as you may find any of the service capabilities and limitations listed below:
    Duplexing (printing on both sides of the page) is not supported.
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02641898&cc=us&dlc=en&lc=en&product=4083971&tmp...
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • How to globally change straight double quotes to curly open and close?

    I am editing with InDesign (5.5) some documents created by others. I suddenly noticed that the double quote marks were straight, not curly, in one document and Find/Change does not seem to offer and option to distiguish the open (left) double quote mark from the right (close) when starting with double straight quotes. Any suggestions?
    And--unrelated--why is so hard to get to a page where you can actually post a question?
    Thanks!
    Jill

    Since the position of a double quotation mark determines its shape, it is easiest to use GREP with Find/Change. You can (1) find a straight quotation mark at the beginning of a word/phrase and change it to left quotation marks, and then (2) find a straight quotation mark at the end of a word/phrase and change it to right quotation marks.
    (1)
    Find what:
    ~"([\l\u\)[:punct:]])
    This finds a straight quotation mark in front of any character or punctuation.
    Change to:
    \x{201C}$1
    This puts a left quotation marks in front of what was behind the straight quotation mark.
    (2)
    Find what:
    ([\l\u\)[:punct:]])~"
    This finds a straight quotation mark behind any character or punctuation.
    Change to:
    $1\x{201D}
    This puts a left quotation mark behind what was behind the straight quotation mark.
    I would find/change the first hits one at a time, and when you are confident that it works for your documents, go ahead and Change All.

  • How to replace double quotes with a single quote in a string ?

    Hi All:
    Can some one tell me how to replace double Quote (") in a string with a single quote (') ? I tried to use REPLACE function, but I couldn;t get it worked.
    My example is SELECT REPLACE('STN. "A"', '"', ''') FROM Dual --This one throws an error
    Thanks,
    Dima.

    Whether it is maybe not the more comfortable way, I like the quoting capabitlity from 10g :
    SQL> SELECT REPLACE('STN. "A"', '"', q'(')') FROM Dual;
    REPLACE(
    STN. 'A'{code}
    Nicoals.                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to replace single quote with double quote

    hai all,
    i have a problem,
    i am trying insert a string containing single quote into ms-access database.
    it is giving error.
    how can i avoid this .if i replace a single quote in the text with double quote it will defenitely
    insert into database.
    in java.lang.String
    replace () will not work to replace quote with double quote.
    any otherway to solve this problem.
    please mail me to [email protected]
    thank you
    sambareddy
    inida

    java.lang.String.replace () will not work to replace quote with double quote.Really?
    String x = ...
    x.replace( "'", "\"" );

  • How to print double sided from my Mac to my Canon MG6350

    I have looked up everywhere on the internet and youtube of how to print double sided from my Mac Book Pro. I am using OSX 10.8.5.
    All of the dicussions I have looked up before have told me to go to System Preferences>Print & Scan>Options & Supplies> Driver and then tick the little box that comes up and it will allow you to print double sided. I have tried doing this but THERE IS NO DRIVER TAB!!!
    I was just wondering if there was a solution to this as I can print double sided from my other appliences, like the PC and iPad, it is just my Mac Book Pro that doesn't work.
    It has become a big problem for me as I'm studying at college and I need to print things double sided quite regularly. I really need this to work.

    The print dialog has several drop-down menus, one of which initially shows the name of the application you're printing from. If the printer supports duplex, you can choose
    Duplex Printing & Margin
    from that menu. You should then see a checkbox marked
    Automatic Duplex Printing

  • How to print double sided with macbook pro on Samsung CLX-3180?

    Hi,
    I recently switched to using a macbook pro but cannot figure out how to print double sided/two-sided.
    The printer I am using is Samsung CLX-3180 and it allows double-sided printing. I was able to do this with my windows computer previously.
    The frustrating thing is that I see the two-sided feature but I cannot figure out how to turn it on. There is no option to change it.
    It is listed here.
    First, I go to "show presets."
    Then, I click on "copies & pages" but I cannot turn it on.
    Does anyone know how to turn it on?
    Any suggestions would be highly appreciated.
    Thanks.

    Hi nat.the.musical,
    If you are having issues selecting two-sided printing from the Print window, you may find the following article helpful (it is aimed at Mountain Lion, but should also apply to Mavericks):
    OS X Mountain Lion: If your printer has features that aren’t in the Print dialog
    http://support.apple.com/kb/PH11477
    Regards,
    - Brenden

  • How to get the Double-sided print in SMARTFORM?

    Hi Folks,
    Can u  explain me , how to get the Double-sided print ?
    I create two pages : Page 1 and Page 2.
    Page 1 contains Main Window and some text data in it.....
    Page 2 contains  a secondary window with some TERMS & CONDITIONs data.
    Print Mode Settings:
    Page 1     Print Mode : D
    Page 2     Print Mode : Space
    I maintained all the above in my Smartform ,
    but i couldn't get my second page at all  and Double-sided print also....
    Is there any settings missing or any to be maintained ?
    GIve me a Solution....

    HI Surender,
    Check this one
    http://www.sdn.sap.com/irj/sdn/printing?rid=/library/uuid/90edfc78-dfc9-2b10-dcbe-d4612972ceb9&overridelayout=true
    Regards
    Ram

Maybe you are looking for

  • 2nd gen. iPod -software too old but will not update or restore  HELP!!

    Please Help! I've followed all update protocol and itunes 7 is installed, up and running etc, but.. I hook up the ipod and this message appears: Some of the items in the iTunes library were not copied to the iPod "Kit-Ying's iPod" because your iPod s

  • Apple keyboard volume keys no longer working on bootcamp windows

    i have the wired full size apple keyboard and the only keys that dont work are the volume adjusters and brightness adjusters is there any way to fix? they were working fine yesterday

  • I can't change the spell check to UK English

    On a Mac with an existing CS6 InDesign document, I have tried everything to change the spell check to use a UK language, e.g., I want "programme", not "program". 1. Before I open the document, I have selected InDesign/Preferences/Dictionary and chang

  • Writing out to file - and it seems to overwrite data

    I have written a program that reads in a file and then writes out XML. It works fine with small files but with files that are 1,310 kb it, seems to overwrite itself and i end up with a file that is missing its begining and middle pieces. I suspect th

  • File.execute() not working for bat file

    Dear all, The purpose of my function copyToWinClipboard (text) is to get a string directly into the Windows Clipboard. The purpose is to allow the user of my project just to paste into the open-dialog of the application EndNote. I'm not certain wheth