Italics in PDF output issue

I am developing a report in Reports 6i on linux. The report generates a PDF output file, which is opened using Acrobat 7.0. I have made text italic at several points in the report, and the italic text shows up correctly in the previewer. However, when viewing the output in Acrobat, the italics slant to the left instead of the right (no matter what font I use). If I copy the italic text from the PDF and paste it into MS Word, it shows up correctly. Does anyone have an idea as to why Acrobat would display the italics incorrectly (and what can I do about it)? Thanks.

Hello, I am having the same issue on IBM AIX. Italic text is slanted to the left instead of the right and all the config I tried with the fonts setup do not work.
1) I installed the fonts on the report server.
2) I followed the Oracle doc on http://download-uk.oracle.com/docs/cd/B13597_05/bf.904/b13673/pbr_font.htm to no avail.
Hope someone has found a solution.
Thanks.

Similar Messages

  • PDF Output Issue

    Hi All ,
    I am facing a strange issue in PDF output format.
    When I preview PDF output i am seeing some special character like *0E-00001111232* . The actual value should be *$ 2,343,500*.
    When ever i face this issue immediately if i download and upload the same template its working fine. But after 15 days or 1 week again i am facing the same issue(On a regular interval).
    Its not only for the number data type columns also for some varchar columns.
    I checked the xml output its coming correctly , but only in preview i am facing this issue.
    BIP Version : 10.1.3.4.1.
    If any one faced with same issue please share your approach.
    Thanks,
    Ananth v

    I guess that might be what format style i have to select for a 11" X 17" report.
    or do i have to create a custom style.

  • Migration from Windows 32 bit to 64 bit Customized reports PDF output issue

    Hi Gurus,
    Product Version: 12.1.1
    Operating System:  Linux x86-64
    Database Version: 11.1.0.7
    We have migrated from Windows 32 bit to Linux 64 bit, our PDF reports shows some Greek Charters
    vi /opt/oracle/apps/tech_st/10.1.2/bin/reports.sh 
    NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P1; export NLS_LANG
      SELECT * FROM NLS_DATABASE_PARAMETERS
    NLS_CHARACTERSET=AR8MSWIN1256 
    Regards,

    Mean the result of query SELECT * FROM NLS_DATABASE_PARAMETERS
    NLS_CHARACTERSET=AR8MSWIN1256
    and 11g database character set is AR8MSWIN1256
    vi /opt/oracle/apps/tech_st/10.1.2/bin/reports.sh' refers to 10g. Oracle EBS R12 oracle home not a DB Oracle HOME
    Hope you understand now.

  • Image issue in PDF output

    I am running into an issue that I have narrowed down to the PDF output generated by XML Publisher. I have an image file (JPEG format) that is dynamically loaded from a file in $OA_MEDIA. When the output is PDF and when it is printed, the image is enclosed in a gray rectangle. When the output is RTF, the image is not enclosed. In either case, screen previews do not show any borders around the image. Has anyone encountered this issue?
    Thanks in advance,
    Sunder

    make sure when you are printing the document that you are using a postscript printer driver. If you are using pcl it will encase the image with a light grey background

  • 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

  • PDF Output is moving one column to the middle of page (Prod Issue Urgent!)

    Hi All,
    I have a very funny thing and i could not get any solution.
    I have a report that is printing data in 6-7 pages. This is very simple and tabular report.
    1. I have created one big table with two columns (A and B).
    2. Then i have created another two table under first column (A) and i am using second column (B) as a single column for the address.
    When i run this report in PDF output then PDF report is shoing seond column (B) in the middle of the report.
    Can anyone tell me solution for this.
    Thanks
    Jack

    Hi,
    Can you send over your rtf template, some sample XML and the pdf output from the report?
    [email protected]
    I will take a look and see what I can make of it.
    Regards,
    Cj

  • Issue with new font (Excalibur Monospace) in PDF Output

    Hi,
    As per Business requirnment , i have install new font "Excalibur Monospace" and apply to the .rtf template. i have done Font Mapping by going XML Publisher resposibility and assgin to the specific template
    Now the reqrinment is , make the headings BOLD in rtf template. eventhough i have made it BOLD in template , it's still not reflecting on PDF output.
    i am using E Business Suite Release 12.0.6
    can you please advice to make the heading Bold for new font???
    Thanks and Regrdas,
    Mahendra Pawar

    Hi Prabhudas,
    I am using the FM 'CONVERT_OTF' to convert the data to pdf.
    The FM CLOSE_FORM is creating the IT_OTF internal table and the CONVERT_PDF uses that internal table to populate the         IT_PDF internal table and then using the FM 'SO_OBJECT_SEND' to send the PDF file to mail.
      CALL FUNCTION 'CONVERT_OTF'             
           EXPORTING                          
                format       = 'PDF'          
           IMPORTING                          
                bin_filesize = g_filesize     
           TABLES                             
                otf          = it_otf         
                lines        = it_pdf.        
    Regards,
    Sankara Chakradhar.

  • 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.

  • PDF output does not refresh data in BI Publisher, XML and HTML do refresh

    I just upgraded to BI Publisher 10.1.3.4.0 and I noticed that the PDF format of the reports does not reflect recent changes in data, while XML data and HTML output do reflect changes in data immediately.
    I'm using BI Publisher to print APEX applications reports. When I change some data in APEX forms, I click again in the Print button and the data remains unchanged. I made some testing inside Oracle BI Publisher, and noticed that XML data and HTML output do reflect changes, but PDF output remains with the old data for some unknown amount of time. I cannot identify a method to force the PDF to refresh, just un-log and log in again several times until the data appears updated. This is serious because when users change data and print again, they expect the changes to be reflected in the new printable report, and may not notice that the data is the old version.
    OS is Oracle Enterprise Linux.
    Any help on this will be very welcome.
    Francisco

    Open the report in Edit Mode Click on the reports and in the properties section Uncheck the
    Enable Document Cache Property and your issue should be resolved.

  • Report fonts mapping and PDF output problem(Easten European languages)

    Hi experts,
    I have such a problem.
    If i run oracle reports(10g) via reports builder all layouts looks fine.
    When i run them in PDF format via application server - report text and numbers strech out off frames, also textfields and text itself becomes bigger in size.
    Aplication server runs over windows OS.
    Uifont.ali file looks:
    [ PDF:Subset ]
    Arial..Italic.Bold.. = "Arialbi.ttf"
    Arial...Bold.. = "Arialbd.ttf"
    Arial..Italic... = "Ariali.ttf"
    Arial..Plain... = "Arial.ttf"
    Arial..... = "Arial.ttf"
    "Times New Roman"...Bold.. = "TIMESBD.TTF"
    "Times New Roman"..Italic... = "TIMESI.TTF"
    "Times New Roman"..... = "TIMES.TTF"
    I think the problem is with Lithuanian(baltic) letters in the text. If i do not map fonts in uifont.ali file i get PDF report without the
    lithuanian alphabet letters, but in this case it looks fine(The same as in report builder)
    After fonts mapping, i get my lithuanian alphabet letters, but text and numbers strech out off frames, changes the size and etc.
    I put the example of my report uotput:
    http://pirmas.50webs.com/index.html
    What else can i do to solve this problem?
    Thanks for any suggestions
    Sky_lt

    Vangel
    For the html output issue , there is a patch available on top of 9021. Please contact your Oracle support representative to get a 90211 patch nd apply the one-off patch of Bug 2472932.
    For PDF, please ensure that you are setting the NLS_LANG in the server config file using the dynamic environment switch feature introduced in 90 patch 1 (9021). Please see the patch 1 release notes for the details
    Thanks
    The Oracle Reports Team

  • Output Post Processor is unable to generate the PDF output

    Hi,
    We are using a custom RDF to generate PDF output using a RTF template built using XML. We are facing some problem while running this XML report. The report is completing with warning because of the following reason.
    "The concurrent manager has timed out waiting for the Output Post-processor to finish this request."
    The problem is not because of the temp space because we printed a sample XML report which is having thousands of pages.
    We have tried by changing the value of the profile option "Concurrent: OPP Process Timeout" to 5000, 10000 etc. But still the issue is not resolved.
    The report is giving the output if the number of rows are less. It's failing for bulk number of rows.
    It would be greatful for us if any one of you can give ideas on these...
    Thanks in advance...

    Hi Sairam
    there might be something wrong with your template,
    might be improper usage of Conditional and Looping statments,
    might be improper usage of nested tables,
    just check you template once again
    report should work for any set of data(small or large),

  • No data found in report csv or pdf output on first page load

    No data found in report csv output on first page load. Report shows up on page, but no data found in csv or pdf output. I always need to submit the page and then it shows data in downloads. The page contains a form (read-only) with a report that references 4 page items by using something like the following:
    and b.employee_no = v('P5_EMPLOYEE_NO')
    and c.fisc_year_pk = v('P5_FISC_YEAR_PK')
    and b.job_class = v('P5_JOB_CLASS')
    and b.organization = v('P5_ORGANIZATION')
    Again, report in the page shows up except there is no data in downloads. Can anyone help me solve this problem? I'm running Oracle APEX 4.2.1 in Oracle database 11gR2.
    Thanks.

    Sounds like a classic session state issue.
    You need to populate you page items using page rendering computations to ensure they're set to session state.
    Or if the download is triggered from a button press, you need to ensure those page items are submitted to session state, perhaps via a PL/SQL action.
    Scott

  • PDF output in character mode

    Hi,
    We are trying to print a XML out put in PDF format using dot matrix printer. The problem is, the dot matrix printer is printing in graphic mode, i.e. each line is printed as two halves. We need each character to be printed as a whole character. Due to graphic mode printing the report is not legible. Suggest some font that can be used in the template which will appear legible in dot matrix.
    Or any other way to print the PDF output in character mode.
    Regards,
    Anupam

    Hi,
    this sounds like a printer driver / firmware issue. I'd suggest to discuss that issue with the printer vendor and maybe get support from them to get the printer working for PDF files.
    Another option is to put some filters in the print queue to convert the PDF into other formats, bitmap or postscript or whatever the printer understands.
    I don't think this is a problem related to BI Publisher, as long as the PDF displays fine on your screen.
    best regards,
    David.

  • Error in generating PDF output

    Whenever, I generate a PDF output, RH goes through the process but displays an error message stating that the file_name.pdf is not found. It did the same thing when I tried generating a PDF of a sample project as well. Any pointers on how to resolve this issue?

    I am just trying to see where there could be a problem. When you generate a PDF from RoboHelp a temporary Word file is automatically created in the background from which the PDF is created. What I was trying to get you to check was whether the problem is with the PDF creation or somewhere else. If you go through the same process to create a PDF but deselect the PDF creation option BUT select the Word creation option, a Word file will be created. If that works, it will have exactly the same fonts, styles as the PDF would if you can create it.
    I am also a bit unsure what you mean. It sounds like you are generating a Word file, then changing the fonts and styles in Word. Why not just make sure that your fonts, styles in RoboHelp are correct and then just map these to your Word template when creating the Word file. Peter Grainge has some excellent tips on this on his site. It is well worth a read.
    http://www.grainge.org/pages/authoring/printing/printing.htm
      The RoboColum(n)
      @robocolumn
      Colum McAndrew

  • Transparent shadow crossing over the image in pdf output

    Hi Folks,
    In recent days, we are frequently facing problem in using of tiff format image in InDesign. In pdf output, there is some transparent shadow crossing over the image. The problem occurs in ps to pdf as well as export pdf settings. The issue was not happened for the past 5 years.
    If it is a reproducible error, we could find the root cause of the problem. But the same issue does not occur if we create the pdf again. Please see below the differences in viewing of actual image & problematic image and suggest how to resolve this and why it happens.
    Issue 1:
    Actual view of image shown in left side; Corrupted view of image shown in right side
    Issue 2:
    Issue 3:
    Now I have suggested my team to convert all tiff images to psd image format. I really don't know whether it helps. All I need is to know the root cause of the issue. Anybody please suggest would be really helpful.

    @Tyson:
    In Issue 2, horizontal green color shading is crossing above the play/pause icon in right hand side of the image.
    In Issue 3, I have displayed the screenshot of the image placed in InDesign to show the original view of the image. But the problem shows in right hand side that is pdf output view. You can see the horizontal green color shading in 1st image and light grey color shading (at the top of "NO" text) in 2nd image.
    Actual & Effective PPi of top of the image --> 597
    Actual & Eff. PPI of bottom of the image --> 477
    PS to pdf creation:
    Crops & bleeds ON, Composite CMYK color output, Image data: All, Postscript: Level3, Data format: Binary, Printer profile: Document CYMK-US. web coated
    If you need more details, I'm ready to give you. Please let me know.

