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

Similar Messages

  • 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

  • After REFRESH the cached object is not consistent with the database table

    After REFRESH, the cached object is not consistent with the database table. Why?
    I created a JDBC connection with the Oracle database (HR schema) using JDeveloper(10.1.3) and then I created an offline database (HR schema)
    in JDeveloper from the existing database tables (HR schema). Then I made some updates to the JOBS database table using SQL*Plus.
    Then I returned to the JDeveloper tool and refreshed the HR connection. But I found no any changes made to the offline database table JOBS in
    JDeveloper.
    How to make the JDeveloper's offline tables to be synchronized with the underling database tables?

    qkc,
    Once you create an offline table, it's just a copy of a table definition as of the point in time you brought it in from the database. Refreshing the connection, as you describe it, just refreshes the database browser, and not any offline objects. If you want to syncrhnonize the offline table, right-click the offline table and choose "Generate or Reconcile Objects" to reconcile the object to the database. I just tried this in 10.1.3.3 (not the latest 10.1.3, I know), and it works properly.
    John

  • Charts not displaying in the PDF output

    HI,
    We have developed a rdf using the Oracle reports Developer (version 10.1.2.0.2) and developed a RTF Template using the Template Builder ( Version 10.1.3.3.2). We are able to view the data in the chart and table formats locally in the PDF format.
    But when we run from the ERP Applications Release 12 Concurrent program , We are able to view the data only in the tabular format and we are unable to view the "Chart" view in the PDF output.
    Thanks,
    Venkatesh.

    Xserver should be running.
    set X Host for your environment.
    or
    start the environment with a headless implementation in java option. Specify the following property at the java command line:
    -Djava.awt.headless=true

  • The rendered records are not consistent with the range

    After changing the range with record navigator to render the records,
    if navigate to other page and go back,the rendered records will not be
    consistent with the record range.
    The issue can be reproduced as follows.
    1.when select 1-10 range,the first 10 records are rendered.
    2.select [Next 10 records] to render the 11-13 records.
    3.change to other page and return to the original page.
    It is found that the 11-13 records are rendered but the range is 1-10.
    You can verify the issue by executing SampleMainPG.xml of the Tutorial.jpr for 11.5.10.2
    from Jdeveloper after changing the SampleMainCO.java as below.
    * Layout and page setup logic for a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    if (pageContext.getTransactionValue("link") != null)
    OAAdvancedTableBean inner = (OAAdvancedTableBean)webBean.findChildRecursive("InnerTable");
    inner.clearCache(pageContext);
    inner.setAttributeValue("CLEAR_CACHE_ONCE_NOEXECUTE_ATTR", Boolean.TRUE);
    <==comment out these original source above.
    OAAdvancedTableBean outer = (OAAdvancedTableBean)webBean.findChildRecursive("OuterTable");
    outer.queryData(pageContext, false);
    <==add the two rows of source above to get the latest query data.
    you should to make the records of the table fwk_tbx_employees to be more than 10 just using the SQL script below.
    (just need to change EMPLOYEE_ID at your will)
    INSERT INTO fwk_tbx_employees (
    EMPLOYEE_ID,
    TITLE,
    FIRST_NAME,
    MIDDLE_NAMES,
    LAST_NAME,
    FULL_NAME,
    EMAIL_ADDRESS,
    MANAGER_ID,
    POSITION_CODE,
    SALARY,
    START_DATE,
    END_DATE,
    LAST_UPDATE_DATE,
    LAST_UPDATED_BY,
    CREATION_DATE,
    CREATED_BY,
    LAST_UPDATE_LOGIN,
    ATTRIBUTE_CATEGORY,
    ATTRIBUTE1,
    ATTRIBUTE2,
    ATTRIBUTE3,
    ATTRIBUTE4,
    ATTRIBUTE5,
    ATTRIBUTE6,
    ATTRIBUTE7,
    ATTRIBUTE8,
    ATTRIBUTE9,
    ATTRIBUTE10,
    ATTRIBUTE11,
    ATTRIBUTE12,
    ATTRIBUTE13,
    ATTRIBUTE14,
    ATTRIBUTE15 )
    VALUES (
    17,
    'ichiro',
    'yamada',
    'ichiro yamada',
    1,
    0,
    sysdate,
    sysdate,
    sysdate,
    0,
    sysdate,
    0,
    0,
    it seems that if use the functions below,the issue can be workarounded.
    But it is not clear whether there is any other impact from these functions.
    innerTable1.clearCache(pageContext);
    innerTable1.setAttributeValue("CLEAR_CACHE_ONCE_NOEXECUTE_ATTR", Boolean.TRUE);
    Could you please share your idea?
    Thank you very much in advance.
    Best regards,
    Wang

    FYI.  I was able to do what I wanted by first going to page properties and removing unwanted fonts from appearance.  Then edit the page, select all, change style to normal, then select the text where you want to use a different style and change style there.  This gives consistent appearance with both browsers.

  • SM37 spool output not matched with the mail received

    Hi All
    I have a background job which run on daily basis. After the job is finished successfully the spool is sent to client in the form of the html page.
    The mail received by client and the actual spool in R3 are not matching.
    Some of the text is missing at the end of the lines. Say like a row having 300 characters in the actual spool R3, 280 characters are only showing in the received mail of client, last 20 characters are missing.
    How to check the settings of Page width in SAP R3.
    Should i check the settings in the Mail configuration.
    Please advise
    Regards

    Hi
    Thank you for all the replies.
    The issue is related to the width of the output missing.
    The spool output is fine. Once this output is generated this wil be send to the spool recipient.
    spool output is different in the spool recipient and actual spool output produced in SM37. i.e  The width of the spool received in the spool receipient is missed. length is ok but widh is missing.
    Should i check in mail settings. Please help me
    Regards,

  • Long Term Signature & Advanced functionality of Reader (measurement) not compatible with the PDF/A

    Dovrei pubblicare sul web e distribuire più di 800 file PDF di grafica vettoriale quasi tutti ottenuti da ArcView e Adobe Acrobat XI.   (Windows XP S.P.3)
    Tutti i PDF sono stati verificati con la "Verifica preliminare" di Acrobat XI risultando conformi allo standard PDF/A.
    I file sono poi stati firmati con PDF Signer (utilissimo per la firma massiva dei PDF)
    Riverificati con la "Verifica preliminare" di Acrobat XI sono risultati ancora conformi allo standard PDF/A.
    I file sono quindi stati salvati abilitando le funzionalità avanzate di Adobe Reader (creazione commenti e misurazione) e incorporando le informazioni di verifica per la convalida a lungo termine della firma.
    La "Verifica preliminare" di Acrobat XI ora indica che i PDF non sono più compatibili con lo standard PDF/A-1b (2005)
    Problema di sintassi: Oggetto indiretto con numero di oggetto non preceduto da un indicatore EOL
    Dettagli del documento:
    Valori trigger
    L'oggetto indiretto contiene un numero di oggetto non preceduto da un indicatore EOL.: vero
    { 28 0 obj }

    Long-Term validation feature in PDF is not compatible with PDF/A as you have already found out. In Acrobat XI LTV info is automatically added to the signed PDF when a PDF is saved again (after signing). You need to turn this feature off (it is ON by default). Go to Edit->Preferences->Signatures->Verification->More and change the radio button for "Automatically add verification information for signed PDFs" to "Never".

  • X-refs are not working in the PDF output

    I correctly generated a PDF from a ditamap using DITA-FMx and cross-references are not working.
    Thanks for your help.

    Thanks Scott, although I don't think this is the best solution in our case.
    The target PDF is a file that is delivered to a customer. This means that it won't keep the same location on the file system, and therefore links will no longer work I guess. In addition to that, we are still not ready for publishing our doc on the web. So the delivered PDF is a file that lives on its own.
    If the problem occurs only across different nested ditamaps, I thought I could get rid of these nested diatamaps and just have a global ditamap containing only topics. But then how would I obtain the different section levels in the TOC?
    Today, I use nested diatamaps in order to get the following structure:
    |_ Section 1
    |
    |_ Section 2
      |_ Section 2.a
      |_ Section 2.b
      |_ Section 2.c
    |
    |_ Section 3
    where Section 2 is a ditamap with three topics.
    Are there other alternatives to nested ditamaps in order to keep the same level of indentation?
    Thanks
    Arianna

  • Vector selection is not consistent with the rest of the UI.

    When I select a text layer, it doesn't automatically select all of the text for me. 
    When I select a layer mask, it doesn't automatically go into quick mask.
    Yet when I select a vector, I'm automatically presented with an outline of the shape. At the moment I'm constantly pressing shift+ctrl+h all over the place just to dictate when I want to see my outline. Folders with vector masks do this right - I can select the vector by clicking on the vector, or I can select the folder by clicking on the folder or anywhere other than on the vector mask. 
    Don't force me into ctrl+shift+h-land. Just let me be able to click what I want to select.

    If the other devices are synced with iCloud, check the Calendars box in the iCloud preference pane.

  • BEA workshop design view is NOT consistent with the actual application

    When I move the cursor to one jsf component in the design view and hit the space bar several times, I can see the component is being moved to the right. However, when I deloy this application to the server, this change does NOT actually apply to the page. Any suggestions?
    Thanks,
    Jimm

    Try "Shift + Space" to introduce white space in design view and generate respective   in the source code.

  • Print of standard report "Check Register" not consistent with the report

    Hi
    I am trying to print a report generated by transaction FCHN. The display of report is correct but when i check the printout the last line item is missing in the print only.

    Hi ,
    print out from spool or direct? , if its spool then u need to check the settings of the spool to display all the pages.
    in SPO2->goto->display requests--->settings.
    regards
    Prabhu

  • XML Publisher Report not generating the PDF output.

    Hi,
    I am trying to develop a XML Publisher Report in R12 Vision Instance.
    I have developed the rdf report and concurrent program with XML as output format. Ran the concurrent program and I got the XML output. Based on XML output I have created the rtf template. Using both the template and xml output I have created in Data Definition and Template in XML Publisher Administrator Responsibility. Now I am comming to the concurrent program and running the program, here instead of generating the PDF output it is generating again the XML output and concurrent program completing with warning status.
    When I am trying to do the same in 11i Vision Instance, Concurrent Program completing with normal status and when trying to view the output it is saying "Unable to Publish output for the Processed Request".
    Kindly please help me out in this issue.
    Thanks,
    Manasa.

    Hi Mahesh,
    Here the concurrent programs are not erroring out. It is completing with Warning status and when we click on View Output the output is coming in XML format instead of PDF, this is in R12 Vision Instance.
    In 11i Vision Instance, concurrent program is completing with Normal Status but when we click on View Output it is saying "Unable to Publish output for specified request".
    Thanks,
    Manasa.

  • The PDF output is not always displayed!

    Hello
    I'm tryin' to build some PDF outputs and I have the next problem: I have 20 reports to make it on PDF form (viewed with the Acrobat plugin from IE 5.5 or higher) and when I try to see what was builded the PDF it's not always displayed ( mean it's not readed by the plugin). I generate the PDF output from a servlet (which also set the servlet output context as 'application/pdf') and, if the output it's generated too fast (meanning the report information was too small), the Acrobat plugin doesn't catch him ! I think that I have to slow down the servlet response to allow the plugin complete loading, but I don't khow how to do this (and, ofcourse, if it's possible).
    Please, I need a solution. !
    Thanx!

    Hi,
    setting content type as application/pdf is quite enough for the plugin to catch
    I generate the PDF output from a servlet
    (which also set the servlet output context as
    'application/pdf') and, if the output it's generated
    too fast (meanning the report information was too
    small), the Acrobat plugin doesn't catch him !but i think IE has a problem catching this, cause i also once ran thro this kind of problem
    I think that I have to slow down the servlet response to allow
    the plugin complete loading, but I don't khow how to
    do this (and, ofcourse, if it's possible). Yes it is possible.... if ur sevrvlet ehich is displaying pdf is http://host/PdfServert
    just make in such a way that the extention is pdf..
    http://host/PdfServert?xy=z.pdf or register the servlet with .pdf ext
    http://host/PdfServert.pdf...
    belive it really worked perfect for me..
    regards,
    Arun.N

  • Some text goes missing in the PDF output after I convert FM8 book

    Hi,
    I am using Framemaker 8.0, Acrobat 8.0 Professional, Acrobat Distiller 8.0.
    When I convert my Framemaker books to PDFs, some text (especially Table Heading tags) go missing in the PDF output. I have tried to change the font colour, change the cell shading, and many other options. But, the problem persists.
    I saw some similar links on the forums with this kind of problems. For example,
    http://support.microsoft.com/?id=952909
    http://forums.adobe.com/message/3285145
    http://forums.adobe.com/message/4167112
    http://helpx.adobe.com/framemaker/kb/troubleshoot-pdf-creation-problems-framemaker.html
    After going through these links from the forums, I realized that this is a known issue. But, the above links direct me to Microsoft patches and these patches are available only for Windows XP, Windows 2003 Server, and Windwos Vista operating systems. My operating system is Windows 7 Professional, 32-bit version.
    One more thing I want to say is we have never faced this problem earlier. It started appearing now.
    While I know that the world (many of us) moved on to Framemaker 9 and 10, I also know that there is someone out there to help me to overcome this issue.
    Thanks and regards,
    Raghavacharyulu NCB

    Hi Harpreet,
    Thanks for your response.
    We tried this option also. In fact, the Distiller shows this option by default. Secondly, we have recently updated our old template to reflect the new corporate styles and we suspect something went wrong there. We once again took the old template and updated with the new colour definitions and fonts, this time very carefully and it started working. Now, the text is not missing.
    So, the result is something is wrong with our template. Quite surprising is it is inconsistent and some places the text appears and some places it does not.
    Where do you work? Are you in India?
    Cheers,
    NCB Raghavacharyulu
    Mobile No. : 9845192336
    E-mail : [email protected]

  • Extra Page coming in the PDF output -- Urgent

    Hi All,
    I have created an AR Invoice Print report (pre-printed).
    size of the stationary is half of A4.
    In a single A4 page two invocies will be accommodated.
    Here i have not used page break concept. I have adjusted the template with spaces.
    But when are invoices are given in a range lets say 1 to 10.
    The PDF output should have 5 pages accommodating 2 invoice in each page (this is working perfectly), but with this an extra black page is also getting generated. (The PDF is having 6 pages).
    If the range is given between 1 to 9 the extra blank page will not get generated.
    Is there any way to solve this issue???
    It little bit urgent.. :)
    Regards,
    Jana

    Jana,
    http://blogs.oracle.com/xmlpublisher/2007/03/
    Check on the "Anatomy of a Template I & II"... should work on your case. Also, make sure extra carriage returns and unnecessary spaces between tables are removed. If you use fillers, be sure to have the same height attribute as the field being filled.
    regards,
    Rownald

