Hierarhy triangle in PDF

Hi,
We have the GL account hierarchy based report in Report designer. When I execute the report, all the hierarchy nodes (triangle hierarchy icon) are appearing properly.
After clicking on 'Print Version', report is displayed in PDF format on web-page. In this format Hierarchy icons are not displayed properly. We can see small square box around triangle icon and there is white line appearing on top of that icon. It seems spaces around triangle icons are highlighted in PDF which looks very ugly.
Has any one faced such issue before?
I believe this has something to do with ADOBE driver. In MIME, everything looks fine.
Thanks,
Samay

No. I am on Windows XP only. Nothing has been changed since I have created this report.

Similar Messages

  • How to find resolution of images in a PDF?

    I have Acrobat Pro 8, and was wondering if there was a way to find out what the resolution of the embedded images are?
    Seems like a simple thing but I for the life of me cannot find it.
    Thank you very much for any information regarding this!
    - MIke

    Use the Preflight tool. Advanced > Print Production > Preflight. Click the triangle beside PDF Analysis to open preflight profiles which check for certain conditions. Pick one of those like "List images below 300 ppi." You can also duplicate one of the profiles and edit it to choose whatever target resolution you want to check for.

  • PDF icons suddenly have a yellow triangle with an "!"...

    suddenly my pdfs have a yellow triangle with an "!" in it as the default icon in the Finder (running 10.5.8). if I choose Get Info and change the default "Open with..." application from Preview to Adobe Acrobat, it's fine, the icon shows up as an Adobe Acrobat icon, but if I change the default program back to Preview the yellow triangle comes back. this was not the case a few days ago. not sure what I did to make this happen.

    Yam--
    First question: is all your software up to date? (better yet--has it been updated recently?)
    Doc

  • Pascal's Triangle Problem

    Hey there guys. I was looking around the forums seeing if there was anything that someone posted simliar to my assignment. While there were SOME similar things, I think mines a bit more specific. Let me just state here that I don't want anyone to just come out and do the assignment for me, nor do I think that anyone would be willing to. Anyways, here's what I am dealing with.
    I am to design a method which uses recursion to print the n-th line of the Pascal's triangle. I have a few ideas in my head about how to make it, but I just can't translate my thoughts into words.
    My first guess is that my method declaration should look something like this:
    public int println(int n)
    }But I'm just at a brainlock. My class really hasn't touched recursion extremely in-depthly expect for what was needed for AP Exam and Binary Search methods. Usually I can figure this stuff out, but ahhh!
    Anyways, any help (aka nudge in the right direction) would be very appreciated.

    A recursive function can be explained as a function defined in terms of itself.
    It is a mathematical concept. Let's take a look at something simple, like fibonacci numbers. Fibonacci numbers are defined in math something like:f(1) = 1
    f(2) = 1
    f(n) = f(n-1) + f(n-2)What this means is that the first two fib numbers are 1 and 1, and every fib number after that is the sum of the two numbers immediately preceeding it. So if we unroll the fibonacci numbers, they are:1 1 2 3 5 8 13 21 34 ...Now we want to implement a method in Java that accepts a single int argument, n, and will return the nth fibonacci number. One way is to do this recursively as such:public int fibonacci(int n) {
        if (n == 1 || n == 2)
            return 1;
        return fibonacci(n - 1) + fibonacci(n - 2);
    }(what we haven't handled is when n < 1, but since this is just to increase understanding of recursion I will omit that)
    What you see is a commonality with all recursive functions, a base case and a recursion step. All recursive methods must have a base case or they will run infinately. Similarly all recursive methods must have a recursion step, for the simple reason that they would not be recursive functions otherwise. Another thing that all recursive functions have in common is that the recursive call is made on some narrower scope (in this case n less 1 and n less 2) resulting in a call drawing ever closer to the base case (not doing so would also result in infinite recursive calls).
    Note: sometimes fibonacci numbers are defined to have the 0th number as 0 and the 1st number as 1, for me that is matter of taste and still results in the same sequence of numbers, with an added 0 at the front.
    In your example, the base case is when n == 1, and the recursion step is the call to fillN with n less 1 (i.e., narrowing the scope). The thing that is different in your example is that the resulting array is being passed around in the recursive calls, this is quite common for accumulating results as the recursion is being wound up (the calls themselves) and even down (when calls return, like in your case).
    You should try tracing out the calls on paper with a reasonably small n, this will better help your understanding. Let me do it with n == 2.fillN(2, a) // a = [0, 0]
    // n is not 1 so we do the recursive call
    fillN(1, a) // a = [0, 0]
    // n is 1 so we do the base case
    array[0] = 1 // a = [1, 0]
    // returning back to the call with n == 2
    // we run through the loop (i begins at n - 1 or 1)
    array[1] += array[0] // a = [1, 1]
    // i becomes 0 which is not > 0 so we exit the loop
    // the recursion has ended and a is now [1, 1]Now you try it with n == 3.
    ps. slightly off-topic, there is a great article by Olivier Danvy and Mayer Goldberg called "There and back again" on the programming pattern of traversing one data structure as recursive calls are being made and traversing a different data structure as the calls are returning (hence, there and back again or TABA). If you're interested you should check it out (Note: they use Scheme in their examples, but that doesn't mean that there's nothing to learn from it if you don't know Scheme):
    http://www.brics.dk/RS/05/3/BRICS-RS-05-3.pdf
    Message was edited by:
    dwg

  • Importing illustrator pdfs into photoshop sometimes won't allow me to open and check resolution?

    Here's the scenario:
    Customer sends me an illustrator file with an embedded image. I need to check the resolution of the image to see see if it is high resolution enough for print. I delete all art but the image in illustrator and then save that file as a pdf with the illustrator default.
    I drag that pdf file into photoshop where I get the "Import PDF" dialog box. I know if I select the "Pages" button, then the resolution and color that appears in the dialog box are not the true specifications for the image. I have to select the "Images" button and open the file from there HOWEVER sometimes this option is not available and the "open" button is grayed out. I have yet to figure out why this happens on some of the pdf files I've saved from Illustrator.
    This is the only way I have found to check resolutions on embedded files where I do not have the actual linked graphic. Does anyone have any ideas? Thanks for any help!

    Just check the resolution in Illustrator instead of exporting a PDF to check in Photoshop.
    If the image only is selected then the resolution is displayed in Control bar.
    It may be in a nest of groups so either double-click repeatedly on the image until you've drilled down to it or select it in the Layers panel where the disclosure triangles will give access to it.

  • Preview and Adobe fonts problem/missing in PDF

    I have a PDF document that doesn't show some fonts. The PDF was displaying fine on preview and then all of the sudden the next day it got messed up. I didn't performed any update or installed any new app. The problem persists in both Preview app and Adobe Reader; at least Adobe tells me: "Cannot find or create the font 'BYGBIR+Helvetica-12-0'. Some characters may not display or print correctly." Here's a screen shot of what it looks like.

    L Huffman,
    First of all, Welcome to the Discussions!
    Try to select one of files in question by clicking once and then press the key combo command + i or go to the File menu and select Get Info.
    Once the Get Info pane is open drop down (if not already in the open position) the disclosure triangle next to "Open with:" and change the application that will open "this" file. To change all files of the type make sure to click on the "Change All" button.
    That should do it....post back if that is not what you are trying to do.
    littleshoulders [:-)

  • How can i attach an mp3 in pages and convert it to a PDF

    I attach an MP3 to my pages document it it works fine.  But when I convert the file to a PDF it doesn't transfer to a that format.
    The Pages Help told me  -
    "When saving your document, make sure you select "Copy audio and movies into document" in the Save window after you choose Save or Save As. (if you don't see the option, click the disclosure triangle next to the field, and then click Advanced Options)
    Here is my problem, my Pages just says has a "save a version" option and no disclosure triangle that will lead me to Advanced Options. 
    Thanks

    All multi-media will be available in Pages but once you convert it to pdf you have to add them again with something like Acrobat Pro.
    Peter

  • Print multiple pages on a single page in word or from a PDF

    I need to print multiple pages on a single page from a PDF (ie: pages 1 and 2 onto a single page, pages 3 and 4 on a single page etc.)
    Does anyone know how to do this? Thanks

    (near the middle in a pull down menu - if you have the small print window click on the triangle next to the printer name to expand the window
    In preview the menu shows "preview" until you open it to see more - and
    if you have the small print window click on the triangle next to the printer name to expand the window
    LN

  • Is there a way to disable the blue triangle warning tag?

    I created a formula to generate dates a week apart (see screen grab below).  It works, but in most months, I get a blue triangle error tag stating that the day was greater than 31.  This happens when the previous date was the 25th of the month or later and the intermediate calculation generates a day of 32 or above, even though the displayed date does increment the month and display the correct single digit day. 
    I know I can manually sellect each blue triangle individually and "ignore" it, but the more dates I generate the more blue triangle warnings I get.
    It there a way to programatically / automatically not display blue triangle warning tags in a select set of cells?
    or
    Is there a better formula that I can use to generate dates a week apart that will not generate blue triangle warnings?

    Warning triangles: No way that I've found.
    Incrementing dates: Method 1—use auto-fill.
    First date in A2, Second date in A3.
    Select both cells, then drag the Fill control down the column. Dates will increment according the difference between the two starting dates.
    Incrementing dates: Method 2—use a simple formula:
    First date in A2.
    In A3: =A2+7
    Select A3 to the bottom of the column (see note below)
    Go Insert > Fill > Fill down.
    Done.
    Regards,
    Barry
    NOTE: re selecting;
    Click any cell to make the table active and show the row and column reference tabs.
    Click the reference tabe for column A to select the entire column.
    Command click A1, then A2 to remove these two from the selection.
    NOTE 2: The information here is also readily accessible in the Numbers '09 User Guide, an easily read pdf file well worth spending an hour or two browsing. The guide may be downloaded via the Help menu in Numbers.
    B

  • Font Error Message While Editing a PDF File with Acrobat XI Pro

    Hello,
    I have Acrobat XI Pro running on Windows 8.1
    I scanned a PDF File and then went to "Tools - Text Recognition - In This File - Edit - OutPutStyle ClearScan etc etc" and got the file into "Edit Mode".
    When I replace a "number/digit", the replacement digit font is "very small" and there is a "Yellow Triangle" error message which says the following.
    "The Original Font Fd 3168 is not available or can't be used in editing. Acrobat is using the font "Minion Pro" font in its place.
    Anybody know how to overcome this error message/problem OR alternatively how do I change the FONT of the whole page to some other Font?
    Also how do I find a "similar or equivalent font" for Fd 3168 font that Adobe Acrobat says, is not available.
    TIA

    Hi Bill.  Thanks for replying. 
    Unfortunately, I don't have the option of using the original DOCX file.  The author lost it, leaving only the pdf around
    I'm using AA XI 11.0.06.  Upgraded this morning.  That's running on Windows 7 Ultimate 64.
    I get the boundary boxes by clicking on the 'edit text and images' tool, and they appear.  Or don't in this case
    I only need to change a few characters in the file.   However, even just opening up the file in AA and then saving, the "A = " "text" gets deleted.
    Could it perhaps be something to do with embedded or missing maths fonts on my machine?  I mean, I don't get any warnings, just can't do anything with the A and AB italic bold text.
    Thanks!
    -- gyre --

  • Problem printing PDF in B&W with Safari?

    Hi, here is my printing challenge:  when I download PDF from Safari (now on Mountain Lion) and I try to print it black and white it keeps printing in color.
    To print I am using the "new" translucent save and print menu that appears at the bottom of the page of the pdf.
    I looked into the set up in the menu printer options and set it many times to to B&W but it still keep printing in color.
    I am using an HP laser printer.  Anyone has ideas how to solve this?  Thanks.  

    Matthaus,
    Welcome to the forums! As D said in this thread: http://discussions.apple.com/message.jspa?messageID=9165237#9165237
    "You can print in grayscale from an HP print dialog box. I don't have the same printer but the options should be similar. Click the Triangle beside the Printer dropdown menu (if the printer options are not showing.) This should expand the dialog. There should be a dropdown that says Firefox, click it and select Paper Type/Quality. The first tab should be Paper. Select the dropdown for Color and select Grayscale.
    If the above isn't the same as yours, there still should be the preference somewhere in the Printer Options. Hopefully, that will work for you.
    D. "
    Or You could always: Go to print like you normally would but instead of hitting print click on the (PDF) button near the bottom. From the list it show select (Save as PDF...). Now I would save it to the desktop for easier finding. From there open it in (Preview) and do a quick (Save As). In the little window that opens you will see a (Quartz Filter:) select (Gray Tone) from the drop down list. Click save and then print the gray toned PDF you just made.
    Hope that helps,
    Weston

  • Viewing Excel & PDF file attachments in Mac Mail 3.6

    I setup my IMAP Gmail account on my Macbook's Mail 3.6. In the advanced tab of my Gmail account preferences in Mail 3.6 under "Keep copies of messages for offline viewing:" I have selected "All messages and their attachments"
    Whenever I click on an Excel attachment, I get the error message "'filename' cannot be accessed. The file may be read-only, or you may be trying to access a read-only location. Or, the server the document is stored on may not be responding."
    Whenever I click on a PDF attachment, I get the error message "There was an error opening this document. The file is damaged and could not be repaired."
    I then tried saving the attachments from Mail 3.6 to my hard drive, but received the same error messages when I tried to open them.
    However, when I access my Gmail account using my browser and download the same attachments to my hard drive, they open up without any problems.
    I have deleted the folder containing the emails containing the attachments from Mail 3.6 and re-synced it with Gmail. While it successfully completes the download of all of the messages and their attachments, the same problem occurs. Oddly enough, this problem does not occur with Word Document attachments or JPEG file attachments.
    This is my first Mac and while I am extremely proficient with Windows, I am clueless with Mac OS X. I have read posts about AppleDouble and Compression, but can't seem to find those options to play around with, even though I do not think that either is the issue. Any help is highly appreciated.

    Sijmons,
    well, I didn' got confused but only wanted to help you with your Altzheimer
    Geeborg,
    I used to .Mac webmail with Firefox on Windows and opened a message with an attachment (mpg). I clicked on the small triangle behind the word "Attachments" and then I clicked on the name of the attachment. This opened a window stating that the attachment would be downloaded. After some time I was asked to open the file with application xyz (I don't remember the name) or to save it on disk. Choosing to open the file finally launched Windows Media Player which played the mpg.
    Can you try these steps on one of your attachments?

  • Why won't Save as PDF work?

    iPhoto hangs up on the first photo book page with an image containing a warning triangle if I try to use Save as PDF. Has anyone else had this happen? I presume it means that the image won't send to the printer, either? Yet, The Missing Manual says you can send photos with warning triangles and let them be printed blurry. Who knows about this? I'd appreciate real experience. Thanks.

    Try previewing (and saving the PDF) using this method - http://support.apple.com/kb/HT1040
    LN

  • I can't download a pdf from a link in a swf in Firefox. I can in Safari.

    I created a swf with a link to a pdf. This link works perfectly in Safari and the pdf opens in a new window. I am using Firefox 5.o which I recently updated. I think this link also worked on the previous version of Firefox.

    nibashki,
    Are you logged in with an Admin account?
    Navigate to HD > Users > Your Home Folder > Library > Preferences.
    In that folder, click on com.apple.desktop.plist, to highlight.
    Depress the Command and i (eye, not el) keys, to Get Info.
    Click on the disclosure triangle for Ownership & Permissions.
    Does is say: You can Read & Write?
    Click on the disclosure triangle for Details.
    Is the Owner your account, with Access: Read & Write?
    Is the Padlock open or closed?
    ali b

  • Multiple digital signatures in a pdf form?

    I'm creating an adobe pdf form that requires multiple approvers (one after the other) to digitally sign the form. However, once the second person digitally signs the form, the first person's signature will become invalid because the addition of the second signature is not signed by the first person.
    Is it possible to digitally sign the pdf form excluding the signatures?  and how to allow multiple signature in a pdf form while ensuring the form integrity?

    Hi,
    I doubt that the addition of a second signature actually invalidates (the red X icon) the first signature, but rather it shows the signature as Valid with Changes (the pen & yellow triangle icon). Technically, that is the correct signature status, but because it caused so much confusion, beginning with version 9, we've changed the user interface and stopped indicating changes to the PDF if the only change is a subsequent signature.
    If on the other hand you are getting the red X for the first signature please let me know as I'd be curious to see the file.
    Steve

Maybe you are looking for

  • At the beginning of install EBS R12 on Ubuntu 8.04 amd64 (Linux Debian)

    Bonjour, Need help, please. At the beginning of install EBS R12 on Ubuntu 8.04 amd64 (Linux Debian) ATI graphic driver: "ati-driver-installer-8-4-x86.x86_64.run" All prerequisites are installed. appmgr@ubu:~$ /d01/Stage12/startCD/Disk1/rapidwiz/rapid

  • Acrobat crashes when creating a PDF from a web page

    Whenever I ask Acrobat to create a PDF from a web page, it crashes halfway through the process.  Here is an example from the BBC:- http://www.bbc.co.uk/news/science-environment-19585341 Printing to PDF from the browser does not produce an accurate do

  • Where is insert/overwrite key

    Where is the insert/overwrite key on a mac keyboard ? Or if there isn't one how can I toggle between the two functions ?

  • Error for variable of 0Fiscper

    Hi Experts, We are getting errors with the variable of 0FiscPer.  When we click on the match code, this error appears: The initial exception that caused the request to fail was: Termination message sent ABEND RSBOLAP (000): Program error in class SAP

  • Thunderbolt Pegasus R4 Experience?

    Has anyone else got any first hand experience of the Promise Pegasus R4 (or R6) with their iMac? I bought mine this week and managed to load it up with around 1.4Tb (it holds around 3Tb) no problem. Now, today I can't get the drive to stay connected