Xsql servlet: creating pdf output

hello,
is it possible to create pdf output with the xsql servlet???
i know that html is possible. i'm a beginner..
thanks
cleo

Birgit,
There was a bug with some german printer drivers where if you printed a report to that driver, afterwards you would see this behaviour with PDF output. This was fixed in an earlier 6i patch set. I would suggest that you download the latest 6i patchset from metalink and install that.
Regards,
Danny

Similar Messages

  • Creating pdf-output in Germany

    Hello,
    I have created a report with Developer 6.08 on a Windows NT 4.0-Client.
    The report creates pdf-output.
    The compiled report is run with rwrun60 on several PC with also NT 4.0.
    On some PC the output file is correct and can be read by the Acrobat Reader. On others the numbers in the created
    output file have a (german?) comma as decimal seperator.
    These files cannot be read by the Acrobat Reader.
    The regional settings on all PC are set to "Deutsch(Deutschland)".
    The NLS_LANG is set to AMERICAN_AMERICA.WE88ISO59P1 and the "decimal"-variable in the report is a dot.
    There must be some difference between the PC, but where is it?
    Thanks, Birgit

    Birgit,
    There was a bug with some german printer drivers where if you printed a report to that driver, afterwards you would see this behaviour with PDF output. This was fixed in an earlier 6i patch set. I would suggest that you download the latest 6i patchset from metalink and install that.
    Regards,
    Danny

  • OAF: Creating PDF output without calling concurrent program.

    Hi Everyone,
    i want to Create PDF output in OAF.
    I wil be having one button “Convert PDF” on my OAF page. On clicking on that button my page should generate pdf output without calling concurrent program(Because running a concurrent program may take much time sometimes.).
    How can I do that?
    I have never generated pdf outputs so plz help me to get out of this.
    What are the possible ways to get this?
    Any example?
    Any suggestions wil be really useful.
    Thanks.....

    Hi ,
    Please refer to -
    http://apps2fusion.com/at/85-daxesh/515-oa-framework-xml-publisher-integration
    http://apps2fusion.com/at/51-ps/260-integrating-xml-publisher-and-oa-framework
    Regards,
    Ashish

  • HowTo make a servlet with PDF output to the browser

    A new one goes here !
    How do I make a Servlet which functions like the rwservlet, and pushes a PDF output to the clientbrowser ?
    Is there any sample code that uses rwclient or others to produce a response ?
    Thanks anyone.

    Requests to the ReportsServer to run a job and return PDF is simply submitting a URL. You could easily write a servlet to submit a URL and stream the results back to the browser. However, this is a more generic requirement not really involving Reports (apart from the fact that you're calling it via the URL).
    For more information on creating a servlet to submit a URL and get the results, you might like to cross-post to the JDeveloper forum.

  • HowTo: create pdf output

    Hi,
    i have designed a report (jsp) with jdev 9i and reports 9i. how can i create a pdf output in jdev 9i. i have found no samples. can someone help me to do that? i will provide an opportunity to convert the web layout to an pdf file.
    thanks
    Achim

    Sun's forums are better for this kind of question (you have to register).
    For example:
    http://forum.java.sun.com/thread.jsp?forum=52&thread=94196

  • Create PDF output from Web Layout Report

    Is there a way I can create a PDF output from a Web Layout Report? (NOT from a Paper Layout). The reason I ask because editing on the .jsp Web Layout is very easy and flexible while editing on the Payer Layout is very difficult. Thanks.
    - Todd

    Hi Todd,
    Please refer to this link:
    paper layout & web layout
    As for your second statement, it is a matter of opinion and I beg to differ that .... "Web Layout is very easy and flexible while editing on the Payer Layout is very difficult."
    Best Regards,
    John

  • PDF output from payment program (trancode F110)

    We currently use 3rd party software to create PDF files of individual remittance advices from the payment run program, by passing the spool output print stream to this software, which recognises each different vendor remittance, and creates a separate file for each one.
    Due to cost restrictions, we want to no longer use the external software and want to do this all within SAP.
    I have looked at various functions available to create PDF output, and think CONVERT_OTF_2_PDF is the one to use, however, when I have tried a simple test of this FM, it creates one pdf file for the spool output, but we need to create separate PDF files for each different remittance advice, per vendor.
    Can someone suggest a way that we can do this?
    Thanks,
    Michael.
    PS. I am an ABAPer.

    Hello,
    Maybe you can start with Adobe forms in SAP, for printing the technology is free, it is quite an emerging one and there are plenty of tutorials. Maybe you can start from here: http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c2567f2b-0b01-0010-b7b5-977cbf80665d and create your own customer forms.
    Note there is SAP ADobe forms forum under NetWeaver and you can find me and other SAP Adobe people there.
    Regards, Otto

  • PDF Output with javadoc

    Somebody once asked how to create PDF output with javadoc, so here's some work in progress:
    I am currently creating a PDF doclet which creates directly PDF output from javadoc. It's still in alpha stage, because it does not yet create an index or navigation frame (which is mandatory for the PDF to be useful), and most HTML tags are not yet interpreted. But that's gonna improve over the next few weeks.
    http://sourceforge.net/projects/pdfdoclet
    Bye,
    Marcel

    Hai Marcel,
    How to run this pdfdoclet?
    I tried like:
    javadoc -doclet com.tarsec.javadoc.pdfdoclet.PDFDoclet -docletpath d:\For_PDF_Doc\itext-0.92.jar;d:\For_PDF_Doc\pdfdoclet.jar *.java
    And the result is:
    Loading source file Test.java...
    Constructing Javadoc information...
    pdfdoclet: >> OPTION 0: -doclet
    pdfdoclet: >> OPTION 1: -docletpath
    pdfdoclet: Content completed, create index
    pdfdoclet: *** PDF DOCUMENT api.pdf COMPLETED ***
    Nothing is there in api.pdf!
    anu

  • How to Create an XML document from XSQL servlet which follows a particular DTD struct

    how to Create an XML document from XSQL servlet which follows a particular DTD structure.Could anyone send me a sample code for this.

    You'll need to associate an XSLT transformation with your XSQL page that transforms the canonical result into your DTD-valid format.
    For example, given an XSQL page like:
    <?xml version="1.0"?>
    <?xml-stylesheet type="text/xsl" href="rss.xsl" ?>
    <xsql:query max-rows="3" connection="demo" xmlns:xsql="urn:oracle-xsql">
    select title,id,description,url,to_char(timestamp,'Mon DD') timestamp
    from site_entry
    order by id desc
    </xsql:query>and an "rss.xsl" stylesheet that looks like this:
    <?xml version="1.0"?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output method="xml" indent="yes" doctype-system="rss-0.91.dtd"/>
    <xsl:template match="/">
    <xsl:for-each select="ROWSET/ROW">
    <rss version="0.91">
    <channel>
    <title>Do You XML?</title>
    <link>http://xml.us.oracle.com</link>
    <description>Oracle XML Website Demo</description>
    <language>en-us</language>
    <xsl:for-each select="ITEM">
    <item>
    <title><xsl:value-of select="TITLE"/></title>
    <link><xsl:value-of select="URL"/></link>
    <description><xsl:value-of select="DESCRIPTION"/></description>
    </item>
    </xsl:for-each>
    </channel>
    </rss>
    </xsl:for-each>
    </xsl:template>
    </xsl:stylesheet>You produce DTD-valid output against the rss-0.91.dtd DTD that looks like:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <!DOCTYPE rss SYSTEM "rss-0.91.dtd">
    <rss version="0.91">
    <channel>
    <title>Do You XML?</title>
    <link>http://xml.us.oracle.com</link>
    <description>Oracle XML Website Demo</description>
    <language>en-us</language>
    </channel>
    </rss>
    <rss version="0.91">
    <channel>
    <title>Do You XML?</title>
    <link>http://xml.us.oracle.com</link>
    <description>Oracle XML Website Demo</description>
    <language>en-us</language>
    </channel>
    </rss>
    <rss version="0.91">
    <channel>
    <title>Do You XML?</title>
    <link>http://xml.us.oracle.com</link>
    <description>Oracle XML Website Demo</description>
    <language>en-us</language>
    </channel>
    </rss>

  • Creating PDF report in the servlet

    We have a requirement of creating PDF report in servlet.
    Over all idea of the requirements -
    - Servlet request receives input arguments,
    - JDO fetches data information,
    - need to create form [row and column]
    - send response as outputsream with content type as application/pdf
    Can any one give suggestions on best way to create a form where row and column consist of static text and values fetched from the db?
    There are third party libraries available for creating text table that can be used to design a form in the form of table cells. We do not want to use third party libraries and have dependencies.
    Please let me know, if you need additional info.
    TIA.

    Don't want to use third-party libraries? Then you'll have to write your own code that outputs data according to the PDF specifications. You can download them from Adobe:
    http://partners.adobe.com/public/developer/pdf/index_reference.html
    Personally I would recommend the third-party libraries as this is a very large wheel to reinvent.

  • How to create a page break in PDF output

    Hi there
    Does anyone know how to create a page break in the PDF output when using the EXPORT TO PDF command?
    I can create a page break using the page-break-after/before HTML stylesheet command, but this is not "interpreted" when the PDF is generated, and I am required to print each table in my web template on a new page.
    Please ... been searching for ages for a solution to this and can't find anything.
    Cheers,
    Andrew

    Try posting in the iWorks forum.
    https://discussions.apple.com/community/app_store/iwork_for_ios

  • Creating Bookmarks in PDF Output

    I am going to be exporting my final InDesign document to PDF. I need to create bookmarks for the document because they are used to access topics in online help. I've attempted to do this by selecting Bookmarks in the export settings, with no results. I am not sure how to get headings in my InDesign document to appear in PDF output as bookmarks. Is there such a thing as a heading style in InDesign, as in FrameMaker and Word? Does anyone have experience doing this? I really need to know how to do it. Thanks.
    Best wishes,
    Tony

    The TOC uses only the headers that appear at the top of each page. How doI get the headings and subheadings throughout the document to appear as bookmarks in PDF?
    A TOC will include whatever you tell it to include.
    Right. Any paragraph-styled text can be extracted to TOC/bookmarks.
    The functionality you want is there, but your statements demonstrate that you've assumed limitations that aren't. They also demonstrate that you're not clueless. Look just a bit deeper.

  • Creating PDF's - Cannot get Arial to work - only getting MyriadPro (Adobe LiveCycle Designer 8.2 + Adobe Output ES Server on Linux (SUSE10))

    Hi
    I am using Adobe LiveCycle Designer 8.2 + Adobe Output ES Server on Linux (SUSE10) to create PDF's from input XML.
    I have had some trouble getting Arial fonts which are used in my LiveCycle Designer created XDP's to be produced in the resulting PDF using the java API or the Process Flow (watched folder) in Output ES.  I have put Arial TTF fonts into both the Server Fonts and Customer Fonts folders and the Arial font still seems to be coming out as MyriadPro in the final PDF.
    Is there something I am doing wrong ?
    Regards
    Robert.

    Hello Jackson,
    We got this working by adding the below fonts to the server-fonts directory on the jvm which you specify in the LCM when you configure the livecycle and bounced the jvm and thing to note down here is that we added our Windows system fonts which are "ttf" files and our jvm is on linux. You can give a shot and see if this works at your end also.
    Fonts added:
    ARIALN.TTF
    ARIALNI.TTF
    ARIALNB.TTF
    ARIALNBI.TTF
    ariali.ttf
    arialbi.ttf
    arialbd.ttf
    arial.ttf
    Thanks-
    Karthik.

  • What settings does the "Create PDF for Review" output use?

    Product: RoboHelp 11 (TCS 5)
    Menu location: Review > Create PDF for Review
    Issue: The default output from the menu location results in output that is unusable: e.g., styles aren't mapping correctly, making the document difficult to read and review. Is there a default print layout or some other control available?
    Ultimate objectives: Track changes, perform shared reviews, import comments from the generated PDF, and so forth.
    Secondary questions: Can I import comments/markup from a shared review if I generated the PDF using the print layout, instead of the Review > Create PDF for Review menu option? If so, will I then be able to manage comments from the Review pane and perform other related-reviewing functions?

    I believe it maps via CSS. I don't believe you can change this behaviour.
    If you generate printed documentation, it is NOT possible to import the review comments.
    Kind regards,
    Willam

  • How do I edit a newly created pdf file? (RE matching a format for a create space output)

    I need help with editing and formatting a newly created pdf file

    You posted this in the Captivate forum, I think you need the Acrobat one

Maybe you are looking for

  • Not producing a receiver file though scenario is succesful

    Hi, I have file adapter on the receiver side The scenario is working good and generating a file on the target side when I select the Message protocol as "File" But when I select "FCC" and execute, it is NOT generating a file on the receiver directory

  • Pricing diff in sales order diff in billing

    Frnds I have 3 pricing procedures for a client....in sales order all 3 are visible as per the respective document type but when i go to invoice for all 3 document types it picking just one specific pricing procedure eveytime......do i need to chng an

  • Time Machine Not Compacting SparseBundle on Time Capsule

    Hi I am running Snow Leopard 10.6.4 and have a time capsule to hold my iTunes Library and act as my Time Machine repository. I'm experiencing the problem where Time Machine has filled up my 1TB Time Capsule, and will not back up any more. I can see t

  • SDK for Instant Client not available?

    Hello all, I'm new to using Oracle and I successfully setup my first 11XE install last week. I'm excited to begin using it but I can't get the OCI driver to compile so I can use it in PHP. I have the linux/amd64 Instant Client 10.1 from the Oracle we

  • Networking OS X to OS 8 & 9

    When OS X first came out, I seem to remember that you could not network between X and earlier OSs. Is this true, still true? I know someone who needs to do this, but I no longer have an 8 or 9 running.