Maybe you are looking for

  • Release Build Problem

    I have a project that I can export to my C: drive or any network drive, and open with the HTML wrapper just fine. When I upload it to the web server and attempt to open it, I get a blue box the size of my project and nothing else. If I go directly to

  • Unable to change permissions on external drive.

    I have an external Firewire drive attached to my PowerMac G5 running 10.5.5. Until the past few days I have been easily accessing (reading and writing) all areas of this drive from my standard non-admin user account since I have the "Ignore ownership

  • PDF attachment, text disappearing once opened.

    Hi Experts, I have been working on a smartform conversion to PDF email. I have inserted a gui download after the conversion process to check the pdf conversion. When opening the pdf that was downloaded, the pdf is perfect. However, once the pdf is em

  • Unable to view CO values in CO standard report

    HI viewers, Settlement of PM order to cost centre is an internal CO document, we can view these values in CO reporting, S_ALR_87013615. But here values r not updating in this report .pls guide me. Rgds, Swathi. Edited by: swathi fico on Jan 12, 2009

  • J2EE at Os level...

    Hello, How can I make sure that J2EE is running? It is regarding ABAP+J2EE for BW 3.5 NW04. I went to SMICM - Services and it will show the list of HTTP ports and there status. How will I be sure that J2EE is active. Because J2EE will be down but the