Maybe you are looking for

  • DownloadService.loadResource for external jars for 1.6.0-19+

    First, be kind with my english, i'm french (nobody's perfect...) I have a JNLP into which i declare a signed jar resource main.jar. This application retreive at execution a list of signed jar names (+a.jar, b.jar+...) that i dynamically load on my ne

  • Attatching ACL's to the Document Programatically (Agent or Override)

    Hi all, I want to attatch an ACL dynamically to a Document when it is getting uploaded in the Repository. The ACL will be selected depending upon in which folder the Document is getting uploaded. I can see 3 solutions for this. 1) develop an agent 2)

  • HELP! After installing itunes 7 my library crashed and is now gone!

    Hopefully someone can help... After installing the new iTunes version it was working fine for a day or two. Then it started acting funny and one day started adding files from throughout my computer without "asking". The next day it started to tweak t

  • Compiling source files in directory separate from JDK

    I'm trying to switch from Visual Cafe to a more agnostic platform: just using a text editor and then compiling and running with Sun's JDK. The problem is that I can't actually get my programs to compile and produce class files. I suspect a Classpath

  • Getting the first row of a result set

    I need to get the first row returned from a select query that looks like this: SELECT DISTINCT parm1 FROM table1 WHERE parm1 > 10 ORDER BY parm1 Can someone please show me how to do this? Alex