PDF output vs. RTF Output

I have a few form fields in my template which say only display this line if the data exists. When I output the report as PDF the lines with no data are hidden as I'd expect. When I output as RTF the lines are still there.
Also, unticking the 'Allow row to break across pages' tickbox in the table properties prevents table rows from splitting between pages in PDF output, but not in RTF output.
Am I just missing something basic about the difference between what you can do with the two formats? Or do I need to do something else to get the RTF to work as I'd expect.
Thanks,
Ben

I got it
Thanks.

Similar Messages

  • PDF and RTF output differences

    Hi All
    I'm having some issues when previewing labels in PDF and RTF output. I have created a RTF template that outputs labels - 5 address lines per label, 2 X 10 labels per page. Each label is contained in a table and each address line is contained in a table row.
    - When I preview the RTF output long address lines are not being truncated even though I uncheck the wrap option on the table cell properties.
    - When I preview the RTF output I can get 2x10 labels on the page (if no wrapping occurs) but when I preview in PDF I can only get 2x9 labels on the page. I have checked the font size of both the PDF and RTF outputs and they are the same size. It looks like the header and footer is taking up more space on the PDF version compared to the RTF version when I visually inspect the output but I cannot be sure.
    Does anyone have any ideas how to resolve these issues?
    regards
    Brad

    Always its better to use different templates for individual output types as the template designed with perfection for pdf output type dosen't comply with rtf or any other type and vice versa.
    Cheers!
    Vishnu T Ramakrishnan

  • RTF output not consistent with the PDF output

    Hi Experts.
    i would like to know why the code start@last-page works in pdf format but do not works if i generate the report in rtf format.
    Thanks in advance!

    RTF & PDF output can't be exact same, we can minimize the difference by eliminating all extra spaces(Ex: from table rows, in between form fields etc.) from RTF while generating RTF output.
    For reference:
    BUG:8662322 - RTF FORMAT DOES NOT SHOWS WITH FIXED HEIGHT OF ROW
    Thanks,
    Sandeep

  • Nested Tables Repeat Header Row RTF Output Not Working v5.6.2(PDF does)

    All,
    Has anyone used nested tables in heading rows where they are set to repeat nested table header row across page breaks for RTF output ? This seems to work for PDF generation (line breaking enforcement doesn't) but I don't even get RTF Header ROWS indicated in my RTF output document. I have enabled them in my RTF template for the outer table row plus the inner nested table. Is this possible for RTF output or have I not indicated something in my RTF template or grouping clause ??
    Thanks,
    Tom

    All,
    Has anyone used nested tables in heading rows where they are set to repeat nested table header row across page breaks for RTF output ? This seems to work for PDF generation (line breaking enforcement doesn't) but I don't even get RTF Header ROWS indicated in my RTF output document. I have enabled them in my RTF template for the outer table row plus the inner nested table. Is this possible for RTF output or have I not indicated something in my RTF template or grouping clause ??
    Thanks,
    Tom

  • Forms calling Reports output issue RTF/PDF - strange issue

    Dear All,
    I'm looking for a bit of help with a strange situation calling reports from Forms.
    This problem I'm getting in both 11.1.1 and 11.1.2 of Forms/Reports. Client is WinXP/7 (issue appears on both), Weblogic server is Linux (SLES11 and Red Hat - issue on both)
    So the issue is
    1. calling a report with output as RTF (this works fine and we use OLE2 to open the report in Word)
    2. Wihile in that form call the same report though change the output to be created as PDF in the cache and the report then opens in IE (this too works fine)
    3. Now if we try and do number 1 again (still in the same form) and run the same report again and choose to generate as RTF and open in word, it erroneously generates the report in PDF format but with an .RTF extension on the file.
    Of course most of the time people would not want to do this, but the client has identified this issue and classified it as a bug, so we need to fix it (and it doesn't happen in the Forms6i version it is migrated from).
    I have tried to ensure that the parameter list is correctly deleted and re-created, which appears to be the case. I also tried to generate a new unique parameter list for every run, which made no difference to the problem.
    If I choose to run a completely different report, the problem has reset itself. So the problem exists only when I've chosen the PDF output and then run the same report thereafter as RTF output to a file.
    Code to prepare for the RTF option is:
    Add_Parameter(pl_id,'destype',TEXT_PARAMETER,'FILE');
    Add_Parameter(pl_id,'desname',TEXT_PARAMETER,l_temp_env||'/'|| p_report || '.rtf');
    l_report_desname := l_temp_env||'/'|| p_report || '.rtf';
    Add_Parameter(pl_id,'DESFORMAT',TEXT_PARAMETER,'RTF');
    Add_Parameter(pl_id,'REPORT_DESFORMAT',TEXT_PARAMETER,'RTF');
    Add_Parameter(pl_id,'mode',TEXT_PARAMETER,'BITMAP');
    l_report := p_report;
    Code used to prepare for PDF option is:
    Add_Parameter(pl_id,'destype',TEXT_PARAMETER,'CACHE');
    Add_Parameter(pl_id,'desname',TEXT_PARAMETER,'');
    Add_Parameter(pl_id,'desformat',TEXT_PARAMETER,'PDF');
    l_report := p_report;
    Any ideas gratefully received.
    cheers
    Tony

    So I delete the paramlist correctly, then the code is:
    IF (p_display_method = 'W')
    THEN
    --WORD Format
         --delete file on client
         Delete_File('c:\temp'||'\'|| p_report || '.rtf');
         --delete file on app server
         host('rm '||l_temp_env||'/'|| p_report || '.rtf');
         Add_Parameter(pl_id,'REPORT_DESTYPE',TEXT_PARAMETER,'FILE');
         Add_Parameter(pl_id,'DESTYPE',TEXT_PARAMETER,'FILE');
         Add_Parameter(pl_id,'DESNAME',TEXT_PARAMETER,l_temp_env||'/'|| p_report || '.rtf');
         l_report_desname := l_temp_env||'/'|| p_report || '.rtf';
         Add_Parameter(pl_id,'DESFORMAT',TEXT_PARAMETER,'RTF');
         Add_Parameter(pl_id,'REPORT_DESFORMAT',TEXT_PARAMETER,'RTF');     
         Add_Parameter(pl_id,'MODE',TEXT_PARAMETER,'BITMAP');
         Add_Parameter(pl_id,'printjob',TEXT_PARAMETER,'no');
         l_report := p_report;
    ELSIF (p_display_method = 'E')
    THEN
    --EXCEL format
         --delete file on client
         Delete_File('c:\temp'||'\'|| p_report || '.csv');
         Delete_File('c:\temp'||'\'|| p_report || '.xls');
         --delete file on app server
         host('rm '||l_temp_env||'/'|| p_report || '.csv');
         Delete_File(l_temp_env||'\'|| p_report || '.cvs');
         Delete_File(l_temp_env||'\'|| p_report || '.xls');
         Add_Parameter(pl_id,'destype',TEXT_PARAMETER,'FILE');
         Add_Parameter(pl_id,'desname',TEXT_PARAMETER,l_temp_env||'/'|| p_report || '.csv');
         Add_Parameter(pl_id,'desformat',TEXT_PARAMETER,'csv.prt');
         Add_Parameter(pl_id,'REPORT_DESFORMAT',TEXT_PARAMETER,'csv.prt');
         Add_Parameter(pl_id,'MODE',TEXT_PARAMETER,'character');
         Add_Parameter(pl_id,'printjob',TEXT_PARAMETER,'no');
         l_report := p_report || '_d';
    ELSIF (p_display_method = 'P')
    THEN
    -- PDF Format
         Add_Parameter(pl_id,'destype',TEXT_PARAMETER,'CACHE');
         Add_Parameter(pl_id,'desname',TEXT_PARAMETER,l_temp_env||'/'|| p_report || '.pdf');
         Add_Parameter(pl_id,'DESFORMAT',TEXT_PARAMETER,'PDF');
         Add_Parameter(pl_id,'REPORT_DESFORMAT',TEXT_PARAMETER,'PDF');     
         l_report := p_report;
    END IF;
    So all of the above works fine when generating a report the first time you enter a form, but if you run a PDF output report then immediately in the same form generate the report again to a non-PDF format, it comes out in incorrectly in PDF format.
    rgds
    Tony
    Edited by: tony.g on Nov 29, 2012 1:37 PM

  • XML Publisher rtf output not consistent with the rtf created

    I am using XML publisher to generate a custom report.
    The approach I folllowed:
    1) AM Class: Write the VO data to XMLNode using vo.writeXML() method
    2) XML Publisher Administrator Responsibility: Create a data template and attach the xml created in step1 as "Preview Data"
    3) XML Publisher Administrator Responsibility: Create a rtf template (contains images and text), attach the data template (step 2) and attach the rtf created.
    4) Controller class: Use TemplateHelper.processTemplate() method, passing the rtf template and the XML data from VO.
    5) Verify the rtf output in application.
    Issues I am having are as follows:
    1) Major issue is page format. I have saved my rtf file with a different page format as below:
         File->Page Setup->Paper->Width:255 pt
                   ->Height:165 pt
         File->Page Setup->Margins->Top: 12 pt
                        ->Bottom: 0.1 pt
                        ->Left: 0.1 pt
                        ->Right: 12 pt
    When I open my document from the application, the margins and page setup rtf output is not retained (as given in teh doc), hence my whole layout is disturbed.
    Thus, I am getting a very weird layout when I open my rtf output from application.      
    How can I retain the page settings?
    2) I added a image, and the size of the image also is not retained as well.
    And if I set the layout wrapping style anything other than "In line with text", the image does not show up in the output.
    Would greatly appreciate if someone can put some light on this.

    RTF & PDF output can't be exact same, we can minimize the difference by eliminating all extra spaces(Ex: from table rows, in between form fields etc.) from RTF while generating RTF output.
    For reference:
    BUG:8662322 - RTF FORMAT DOES NOT SHOWS WITH FIXED HEIGHT OF ROW
    Thanks,
    Sandeep

  • Unable to View PDF output in View Output

    Hi ,
    We recently installed XML Publisher Release 5.6.1 . I converted one Report into XML , and created a Template/Data Definitions for it . When I fire the report now , I can see the .PDF file being generated in the unix box . But if I click on the output of the report , the IE page doesnt display anything . The page goes in error .
    Regards
    Sukalyan

    Tim, Please advice on this ASAP.. This issue is preventing us from using XML Publisher in our instances..
    When we click on View output with PDF as output format, then a broswer tries to open up and it gets errored out..
    When we click on View output with RTF as output format, then a Oracle Apps window open up with Junk characters. Tool -> Copy file gives an error
    When we click on View output with EXCEL as output format, then a Oracle Apps window open up with Junk characters. Tool -> Copy file gives an error
    Please advice a solution for the same.
    Thanks,
    Shobana & Sukalyan

  • Generating TEXT output from RTF template/reports

    Hi ,
    We have been working with XML Publisher for a long time now.. and we have come across some requirements such as
    1. Page break in TXT report output
    2. Page Headers after every 'X' lines in TEXT output.
    This was easily achieved with RTF template and PDF/HTML/RTF output, but not with TEXT output in eTEXT template.
    So we started looking into two approaches
    1. Generate TXT from PDF/RTF/HTML output(generated from RTF template), though it will addon to the time, but we are looking for this approach. We are looking for some JAVA api's which can help us to extract text from PDF/HTML/RTF while preserving the format.
    2. Pass the TXT generated by eTEXT template to our custom util , which will split the report in diff. pages.This will get complex as we recieve more and more reports.
    We have also tried hacking the RTF parser used in XML P so as to get a TXT output or using XSL-FO objects in eTEXT parser, but we could not get anything of our help.
    Does anyone have any pointers in this.
    regards
    Gaurav

    You can burst with eText and I have done it
    successfully.
    I don't believe pagebreaks are an option in eText and
    I don't think it makes sense either since your
    generating a flat-file and not a customer or internal
    facing document. Does that make sense?
    Also, if you would like you can use the
    BIPublisherIDE, this code can be converted pretty
    easily to handle jcp. There is a an oa framework
    version I have developed but I haven't posted on my
    blog yet. I plan on adding a bolt on for java
    concurrent programs soon. it's really pretty simple
    just haven't had the time.
    http://bipublisher.blogspot.com/2008/03/bi-publisher-b
    ipublisheride.html
    Ike Wiggins
    http://bipublisher.blogspot.com
    Thanks Ike for your reply.
    I agree with your points on TXT files, but in our case,the reports are generated in TXT format for the customer so we are looking for the above mentioned features.
    I have gone through BIP IDE and its a wonderful small utility which eases the task of BIP development.
    As I mentioned in my original post that we are currently processing the generated TXT report using a custom util. in JAVA to get the desired output in TXT again.
    I assume thats not what a JCP would do,so I am looking to explore that too.
    As I understand the process for report generation is
    1. Generate XSL from eTEXT template.
    2. Get the XML data from DB using XDO
    3. Apply XSL on XML to get the required template.
    If we are looking to achieve some customizations then we need to have the XSL generated with those customizations.
    In this case, where do we plug in the JCP to alter XSL or am I missing something.
    regards
    Gaurav

  • How to open Report output in RTF format using concurrent request form.

    Hi
    I have created a report using BI publisher and RTF format. This report is working fine in PDF format. User can submit report using consurrent request form and can see report preview in PDF format.
    Now user wants to submit another request and wants to see report output in RTF format.
    User submitted a request, request successfully completed and generated a output RTF file in unix box but when user wants to see report output using concurrent request form (View Output) then window is showing raw data instead of RTF output.
    Can any body tell me about solutions?
    Thanks
    Ravi

    Hi Ravi
    I did little R&D on it and found following 2 solutions.I am sure that you also find something but for my shake i am putting it here.If you already find the solution then ignore it.
    I) 1st Solution
    1)Change the profiles 'Viewer: Application for Text' and put value as 'Browser'
    2) Change the profiles 'Viewer: Text' and put value as 'Browser'.Either change it system level or concerned user.
    3) Log out from Current session and close all internet explorer application.
    4) Log in again to check the result
    II) 2nd Solution
    1) Navigate to: Sys admin --> Install -> Viewer Options to open the Form "Viewer Options".
    Do the entry as shown below:
    File_Format     Mime Type               Description
    RTF          application/rtf Microsoft Word(.rtf)
    RTF          application/msword          Microsoft Word(.rtf)     
    2) Then ensure that the profile option Viewer: Application for Text is set to BLANK at the Site Level and User Level.
    3) Then ensure that the profile option Viewer: Text is set to 'browser' at the Site Level.
    -- It will pop-up the screen to choose application name from above two values.
    Hope this will work it for you. For me i replicated the scenario and both solutions were working for me.
    With Best Regards
    Darshan Bhavsar

  • Report6 & Patch3: RTF-Output TRUNCATED

    Hi,
    I'm facing the following problem:
    When generating a RTF-report, the rtf output is truncated
    when viewed in MS Word97.
    The readme.doc (included with the 'patch3' package)
    references that kind of problem as follows:
    Bugs fixed In REPORTS:
    Ver 6_0_5_31_0:
    Rptno Subject
    927749 RTF OUTPUT TRUNCATES ABOUT 4.5 INCH IN WIDTH
    but after installing patch3 (from ftp://oracle-
    ftp.oracle.com/dev_tools/patchsets/dev2k/Win95NT/6.0/patch3)
    the problem still exists.
    A simple report output file looks like this
    (the paperw and paperh attributes do not change when changing
    the width and height attributes in the
    Report Builder Layout Model):
    --- rtf file ---
    {\rtf\ansi
    {\fonttbl{\f1 Courier New}}
    {\colortbl;\red0\green0\blue0;}
    {\info {\creatim \yr1999 \mo\Sep \dy17 \hr14 \min11 \sec47}
    {\author Oracle Reports} {\title r.RTF} }
    \viewkind1
    \paperw5954\paperh8416
    {{\pard \phpg\pvpg\posx0\posy0\absw5000\absh-1\nowrap {This
    file was created by Oracle Reports. Please view this document in
    Page Layout mode.}\par}
    {\pard \pvpg\phpg\posx287\posy1229\absw717 \absh-269 {\f1\fs20
    \cf1 X}\par}
    {\pard \pvpg\phpg\posx287\posy960\absw717 \absh-269 {\f1\fs20
    \cf1 \b Dummy}\par}
    --- rtf file ---
    My configuration:
    =====================
    WIN-NT4.0 (service pack3) (German)
    Report Builder 6.0.5.31.0 (mixed German & English)
    please help!
    thank you
    null

    Which of the three problems mentioned is the
    bug? Or is it all of them?
    #1 - Could you be more specific about the
    margin problem? I haven't had any trouble;
    but then I expect a slight (<1/8") variation.
    #2 - I think this goes with #3. Since the
    Oracle RTF is specifying exact locations of
    each text box, modifying the page would mess
    that up. But that's a guess. Hmm, I think
    I'll try to figure out what in the file is
    disabling page setup.
    Note that MSWord doesn't like borders around
    text boxes - if you save the Oracle RTF from
    Word, it ~doubles the text fields but
    ~quintuples the graphics. For a large file,
    eschew and beware graphics as much as you
    can. (One of my reports was 78MB _before_
    Word got to it, with graphics. With much
    reduced graphics, "only" 19MB.)
    PDF is all very well as long as you don't
    need non-English characters. Our db is
    Unicode, and we want to display Cyrillic.
    I've managed to convince PDF to do that, but
    it wasn't pretty. Oracle RTF doesn't do
    Unicode correctly either, but we added a
    post-processor to correct it. Voila,
    Cyrillic and other non-Latin characters.
    -- Allan Plumb

  • Unable to View output in .rtf format

    Hi guys,
    I am new to BI publisher.
    I want to view the output in .rtf format
    When click on view output I am getting an error "Unable to find the published output for this request" and then "No output file exists for request xxxxxxxx"
    Do we need to apply any patch on the applications side in order to resolve this
    I am able the output in .pdf format on the serverside
    I am unable to view it in .rft or excel format
    Any suggestions

    Is the issue with XML/PDF concurrent requests or with all requests?
    Can you find any errors in Apache/Database log files?
    Is the application listener up and running? Can you find any errors in the listener log file?
    Have you tried to run AutoConfig and bounce the services and see if this helps?
    Thanks,
    Hussein

  • Creation of Note in PDF file generated from Output Server

    I would like to be able to force Output Server to create a Note (in expanded format) on a PDF file. I see the bookmark information in the manual, however I was not able to locate any documentation referencing the note tool. Is this possible? If so, can someone provide a brief example of a command that would need to be passed through the data stream to generate a note on a PDF document?

    Unfortunately, Output Server doesn't allow you to create PDF comments. The best you could probably do is generate a PDF and then create an XFDF that references that PDF and also contains your comments. Check the Adobe PDF Developer's site for information on XFDF.
    Regards,
    Rob McDougall
    Indigo Pacific Ltd.

  • PDF Attachments in Report output.

    Hi Gurus,
    I have a Smartform Print program. My Business needs it the Smart form output is send to E-mail as PDF attachment.
    But the exact requirement is ,
    They need it a summury report before sending to E-mail.
    In the report output The Smart form appears as an PDF atachment. If he clicks that attachment user can able to open and see the attachment. And beside the attachment there is one check box. If he checks the check box and click on E-mail button, then only the PDF should goes to E-mail as PDF attachment.
    Here my question how we can place the PDF attachments in Report output.
    If any one have suugestion or samle code send it to me.
    Thanks and Regards
    Srihari.

    Hi,
    If you have to display the pdf attachment in the report output, you may try using CL_GUI_PDFVIEWER. Have a look at this code sample as to how to implement it
    [http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/d8bb0975-0e01-0010-2192-bd1fffd80cae]
    Regards,
    Vikranth

  • Output to RTF File format

    I have a report which generates a RTF output in which first and last page are PORTRAIT, all other pages in LANDSCAPE. The problem I am facing is it generates the RTF output but all pages are shown in PORTRAIT. If I open this document and go to each section/page and define in the page setup layout, it prints/looks as per format but if I dont do this it does not print/look good. Is there any setting that I am missing from Windows Word perspective or anything from Reports persepective?
    Any pointers would be greatly appreciated.
    Thanks in advance
    Ajith

    Ajith,
    If you haven't done already, please set the oroentation per section in the reports definition and then run to RTF
    Regards,
    The Oracle Reports team

  • Reports 6.0 Portrait vs Landscape in RTF output

    I am having difficulty with RTF output in Reports 6.0. The print
    preview of a report (with the system parameter orientation =
    PORTRAIT)looks fine when previewing or printing from the
    runtime, however, when I generate to an rtf file and open the
    output in Word the document orientation is landscape and we are
    forced to change the page setup for each report before printing
    from Word. I am using Word 97 on NT 4.0 with service patch 3.0
    and reports 6.0.5.28.0 on an Oracle 7.3.4 database. Can anyone
    offer any suggestions?
    null

    I have this problem with Reports 3.0 too. It seems that it
    has not been solved yet...
    Renee' Villarreal (guest) wrote:
    : I am having difficulty with RTF output in Reports 6.0. The
    print
    : preview of a report (with the system parameter orientation =
    : PORTRAIT)looks fine when previewing or printing from the
    : runtime, however, when I generate to an rtf file and open the
    : output in Word the document orientation is landscape and we are
    : forced to change the page setup for each report before printing
    : from Word. I am using Word 97 on NT 4.0 with service patch 3.0
    : and reports 6.0.5.28.0 on an Oracle 7.3.4 database. Can anyone
    : offer any suggestions?
    null

Maybe you are looking for

  • Spits out OS 10.4.6 install DVD

    I recently bought the family pack version of the OS 10.4.6 software and installed it on an old iMac other than the one below (upgraded the hard drive as well). But the reason I'm here is because when I tried to update the newer iMac (500 MHz 20 GB) i

  • What is that keyboard shortcut?

    The shortcut menu shows a keyboard shortcut for Unlock SMPTE Position, Command-something. What is that key? Thanks.

  • Using MS Access to Pull Up the Report Viewer - Crystal Reports 2008

    We recently purchased Crystal Reports 2008 Developer so that we can create standardized and feature rich reporting solutions for our company. Many of our current applications are developed in MS Access XP. It has been quite some time since I have wor

  • How to Specify the size of a new window

    now that the window opens in a new page how do I specify a size and to make it appear without the toolbars so that they can't press the back button? Note -I have no idea how to use code & I need to do this in a quick & easy way

  • Date Specifications IT0041

    In my selection screen we're attempting to do a select on a specific date type in multiple columns however, with the unique structure of IT0041 if I select for instance 'Z9' in column 2, I may get 10 results. If I select for 'Z9' in column 3, I may g