Font subsetting issue with srw.run_report

I have PDF subsetting as
"Courier" = "MSGOTHIC.TTC"
I have a report emp.rdf. This emp report just displays the data from emp table.
I have a report dept.rdf. This dept report just displays the data from dept table.
In the after report trigger of the dept, I added
srw.run_report(report=emp destype=file desname=emp.pdf desformat=pdf);
I am running the dept report from command line as
rwclient server=<servername> userid=<user/pwd@db> report=dept destype=file desname=dept.pdf desformat=pdf
The report hangs. I tried moving the after report trigger to before report trigger and it fails too.
Any ideas?

Hi,
Can you try running this report from the Reports Builder, ie, use File > Generate to file > pdf, and see if both the master and child files are generated.
If yes, can you post both server and engine trace file contents (last few lines) of the instance when you run it from the server, and not from Builder.
Navneet.

Similar Messages

  • Font smoothing issues with Samsun 23 inch LCD

    I am having a font smoothing issue with my MacBook and my Samsung LN-S2352W 23 inch LCD (http://www.samsung.com/Products/TV/LCDTV/LNS2352WXXAA.asp). I am using the mini-DVI to VGA adapter and the plugging that into the VGA port of my LCD. It doesn't matter which app I run, but as long as it has fonts, they come out blurry, hazy, colors bleed, etc.
    I have played with the font smoothing settings and that has not helped at all. I have heard of TinkerTool and will try it to see if it makes any difference, but am not expecting much.
    I also have a PC running Windows Vista and I connected it to the VGA port of my LCD. Wow...the difference in picture quality was astounding. I'm ******. I want my MacBook to look that sweet on my LCD.
    Anyone have any thoughts? Can this be fixed?

    TinkerTool didn't make any difference for me. I played around with it and found that there was no improvements using it or disabling font smoothing.
    I have watched DVD's on this LCD being played with my MacBook. I have seen 2MB+ full screen digital pictures. Both the DVD and digital pics look absolutely amazing on it.
    It's only the fonts that appear blurry or in some areas they appear to have a shadown to the right. This happens with any text that appears in every app.
    Keep in mind too, Windows Vista looks perfect on this display, but my prized MacBook looks really sub-par.
    I'm not quite following you on changing the display preferences to change to pixel size to that of the MacBook...

  • Does report2.5 works with srw.run_report and Oracle Apps11.0.3

    Hi,
    I have reports2.5 and using srw,run_report I want to call another report. NOw I have registered this in oracle apps 11.0.3 . Now through oracle apps if I run the main report it has to call the child report (calling via srw.run_report) and the output should be put in the Unix server directory /tmp/
    Please help Ratheesh.
    Iam not sure whether report2.5 works fine with srw.run_report and oracle apps11.0.3

    Try this isntead.
    java -classpath d:\jdbc\classes12.zip;. jdbccheckup
    an error occured:
    Exception in thread "main" java.lang.NoClassDefFoundError:jdbccheckup
    Why??????

  • Font color issue with inserted HTML content in JTextPane (HTMLEditor)

    Hi everyone,
    I have a very serious issue with the HTMLEditor I'm developping. This editor is a little bit special since it is intended to edit blocks of HTML content that are loaded when the editor is initialized.
    You can in fact decide to keep this loaded HTML content or start a new HTML document from scratch. Alright, now my issue is the following :
    When text is loaded, it's properly rendered. I have a functionality which let's you see the HTML code from the HTML document used in the editor, so I can check and see if code is correct, and yes, it's correct.
    The problem is that when I try to change the color attribute of some text on my loaded content, nothing happens ! I don't know what's the matter with this bug, I only have it with the color attribute, with every other attribute everything's fine (font, size, etc.)
    The funny thing is that, after I change another attribute for loaded content, like font family, then changing color attribute funcionnality starts to work again !
    I've also noticed that I don't have any of these problems when I start my HTMLDocument from scratch (when I create a new HTML document and start typing text).
    Another weird thing, is that I have a feed-back feature in my editor which reflects attributes for text over which the caret is positionned. For example, if you put caret over red text, the color combo box displays a red value, you know, just like in MS Word. Well, with my loaded content if I have a red text color and I decide to put it in green, the color combo box displays the green value when I click over text for which I have changed color, but in my JTextPane it's still red !! And when I try to see the HTML code generated nothing has changed, everything is still red !
    There is something really strange here, this means that when I get the attributes of the loaded text from the HTMLDocument, color appears to be green, but when it gets rendered in the JTextPane it's still red and when it gets anlyzed to produce the corresponding HTML code, these changed attributes are not taken into account.
    But the most weird thing above all, is that I don't have this bug everytime, sometimes I start my HTML editor applet and it works fine, and some other times this color issue is bakc there. Is this a known bug for Swing API or not ?
    =============
    This is more or less my technique :
    //I declare a global reference to my HTMLDocument
    HTMLDocument _docHTMLDoc;
    //Create a JTextPane
    JTextPane _tpaEditor = new JTextPane( );
    //Set type content to automatically select HTMLEditorKit
    _tpaEditor.setContentType("text/html");
    //Get a referene to its HTMLEditorKit
    HTMLEditorKit _kitHTMLEditor = (HTMLEditorKit) _tpaEditor.getEditorKit( );
    //I then have a function to create new documents
    void newDocument(){
      _docHTMLDoc = (HTMLDocument) _kitHTMLEditor.createDefaultDocument();
      _tpaEditor.setDocument(_docHTMLDoc);
       //I do other stuff wich are not important to be shown here
    //I then have another function to load content
    void loadContent(){
       //I get content from a HashMap I initialized when I started my applet
       String strContent = (String)_mapInitParameters.get("html_content");
       //I set content for my editor
       _tpaEditor.setText(strContent);
    //Notice.. I have tried many other ways to load this text : via HTMLEditorKit and its insertHTML method, I
    //have also tried to store this content in some reader and make HTMLEditorKit read it... and nothing,
    // I always get the bug
    //To change color it goes like this :
    JComboBox _cboColor = new JComboBox();
    //I correctly initialize this combo with colors
    //then I do something like this
    ActionListener _lst = new ActionListener(){
       public void actionPeformed(ActionEvent e){
          Color colSel = (Color) _cboColor.getSelectedItem();
          MutableAttributeSet mas = new SimpleAttributeSet();
          StyleConstants.setForeground(mas,colSel);
          setAttributeSet(mas);
    _cboColor.addActionListener(_lst);
    //Set Attributes goes something like this
    private void setAttributeSet(javax.swing.text.AttributeSet atrAttributeSet) {       
            //Get current 'End' and 'Start' positions
            int intCurrPosStart = _tpaEditor.getSelectionStart();
            int intCurrPosEnd = _tpaEditor.getSelectionEnd();
            if(intCurrPosStart != intCurrPosEnd){
                //Apply attributes to selection
                _docHTMLDoc.setCharacterAttributes(intCurrPosStart,intCurrPosEnd - intCurrPosStart,atrAttributeSet,false);
            else{
                //No selection : apply attributes to further typed text
                MutableAttributeSet atrInputAttributes = _kitHTMLEditor.getInputAttributes();
                atrInputAttributes.addAttributes(atrAttributeSet);

    hi, friend!
    try this:
    void setAttributeToText(JTextPane pane, int start, int end, Color color) {
    MutableAttributeSet new_att = new SimpleAttributeSet();
    StyleConstants.setForeground(new_att,color);
    HTMLDocument doc=(HTMLDocument)pane.getDocument();
    doc.setCharacterAttributes(start,end,new_att,false);
    It works fine in my Application, hope will work in yours, too.
    good luck.

  • Problems with SRW.RUN_REPORT on 10gReport Server (9.0.4)

    I have recently upgraded to 10gReport Server (9.0.4) and for the most part have no problems running reports. However, when running reports that call other reports, the srw.run_report server call hangs. Found that this is a bug in 9.0.4. Work around is to not include the server parameter in the run_report string.
    Current string appears this way in the Before Report Trigger:
    srw.run_report('batch=yes report=(reportpath)\comptype.rdf destype=cache desformat=pdf');
    srw.run_report('batch=yes report=(reportpath)\stdomicile.rdf destype=file desformat=pdf');
    However, when running from the calling report, it will render in pdf for the user, but the comptype.rdf and stdomicile.rdf reports error with the following message:
    REP-52251: Cannot get output of job ID 966 you requested on Wed Dec 14 10:17:30 CST 2005.<P>REP-56033: Job 966 does not exist
    REP-52251: Cannot get output of job ID 965you requested on Wed Dec 14 10:17:30 CST 2005.<P>REP-56033: Job 965does not exist
    respectively.
    When checking OH\reports\cache..all reports are available and printable, but for some reason they are not rendering in pdf to the screen. I did not have this problem prior to moving to 9.0.4 report server.
    Does anyone have any ideas as to why the reports will not render correctly? Users cannot get to the cache file to manually print themselves.
    any help will be appreciated.

    We're having the same problem with our upgrade to 10g (9.0.4). I'm getting the REP-52251 error and no report output in Adobe.
    Were you able to resolve your problem?
    Bill Hartenberger
    [email protected]

  • Font/Type Issue with Slideshow & Transitions

    DVDSP 4.1.0. I've created a slideshow in DVDSP. I created all the photos in Photoshop.Each has a small caption at the bottom created as part of the actual photo. When I create a slideshow in DVDSP everything looks great. However, if I had a transition to the slides (say a fade through color for 1 second) the type on the caption looks crazy bad on SOME DVD players. Looks fine on my computer and two of my DVD players, but on one other one (and unfortunately my clients) DVD player the type looks very bad when the transitions have been added to the slideshow. The photo still looks great, but the type at the bottom looks horrible. Clearly it's an issue with some DVD players and some don't seem show the problem. Just wondered if anyone had any insight into this problem. Thanks.

    hi, friend!
    try this:
    void setAttributeToText(JTextPane pane, int start, int end, Color color) {
    MutableAttributeSet new_att = new SimpleAttributeSet();
    StyleConstants.setForeground(new_att,color);
    HTMLDocument doc=(HTMLDocument)pane.getDocument();
    doc.setCharacterAttributes(start,end,new_att,false);
    It works fine in my Application, hope will work in yours, too.
    good luck.

  • Font size issue with the email functionality of infopath form

    Hi,
    We have a SharePoint list created and customised the form to send the form via email using email functionality in infopath form.
    We have made the font size of the form fields( rich text box) to 11. But it is showing as 10 in email. Also for a text box we set the font size to 14. But it is 13.5 in the email.
    Could anyone please let me know how to fix this issue?

    http://social.technet.microsoft.com/Forums/sharepoint/en-US/afbd9fc3-b8d3-4ef9-a8bf-9cb136d12039/formatting-problem-with-email-from-an-browser-enabled-infopath-2010-form-in-sharepoint-2010?forum=sharepointcustomizationprevious
    Yes, this is normal. Forms Services has to convert the form to an aspx page, and things get lost in translation when this gets submitted via email.  My workaround has always been to set static widths to columns/controls, but you said that didn't work
    for you?  It's always worked for me.
    https://go4answers.webhost4life.com/Example/infopath-send-form-email-162481.aspx
    http://www.formotus.com/15413/blog-infopath/making-the-most-of-email-submit-with-infopath-and-formotus-forms

  • How do I solve my FONT conflict issue with the system Helvetica Neue

    Everytime I start up in Leopard I get the error message "There is a conflict with the "HelveticaNeue" font file". How do I resolve this issue? I require the Postscript versions of Helvetica Neue for my design programs. I use Linotype FontExplorer to manage the fonts. Is there a way to rename these postscript versions so they don't conflict?

    Currently, the only way is to remove Apple's supplied versions of Helvetica. They have exactly the same internal names as the PostScript versions. Follow the instructions in section 4 of my article, Font Management in OS X, to see how to do that.
    The link, or one of the links above directs you to my personal web site. While the information is free, it does ask for a contribution. As such, I am required by Apple's rules for these discussions to include the following disclaimer.
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Font color issue with animated text in Captivate 5

    When I prepare a new animated text and open the property and then click the square to choose a color , I only get a  little part of the color panel (when I click the color box) and I have  no possibilities to enter the color code either:
    I'm working with a Windows XP, 64 bits desktop and I have Captivate 5 version 5.0.1.624.
    Any ideas to solve this issue would be appreciated as it is becoming urgent for me.

    @Lieve: You're on the French version of Captivate 5 aren't you?
    Can you provide a screenshot of what the Animated Text font colour dialog looks like on your PC and upload it here?
    This is what that box looks like for me:
    It seems that on this user's PC the colour picker isn't able to float on top of the dialog as it should.
    I encouraged Valerie to post her issue on this forum in the hope that one of the Captivate developer technicians would chime in with a possible solution.  I think this one has got to be some kind of bug due to a language version of Cp.

  • Font style issue with exporting report in Crystal Reports 2008

    Hi,
    I got stuck on the below issue for a while. Please can anyone help on this?
    When I designed and executed a report in Crystal Reports 2008 on my local PC, the font style and size used in charts were exactly what I was expecting.
    However, after I exported the report to our BusinessObjects CMC and displayed it in InfoView, the font style and size in charts looked quite different from what they were in CrystalReports.
    Any ideas of how to fix this issue?
    Thanks!
    BAI

    Hi Nanda Kishore,
    This is because you do not have proper rights on Business View Manager.  Whenever you create a dynamic parameter in crystal and try to save the report on BO, it creates a Business view automatically.  Now in your case, it is unable to create a business view due to insufficient rights.
    Go in Business View Manager u2013 Repository exploreru2014You will find Dynamic Cascading Prompts folderu2014Right click on that and go in rights and add your user information and give full rights.
    Also make sure that your BO and CR designer on same version and patch level.
    Thanks,
    Sastry

  • Font sizing issues with JTextPane

    Hello all,
    I have a question which I hope won't be too difficult. Here is some background. I have created both a swing application that is a text editor. The user can cut, copy, and paste text. The user can also change the "font style" and "font size" through a series of combo boxes. When the application is launched there are 2 user inputs which indicate the size of the JTextPane area. For example, the user would type in: >java texteditor 2.5 3.0
    and the editor launches with a JTEXTPANE width of 2.5 inches and height of 3.0 inches. This is to be a WYSIWYG type editor which will eventually print what is contained in the JTextPane.
    Finally my question. When the user decides to change the font size, I have noticed that the font size does not appear to be the correct size as compared to a MS Word Font Size. For example, I type a phrase in MS Word and set the font size to be 12, and I type the same phrase in my JTextPane to be 12, the text in the JTextPane is much smaller. I actually have to set the font size to be 16 in the JTextPane to match the MS Word Font size. I have used many differnt fonts and in every single case the in JTextPane I have to add 4 to the font size to make it match the font size of the same phrase in MS Word. Does anyone have any idea what is going on here? Does Java (I am using JDK118, it's REQUIRED on my part and swing 111) have it's own font rendering engine that is different than what I see in MS Word? Why would 2 fonts, 1 in MS Word and another in a JTextPane, appear differently? The JTextPane is always 4 too small. I can compenstate for this by adding 4 but that does not tell me why it is happening.
    joberoni

    Thanks for your response Eric. I have made sure that the view I am looking at in Java is in fact 100%. I realize what represents, for example, 3 inches in ms word according to thier "rulers" does not actually represent 3 inches. That actually depends on the screen resolution and pisels per inch. And while I realize that the font I see on the screen is not the same font that is printed, I still expect to see in Java and in ms word, 2 fonts b appear to be the same size if both are being rendered at 100%. I even did the same experiment in Notepad which and a paint program and I get the same result. I can't help but think if I define a 3 inch area in any program, be it any word processor or graphics program, that the font sizes for a given font should appear the same size. And while the printed font is something completly different, I still still don't understand why the screen fonts appear in a smaller size in a Java JtextPane and probably other controls as well. I just don't get it.
    joberoni

  • Font Mapping issue with Arial Unicode MS font

    Hi All,
    I was able to do font mapping for Arial Unicode MS font (.ttf) in BIP version 10.1.3.4.
    But after applying the patch 10256764 I am not able to see the Arial Unicode MS font in the Font Selection drop down box in BIP .
    I have copied some other .ttf fonts to the .\ jre\lib\fonts folder and they are appearing in the BIP
    Does BIP patch 10256764 not support Arial Unicode MS font ?
    Please help me...
    its resolved .Font name extention should be in lower case (.ttf)
    Edited by: deepz on May 5, 2011 10:15 PM

    There is no BOLD font TTF files for Arial Unicode MS.  No resolution at this point of time. Closing the issue.
    Edited by: vamsee m on Apr 27, 2011 9:29 AM
    Closing this issue

  • Font printing issue with InDesign CS4

    Hello all,
    I am at my wits end with a small but particular problem. I have an InDesign publication that is using a "Hands" font. For some reason, InDesign will not print a particular text box with just one "hand" character. However, it will print the same hand character in another text box. He're the other weird part. When I export the document to a PDF, the missing hand prints just fine! InDesign just doesn't want to print this particular box and font. Has anybody ran into this problem before?
    Thanks a bunch!

    Alec is right the easies way to handle this is to create Outlines which effectively converts the type to a vector shape.
    To be on the safe side I always drag a duplicate of my type outside the print area directly to the left using alt + shift key, that way i still have live type that I can edit if I have to go back. It also keeps the font embeded in the document when I package it so it can be identified by the pritner if needed for some reason.Then I export the PDF and run a Acrobat PRO preflight just to be safe and correct anything in the profile.

  • Font/Formatting issues with Reports/Forms

    Hello,
    Can you please allow us to specify the formatting attributes in Portal Reports and Forms ? In Portal reports, for e.g, it would be great if we had one set of formatting for the report header and another for the report data. Same way, for forms, we would like to format the labels in forms and different formatting for the rest of the form.

    One thing you might do is this. Don't display the Title View in your reports. You can do this either by deleting the views from the Compound Layout or, within Edit Dashboard, by selecting only the view that contains the report. (Obviously, if your report has several view, you would need to choose the first route.)
    Instead of the Title View, do this: In the Dashboard section which contains both reports, click on the "Rename" button. Type the name of that best illustrates both reports, check the "Display Section Heading" checkbox and click "OK."
    Next, click the "Rename" button again and this time go in to the formatting section to format as required. (Note: After you check the checkbox, if you don't click "OK" right after, the check mark won't stick. So click "OK" and then go back in to do any formatting you wish.)
    This method allows the user to collapse the section and still see what the section is about. This is good practice when you have several reports in one dashboard page. Even collapsing all the sections, you can see what is "inside" and expand the appropriate section.
    HTH,

  • Continuing font encoding and tag issues with snow leopard and CS4oI

    I am looking for help with a font handling issue with snow leopard and cs4 Indesign. Despite numerous calls and hours on the phone neither Apple nor Adobe has been helpful. I have had this issue open with Adobe since oct 5 but they remain totally unresponsive to date. I need to be able to use Type 1 fonts and do the following , export a pdf from Indesign with the following attributes: 1) xml tags for stories and objects. 2) have the fonts encoded as ansi and embedded.
    Some additional information  - exporting to ps is not an option as it destroys the xml tags. and doesn't guarantee that the fonts won't become CID or some other odd encoding.
    As it stands now,
    Leopard (10.5.8) and CS3 creates ansi encoded fonts with xml tags.
    Leopard (10.5.8) and CS4 creates ansi encoded fonts with xml tags.
    Snow leopard and CS3 creates ansi encoded fonts and xml tags
    Snow leopard and CS4 creates custom subsetted fonts and some xml tags.
    If any one has any advice on how to force specific font encodings from CS4 pdf exports so that i can preserve the tags and get the correct fonts I would be grateful.

    The font encoding is not a function of the OS version, but rather of how a font is internally encoded and the content you are representing with the font.
    If you are seeing a difference between MacOS 10.5 and 10.6 with the same Adobe software, it probably has something to do with use of a system font that is somehow different from one version of the OS to another. InDesign does not use any of the OS' font handling software.
    Assuming that the fonts are embedded, subset or not, what is your issue with whether a font is ANSI-encoded, custom-encoded, or CID-encoded? It should make no difference for purposes of workflow beyond InDesign for software that adheres to the PDF specification (including all versions of PDF from 1.3 and up to 1.7 plus ISO 32000-1 PDF and all versions of PDF/X and PDF/A).
    Neither InDesign or any other Adobe application provides user choices for the encoding since it shouldn't make a difference. The encodings chosen by Adobe's core technology components are for a combination of optimization and to support proper text search, copy, etc.
              - Dov

Maybe you are looking for