Help(Urgent): Report Font Problem

I am working on a report which supposes to generate PDF formatted report. It turns out that within the report builder, it generates nice PDF report with header font as MONOTYPE CORSIVA.
When this report is put into report server, the header font is changed to ARIAL. Any ideas that where the problem is?
Thank you in advance.
Jimmy

Hi,
May I know the Oracle Reports version you are using. Whether the Oracle Reports Server
and the Builder is running in the same machine?. If not, check for the installation of the font in the machine where Server is running and add the path to the 'REPORTS_PATH'.
To solve you issue, try using the 'PDF Subsetting' feature.Go through the Chapter-Using PDF in Oracle Reports in "Oracle Application Server Reports Services Publishing Reports to the Web" - http://www.oracle.com/technology/documentation/reports.html.
Thanks,
Vidya

Similar Messages

  • Urgent report invoice problem

    I have a serious problem with a invoice report that doesn't display all the lines and only prints on one page but the total is correct please help not a guru

    Check the properties of your outer most frame in the report, vertical sizing should be variable, it is not a report generation problem but a printing problem that is why
    your totals are correct.

  • Oracle Report Font problem when run report from oracle EBS R12

    Dear All
    I have developed one Report in ORACLE REPORT BUILDER in windows environment. I see the output of that report, its ok, I deployed it on the EBS R12 which is on Linux environment, when i see the output, its fonts totally change and due to change in fonts, output not same as like in previous stage. When i print from dot matrix Printer then sometime its shrink the character and sometime break the output..
    Kindly help me in this regard, because this problem i am facing from last few days.
    i am waiting for your quick response.
    Thanks in advance....
    Regards,
    Nawaz
    Edited by: Haq Nawaz on Nov 5, 2012 11:45 AM

    Thank you very much for your reply
    I have changed the fonts in the report, but when i run it from the EBS its has the same problem. from the EBS output font look like as (COURIER) rather than CALIBRI WESTERN.
    tell me what i have to change anything.

  • PDF report font problem

    Dear all,
    All our reports are developed by reports builder 10g (under windows) and deployed on an Application Server 10g (on Linux).
    We had a problem with displaying the arabic letters, but this was solved by following the steps in the metalink doc no 726205.1 for generating arabic pdf reports on unix.
    Now, the problem is that the font used in the reports is ARIAL, but when the reports are displayed (in PDF format) the font is TAHOMA. This font conversion happens in both Arabic and English reportsl.
    I wonder how can I correct this behaviour.
    Thanks in advance for your time.
    Naglaa

    I am not sure if this may be the solution, but I think you need to use font-subsetting.
    Please have a look at the following documents:
    Generating a Unicode PDF File - 11g Release 1 (11.1.1)
    Building a Report with Multibyte Characters for PDF Output - 11g Release 1 (11.1.1)
    Regards
    Markus

  • Help urgently needed: bizarre problem - no audio in imported clip!

    Hey there!
    I have a bizarre - never the less urgent problem:
    When I import some material (presentations) which I have recorded on Mini DV with my Canon MVX10i Camcorder the following problem occurs:
    There is one particular presentation which somehow looses the audio during the import process!
    That means the imported clip has no audio even though the audfio is on tape! Other clips before and after do not have this problem - the audio is available after the import.
    A bizarre but serious problem for me. Any suggestions?
    Thanks a lot in advance
    Thorge

    I had a similar problem. When I started the tape from the beginning no audio would import. To solve it I started the tape a few seconds in and It seemed to work.
    Hope this helps.

  • **Urgent ** Reports html problem

    Hi,
    I hava this problem:
    When I generate a report in client mode I see all fields correctly but in Web mode I see ************ in the same field, why? any idea??
    tks

    This can be a font issue. Not all fonts are supported in HTML. So what happens is when you run a font not supported by HTML, the bowser will change the font to one that is supported. So the fint that the HTML is using is larger or wider then the font you used to create the report.
    Simple fix though, just make the fields wide enough so that you will see the data correctly.
    Tom

  • Please help , urgent .  mail problem

    Oracle forms/reports:
    Hi have a .csv file and i want to send this file as an attachment using utl_smtp
    e.g i had a file xy.csv located at c:\temp and when i call the procedure ,it pick the file c:\temp\abc.csv and send this file as an attachment to specific recipients
    Please suggest how to do it .
    I have installed utl_smtp and can easily send txt mails but cant do the attachment .
    I tried to work with utl_mail but it does't work . please tell me how to do it with smtp .
    regards
    P.S:
    version = 10g
    os = windows .

    By wrapper, I mean you would create a database procedure that you call from Forms. This procedure would accept a VARCHAR2 parameter for the MIME-TYPE rather than a reference to the Package Variable. Something along the following:
    CREATE OR REPLACE PROCEDURE MY_MAIL (
                   p_from VARCHAR2,
                   p_recipient VARCHAR2,
                   p_cc VARCHAR2,
                   p_bcc VARCHAR2,
                   p_subject VARCHAR2,
                   p_body VARCHAR2,
                   p_file_name VARCHAR2,
                   p_file_type VARCHAR2, etc)
    AS
        v_mime_type     VARCHAR2;
        myConn          utl_smtp.connection;               
    BEGIN
       IF p_file_type = 'BINARY' THEN   /* You could actually define PDF, DOC, etc here if you wanted to */
          v_mime_type := demo_mail.MULTIPART_MIME_TYPE;
       ELSE
          v_mime_type := 'text/plain';
       END IF;
       myConn := demo_mail.begin_mail( sender => p_from,
                                                 recipients => p_recipient,
                                                 subject => p_subject,
                                                 mime_type => v_mime_type);
       /* Now call the other DEMO_MAIL Procedures or Functions to attach your
          file, etc...*/
    END;Obviously, this code snippet will not compile. It is simply to give you a starting place for your code. :-)
    Hope this helps.
    Craig...

  • HELP URGENT Inserting Text problem!

    Can anyone tell me where I have gone wrong with my INSERT statement? I want to add user input into my Access 2000 Database when clicking on the button. The code compiles with no errors and when I run it I can get the connection to the database but when I enter data and click on the button nothing happens! This is hopefully the last part of my assignment so any ideas would be greatfully received!
    Thanks
    Han
    Here is the code:
    //Add Customer1 Class
    import java.awt.GridLayout;
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.sql.*;
    public class AddCust1 extends JFrame implements ActionListener
         private Connection Database;
         JButton addCust = new JButton("Add Customer");
         JButton cancel = new JButton("Cancel");
         JTextField CustId = new JTextField(10);
         JTextField FirstName = new JTextField(10);
         JTextField Surname = new JTextField(10);
         JTextField AddressF = new JTextField(20);
         JTextField PhoneF = new JTextField(10);
         JLabel Cust = new JLabel("Customer Id:");
         JLabel First = new JLabel("First Name:");
         JLabel Surn = new JLabel("Surname:");
         JLabel Address = new JLabel("Address:");
         JLabel Phone = new JLabel("Telephone:");
         public AddCust1()
              super("Add Customer");
              setSize(350,150);
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              JPanel pane = new JPanel();
              pane.setLayout(new GridLayout(6,6));
              pane.add(Cust);
              pane.add(CustId);
              pane.add(First);
              pane.add(FirstName);
              pane.add(Surn);
              pane.add(Surname);
              pane.add(Address);
              pane.add(AddressF);
              pane.add(Phone);
              pane.add(PhoneF);
              pane.add(addCust);
              addCust.addActionListener(this);
              pane.add(cancel);
              cancel.addActionListener(this);
              setContentPane(pane);
         public void actionPerformed(ActionEvent evt)
              Object source = evt.getSource();
              if (source == addCust){
                   //connect to DB and insert data.
                   String url = "jdbc:odbc:Mikedb";
                   String username = "guest";
                   String password = "guest";
                   Statement DataRequest;
                   //Load the driver to allow connection to the database
                   try
                        Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                        Database = DriverManager.getConnection(url);
                        System.out.println("Successful Connection" + Database);
                   catch(ClassNotFoundException error)
                        System.err.println("Failed to load JDBC/ODBC bridge." + error);
                        System.exit(1); //exit program
                   catch(SQLException error)
                        System.err.println("Unable to connect to the database." + error);
                        System.exit(2); //exit program
                   try
                        String query = "INSERT INTO Customer (Customer_id, FirstName, LastName, Address, Phone) VALUES ('"+CustId.getText()+"', '"+FirstName.getText()+"','"+Surname.getText()+"', '"+AddressF.getText()+"', '"+PhoneF.getText()+"')";
                        DataRequest = Database.createStatement();
                        DataRequest.close();          
                   catch(SQLException err)
                        System.out.println("SQL Error: " + err);
                        System.exit(3);
              else if (source == cancel){
                   dispose();
                   CustMenu cm = new CustMenu();
                   cm.show();
         public static void main(String[] argurments) {
              AddCust1 ac = new AddCust1();
              ac.show();
    }

    Hey, You have forgotten to code,
    int count = DataRequest.executeUpdate(query); statement.
    Anyway, you need to close the connection object also. With out updating the database you are expecting the database to show results.
    Hope this helps.
    Sudha

  • Pls Help urgent with DATE problem

    Dear Sir,
    I have to make a classified system using asp and its almost
    ready but.....,
    i really have a big hope that someone helps me here
    I have two columns to play with
    1. strDate
    2. StrDateDisplayAD
    Once the user submits his AD I want the date to be inserted
    into the date
    column strDate which is working perfectly well
    but at the same time I want the date to be added + 5 days and
    insert into
    the strDateDisplayAd column
    for Example,
    Lets say someone post his ad on 5th July, then the values in
    the column must
    be
    strDate | StrDateDisplayAD
    5/6/06 | 10/5/06
    Thanks in advance

    Use a hidden form element that has a value of 5 days added.
    In ASP VBScriptit would look like this:
    <input name="StrDateDisplayAD" type="hidden"
    id="StrDateDisplayAD"
    value="<%= FormatDateTime(DateAdd("d", 5, Now()),2)
    %>">
    Ken Ford
    Adobe Community Expert
    "Techy" <[email protected]> wrote in message
    news:e883h2$it2$[email protected]..
    > Dear Sir,
    >
    > I have to make a classified system using asp and its
    almost ready
    > but.....,
    > i really have a big hope that someone helps me here
    >
    > I have two columns to play with
    >
    > 1. strDate
    > 2. StrDateDisplayAD
    >
    > Once the user submits his AD I want the date to be
    inserted into the date
    > column strDate which is working perfectly well
    >
    > but at the same time I want the date to be added + 5
    days and insert into
    > the strDateDisplayAd column
    >
    > for Example,
    >
    > Lets say someone post his ad on 5th July, then the
    values in the column
    > must
    > be
    >
    > strDate | StrDateDisplayAD
    >
    > 5/6/06 | 10/5/06
    >
    >
    > Thanks in advance
    >
    >
    >

  • Please help, urgent - address book problem

    when i save a contact (mobile number), then later on or a few hours later, i cannot find that contact saved in my address book. this has hapenned multiple times to me.

    Do a simple reboot on the BlackBerry in this manner: With the BlackBerry device POWERED ON, remove the battery for a minute, and then reinsert the battery to reboot. A reboot in this manner is prescribed for most glitches and operating system errors, and you will lose no data on the device doing this.
    Now, see if the numbers are in the Address Book. AND, make sure no filters are checked.
    ALSO, look at Options > Status > press the Menu key > Database sizes.
    What is the size of your Address Book data?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • [Solved] Strange font problem - after update.

    Hello guys,
    encountered a strange small font problem on sites with code wrappers like stackoverflow/blogs/jsfiddle. After update. took a look at my font setup all looks good.
    I've also checked the settings for gtk2/3 and no problems there.
    INFO:
    Google-Chrome-Beta. [same thing]
    Firefox [same thing]
    /etc/vconsole.conf ->
    KEYMAP=sv-latin1
    FONT=ter-112n
    .gtkrc-2.0->
    gtk-theme-name="Clearlooks"
    gtk-icon-theme-name="Faience"
    gtk-font-name="Tewi 9"
    gtk-cursor-theme-name="Adwaita"
    gtk-cursor-theme-size=0
    gtk-toolbar-style=GTK_TOOLBAR_BOTH
    gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
    gtk-button-images=1
    gtk-menu-images=1
    gtk-enable-event-sounds=0
    gtk-enable-input-feedback-sounds=0
    gtk-xft-antialias=1
    gtk-xft-hinting=1
    gtk-xft-hintstyle="hintfull"
    gtk-xft-rgba="none"
    /gtk-3.0/settings.ini->
    gtk-theme-name=Clearlooks
    gtk-icon-theme-name=Faience
    gtk-font-name=Tewi 9
    Any ideas on this problem would be greatfully appreciated.
    http://imgur.com/MD7yPI2
    Mod note: removed huge image -- WorMzy
    Last edited by Learning (2015-05-22 21:55:07)

    Update:
    Tried reinstalling, change the fonts, remove all font clear the cache.
    change, look up the settings, looked up size, tried monitor dpi.
    checked all the config files for anything remotely related to this problem.
    Had a quick look at the bug tracker for google-chrome-beta as well no reported
    font problems as far as i can find.
    Update2:
    Tried adding custom.css to the browser not even that worked.
    update3: [SOLVED]
    So i solved the problem.
    The problem was a faulty font that was stuck and used in the pre somehow.
    Removed and added another to the list and somehow that worked.
    recommendations - if anyone has this problem in the future.
    open firefox and look in the font tab what is used. and remove that
    or try to install a fixed one. that should work.
    -Nothing has yielded any working results.
    So any ideas at this point would be most appreciated.
    Thanks,
    -L
    Last edited by Learning (2015-05-22 21:59:14)

  • TA25225 Display Flickers in my 21" Imac Intel. This happened after the fan noise in my machine. I also reported the problem and gave to the service centre, but the problem still persist. Please help. I purchased it 3 - 4 weeks ago

    Hello,
    I purchased my imac intel 21" 3-4 weeks ago and in the 2nd week i faced an issue with the machine. When i switched on in, there was a fan noise and a white screen. The machine had hanged. I reported the problem and gave to the service centre. After testing for a week, they said that there is no problem with the imac. Again i faced the same problem after receiving it from the service centre. They again tested the machine for 3-4 days and reported as no problem with the machine. Couple of days back, I received the machine from the service centre, and on the same day when i switched it on, there are flickers in the display. Please help me solve the issue. I am from India. The service here is very bad.
    Hope for a resolution
    Thanks

    Hello RedDevil07
    Yes I agree with seventy one. It's common sense to do this, especially now. I would also contact AppleCare and report this issue with them, it will get documented and you will have a caseID that you can refer to when talking to them in the future should this issue go one.
    Be polite with AppleCare and your AASP. Hopefully everyone is being honest and trying to help you and not what might appear to be the opposite.
    Patience is a virtue, but I thoroughly understand your frustration.
    Let us know how it goes, we are here to help in whatever way we can.
    I encourage you to contact AppleCare to report this experience and get their recommendations. There is an expectation that you should have that AppleCare is there to help you as a customer. I am sure they will too!

  • Urgent, Please help me in this problem.I am getting problem while installation

    I am using Windows 8 in my system. I am trying to install Sql Server in system . Everything is fine, but finally  when i click on install button i am getting the following error .
    please help me quickly. I well be thankful to you.

    Triple post meanwhile:
    http://social.msdn.microsoft.com/Forums/en-US/7fafa499-ca1e-42f7-a117-73df924d9847/urgent-please-help-me-in-this-problemi-am-getting-problem-while-installation?forum=sqlsetupandupgrade
    http://social.msdn.microsoft.com/Forums/en-US/a1c7978c-2f84-495f-a8b6-9e9fe46654d7/getting-problem-while-installing-sql-server-2012?forum=sqlsetupandupgrade
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • HT1689 I downloaded 2 music singles, they played fine, now they've disappeared, I have the receipt, when I try to report the problem it says cannot connect to iTunes Store! Help!!!

    Please help! How can I download them without paying for them again. If I view my download history, they show up, but if you click on them, the option is to buy them, rather than play or download.

    Depending upon what country that you are in (music can't be re-downloaded in all countries) then try deleting those two tracks from your iTunes library and redownload them via the Purchased link under Quick Links on the right-hand side of the iTunes store home page on your computer's iTunes : re-downloading.
    If you aren't in a country where you can re-download music or if they re-download in the same state then try the 'report a problem' link from your purchase history : log into your account on your computer's iTunes via Store > View My Account and you should then see a Purchase History section with a 'see all' link to the right of it ; click on that and you should see a list of your purchases ; find those songs and use the 'Report a Problem' link.

  • I want to buy an in-app purchase but i don`t remember my security questions and i cant access my recovery email either, what can i do? i have 100$ on my account and cant use it because of that problem, please help URGENT

    I want to buy an in-app purchase but i don`t remember my security questions and i cant access my recovery email either, what can i do? i have 100$ on my account and cant use it because of that problem, please help URGENT

    If you have a rescue email address on your account then you can use that - follow steps 1 to 5 half-way down this page will give you a reset link on your account : http://support.apple.com/kb/HT5312
    If you don't have a rescue email address (you won't be able to add one until you can answer your questions) then you will need to contact Support in your country to get the questions reset : http://support.apple.com/kb/HT5699

Maybe you are looking for

  • Can I replace internal hard drive using only my system recovery disc?

    Hello Everyone and thank you so much for your help! I have a Vista Desktop and have determined that I need to replace the hard drive.  I am hoping that I can set the jumper pin on the new hard drive to primary, remove the old drive, install the new d

  • Syncing issues between Macbook Air and Ipad

    Hi. I have an iPad 3 and the new Macbook Air. I am using the latest versions on both my devices.  When i connect my ipad via the cable it connects and disconnects immediately, and this keeps on happening again and again and again. I have tried both t

  • ITUNES HAS ENCOUNTERED A PROBLEM AND NEEDS TO CLOSE  PROBLEMS

    PLEASE HELP ME. I CAN NOT GET INTO ITUNES. I KEEP GETTING THE ERROR MESSAGE "ITUNES HAS ENCOUNTERED A PROBLEM AND NEEDS TO CLOSE" ERROR . WHAT MUST I DO? ITRIED TO REINSTALL THE SOFTWARE,BUT IT DID NOT WORK. HELP

  • Video Playback issues in HTML5 using IE10

    Hello All: We built a project in Captivate 6 and published it to HTML5. The project contains two videos that were converted to MP4. When running the program in Chrome, all works as expected. However when running in IE10, no video is played. Any solut

  • How to disable a default selection checkbox in the tableview

    Hi All,          How to disable a default selection checkbox in the tableview ??? I have  a tableview  with a iterator class mentioned on the iterator attribute of the table view. Table is a MULTISELECT tableview . Is it possible to disable or make i