OBIEE 11G Embedded Image not displayed on PDF

Hi
I have some embedded images on a dashboard. On the screen the images are displayed without problems.
But if we want to print the dashboard (f.e. PDF) the images are not printed. In html-view the images would be displayed.
All the images are referenced with the fmap path.
Any way to print the images in the pdf ?
Thank you
obiee 11.1.1.5
O.S : Oracle Linux 5.6 x64

Hi Team,
I do face the same issue of image not displayed in only pdf output format. Our client has deployed OBIEE 10.1.3.4.1 using Weblogic application server and is accesible through a secured url access.
I have followed the fmap syntax to locate the image, also made sure the image is getting accessed through url, tried with different images of different sizes . In all cases the image display is appearing fine in HTML & Excel output. But not getting displayed only for pdf output.
Can you please help me with this regard if am missing any specific setup for pdf output. Is there is any pointers or documentation available to get around this issue.
Thanks in advance.

Similar Messages

  • OBIEE 10G Embedded Image not displayed on PDF

    Hi
    We have some embedded images (source on network share or on the webserver) on a dashboard. On the screen the images are displayed without problems.
    But if we want to print the dashboard (f.e. PDF) the images are not printed. In html-view the images would be displayed.
    Is there a known bug that images can't be printed on dashboard pages or do we have to embed them different?
    Thank you

    Hi Team,
    I do face the same issue of image not displayed in only pdf output format. Our client has deployed OBIEE 10.1.3.4.1 using Weblogic application server and is accesible through a secured url access.
    I have followed the fmap syntax to locate the image, also made sure the image is getting accessed through url, tried with different images of different sizes . In all cases the image display is appearing fine in HTML & Excel output. But not getting displayed only for pdf output.
    Can you please help me with this regard if am missing any specific setup for pdf output. Is there is any pointers or documentation available to get around this issue.
    Thanks in advance.

  • Image not displaying in pdf report using XSL-FO and using Oracle 11g databa

    Good Afternoon,
    I have created over 15 reports using XSL-fo, with the following syntax to display an image on the pdf:
    fo:block margin-left="0.24cm" margin-right="0.27cm" margin-top="0.0cm" ><fo:external-graphic content-width="scale-to-fit" content-height="scale-to-fit" width="1.73cm" height="1.57cm" >
    <xsl:attribute name="src">'url("http://readiness:7780/i/marforcom_symbol_rpts.gif")'</xsl:attribute></fo:external-graphic>
    </fo:block>
    This syntax works fine when using Oracle 10g, now my database has been upgraded to 11g and my image no longer displays in the reports. I have already upload the image into the database as a workspace image.
    I have tried to point the image @ the image by using url(#WORKSPACE_IMAGE#marforcom_symbol_rpts.gif)
    or <img src ="#IMAGE_PREFIX#marforcom_symbol_rpts.gif")
    and it still doesn't work.
    I have searched this forum trying to come up with a solution that will fix my problem and am unable to.
    Current config: Oracle 11g, using pl/sql gateway.
    I need to know how to point the xsl-fo file to the database, where the image now resides.
    Thanks,
    Mary
    Edited by: MaryM on Jul 25, 2012 3:15 PM
    Edited by: MaryM on Jul 25, 2012 3:51 PM

    Hi,
    I think you need load images to database XDB virtual directory /i/ and then use #IMAGE_PREFIX# substitution.
    This might help to access /i/
    http://www.apex-blog.com/oracle-apex/accessing-i-using-ftp-170.html
    Or use this to load images
    http://oracleinsights.blogspot.fi/2012/05/loading-images-into-oracle-xdb.html
    Regards,
    Jari
    My Blog: http://dbswh.webhop.net/dbswh/f?p=BLOG:HOME:0
    Twitter: http://www.twitter.com/jariolai

  • Logo image not displayed in PDF preview in HFR Studio reports

    Hello All
    I need to display a logo image on every page of an hfr report. The logo is visible in web-preview and print preview. But when the report is run in PDF preview, logo is not visible.
    A header text box is also used which visible in all formats but not the logo.
    Any pointers will be greatly appreciated.
    Thanks
    Neha

    The image is a jpg image. I have also tried using and image already saved in hfr's repository.
    But still I'm not able get the image in pdf format of report*
    The same image is visible in web-preview and print preview*
    I don't think issue is because of position of image because I tried including the image in an empty report as well.
    The problem is still there with the pdf preview*
    Is there something else that could be done to display the image in pdf preview of report????
    Thanks in advance..
    Neha

  • Embedded image not displaying​...why?

    Greetings:
    In my post I embedded an image.  It displayed correctly when I saved the post, but going back to view the post now (from a different PC), I no longer see it but rather, a yellow triangle graphic instead.  When I float my cursor over that graphic, the proper name of my file does display.
    What's happened?
    Thank you for any assistance/guidance.
    Ed in Tampa

    Hi Ed,
    This happens when your image has not yet been approved by a moderator.  I hope that it's displaying properly for you now, but if it is not please let us know.
    Thanks,
    SunshineF
    Clicking the "Kudos star" to the left is a great way to say thanks!
    When your problem has been solved, accept the solution by clicking the "Accept as Solution" button to help other members in the future!
    Rules of Participation

  • Image not displayed in pdf generated using Java API for Forms service

    Hi,
    I am creating a pdf document using Java API for Forms Service.
    I am able to generate the pdf but the images are not visible in the generated pdf.
    The image relative path is coming in the xml as defined below. The images are stored dynamically in the Livecycle repository each time a request is fired with unique name before the xml is generated.
    <imageURI xfa:contentType="image/png" href="../Images/logo.png"></imageURI>
    Not sure if I need to specify specify specific URI values that are required to render a form with image.
    The same thing is working when I generate pdf document using Java API for Output Service.
    As, I need to generate interactive form, I have to use Forms service to generate pdfs.
    Any help will be highly appreciated.
    Thanks.

    Below is the code snippet:
                //Create a FormsServiceClient object
                FormsServiceClient formsClient = new FormsServiceClient(myFactory);
                //Specify URI values that are required to render a form
                URLSpec uriValues = new URLSpec();
                                  // Template location contains the whole rpository path for the form
                uriValues.setContentRootURI(templateLocation);
               // The base URL where form resources such as images and scripts are located.  Whole Image path is passed in BaseUrl in the http format.
                      String baseLocation = repositoryPath.concat(serviceName).concat(imagesPath);   
                                  uriValues.setBaseURL(baseLocation);                                        
                // Set run-time options using a PDFFormRenderSpec instance
                PDFFormRenderSpec pdfFormRenderSpec = new PDFFormRenderSpec();
                pdfFormRenderSpec.setCacheEnabled(new Boolean(true));           
                pdfFormRenderSpec.setAcrobatVersion(com.adobe.livecycle.formsservice.client.AcrobatVersio n.Acrobat_8);
                                  //Invoke the renderPDFForm method and write the
                //results to a client web browser
                String tempTemplateName =templateName;
                FormsResult formOut = formsClient.renderPDFForm(tempTemplateName,
                                              inXMDataTransformed,pdfFormRenderSpec,uriValues,null);
                //Create a Document object that stores form data
                Document outputDocument = formOut.getOutputContent();
                InputStream inputStream = outputDocument.getInputStream();

  • JPG images not displayed correctly in Bridge and Photoshop (Mac OS)

    (Note: I have copied the content of this query from the Creative Suites forum where I originally opened it.)
    I am using CS4 under OSX 10.4.11 on a PowerMac G5 Quad with 23" Apple cinema display. Images which have been captured as JPG are displayed fine by Preview, but when opened in Bridge, Camera Raw or Photoshop. the colours are all "washed out". The attached screen capture should give an idea of the difference, with the upper being Camera Raw (image settings) and the lower being Preview. My monitor has been calibrated and I'm using sRGB IEC61966-2.1 colour space in Camera Raw and Photoshop. The colours displayed by Preview are pretty close to "real life". I find it virtually impossible to adjust the colours in Photoshop to get back to anything similar.
    After opening the image in Photoshop without adjustment, and Save As JPEG with embedded color profile, Preview displays the new image the same as Photoshop. Save As JPEG without embedded color profile, and Preview displays this copy just like the original. It seems that Photoshop is making different (incorrect) assumptions about what color space to use when there is no embedded color profile. Shouldn't it assume sRGB like virtually everything else (http://en.wikipedia.org/wiki/SRGB)? Or is its interpretation of sRGB incorrect? How can I fix this?
    Re: JPG images not displayed correctly in Bridge and Photoshop 

    xxxxyyyyz wrote:
    …If there is someone out there who has experience of obtaining decent colour management in CS4 on a Power PC, I would really like to know how you achieved it.
    That would be yours truly, and I hasten to reply because I may have some insights that can help you too.
    Just get it it out of the way, here's my setup:
    Photoshop 11.0.2 ("CS4"); VersionCue disabled and uninstalled.—2.5 GHz Power Mac (PPC) G5-Quad; 16GB RAM; mutant, flashed 550MHz nVidia GeForce 7800GTX 1,700MHz 512MB VRAM; ATTO ExpressPCI UL5D LP SCSI card; Mac OS X Tiger 10.4.11 and Leopard 10.5.8 boot drives; Spotblight, Dashboard and Time Machine permanently disabled; dual 22" CRT monitors; USB wireless 'n' available but connected to the Internet via wired Ethernet; 1 FW flatbed scanner; 2 SCSI scanners (one tabloid-size transparency scanner and a film scanner); various internal & external HDs; FW Epson 2200 and Ethernet Samsung ML-2850ND printers; 2 X Back-UPS RS 1500 XS units.
    I can unambiguously and in good faith represent to you that my color management, from capture to print, is as spot-on as anyone with any kind of setup can hope to achieve.  Unequivocally and without qualifications.
    Now, first things first:  Forget about trying to synchronize color management across the point applications lumped together only by Adobe marketing fiat into a variety of meaningless "creative suites".  Concentrate on Photoshop.  Do not try to use Bridge to synchronize anything.
    The "suites" are a totally artificial construct created by Adobe bean counters and marketing types.  The point applications (i.e. the individual programs clumsily bundled together, e.g. Photoshop, Illustrator, InDesign, etc.) are developed independently by separate engineering teams that are not only not in the same building, but in different cities, different states of the American Union, and even in different countries.  They have very little communication among them, if any, as evidenced by repeated posts in these forums by Photoshop engineering staff urging us, the end users, to let the other teams know in their own forums that a given problem exists and is actually affecting our work.
    Enough said about the cause of the problem.  The end result is that Color Management is at very, very different levels of progress and sophistication in each individual point application, with only Photoshop fully entitled to be considered state of the art.
    Secondly, a disclaimer:  I have been hanging on to my CRT monitors and take care of them as Jascha Heifetz used to take care of his Stradivarius.  I don't know what I will do if I manage to outlive the usefulness and accuracy of my CRTs (unlikely at this point).  I have despaired in futile efforts to bring the luminosity of any LCD monitor down to where I would feel comfortable calibrating and profiling it.  I believe my monitors are the foundation of my color management efforts.
    Especially if you have one of the extreme wide-gamut LCD or LED monitors, you'll face an uphill battle. 
    Be careful to avoid any version 4 icc profiles, whether canned or generated by your calibration software.  Stick to version2 icc profiles.  Ask the manufacturer of your calibration software/hardware if in doubt.
    Here are some not-too-recent, but thoroughly representative screen shots of the calibration results I obtain with my monitors, which I calibrate and profile often and regularly (I validate the calibration at least several times per month).
    In a nutshell, my color management practices and settings mirror those described by Bruce Fraser, Jeff Schewe, Andrew Rodney and Gary Ballard's site.  I have learned from all of them.
    My working color space is ProPhoto RGB.  I choose to work with PSD and PSB files.  As a long-time, rabid JPEG hater, I only rarely deal with JPEGs, using them sporadically to illustrate a point in this forum or elsewhere in the web.  My main output consists of prints.
    I only deal with tagged image files (files with an embedded color profile) and often recommend beating up with a baseball bat any moron that hands you an untagged file—figuratively of course, but I find the expression gets my point across unambiguously.
    Following is a screen shot of some of my pertinent settings:
    Note that I have never bought into the "suite" concept myself.  I do have and routinely use Adobe Illustrator 10.x, InDesign 2.x and Acrobat Professional 8.x, but they are all older, independent versions of each point application, licensed at different times.
    Be further advised, that the answer to many problems offered by Adobe engineers often is not to install VersionCue, or uninstall it, or at least disable it.
    Also, as outlined at the beginning of this post, concentrate on Photoshop, not on synchronizing applications that can't really communicate with each other, despite the claims of Adobe marketing hacks to the contrary.
    One big caveat, do not fall into this trap:
    xxxxyyyyz wrote:
    …I believe my problem has nothing to do with my monitor profile, for several reasons, but…
    …It seems extremely unlikely to me that…
    You either want to learn, or you don't.  You either want to solve your problems, or you don't.
    When you start arguing instead of studying, questioning advice instead of following it and detecting where you went wrong, you're on the right track to nowhere.  That attitude will get you there fast.  Remember you are the one with the problem, and only you can acquire the discipline to learn how to solve it.
    Go ahead and ask me anything that is not clear, just don't argue with me please, and don't tell me why you think Fraser, Rodney, Ballard and I are wrong.  You see, I am not experiencing any problem that needs fixing.  I have an interest in helping you, but not in hearing about your speculations, theories or conclusions.
    Good luck.
    Wo Tai Lao Le
    我太老了

  • Adobe Reader Will Not Display Large PDFs

    When using the Adobe Reader app on PlayBook it will not display some PDFs. It seems that it will not display PDFs that are too large.
    Some files that might be too large do not display while smaller files do display in the app. The too large range could be in the 12 MB region where the good range could be 6 MB or less.
    I tried to submit feedback to BlackBerry on this issue but it returned my email saying it could not process my request. I am hoping that they read it here.
    Here is a link to a page with both readable and unreadable files:
    http://www.bossus.com/backstage/product_manuals/?g​roup=2
    A readable PDF is the owner's manual for the RV-3. A unreadable PDF is the owner's manual for the RC-3.

    That looks like a perfectly good PDF, but since it's trying to open in Microsoft Word, that means your file association for .pdf files is incorrect.  You should change it to point to Adobe Reader instead of Word.
    If you are on Windows, see http://windows.microsoft.com/en-us/windows/change-file-open-program#1TC=windows-7

  • CF slows down to a halt ... images not displaying

    My primary laptop on which I do all coding ...
    - less than 1 year old
    - Dell (cough) XPS M1730
    - Windows XP (latest)
    - ColdFusion Ver 8, developer edition.
    - No other issues with laptop
    Also running
    - SQL 2000
    - Synergy
    - Anti virus etc. changed Norton daily scan and unaware that I have picked up any viruses - I was my hands very well and often
    Over 6 months gradually CF has been slowly not display internal referenced <img src> tags.  External work fine.
    To the point now where most in our app do not display.
    Then in the past 3-4 days a lot of pages when called give Firefox or IE errors:
    Page will not display with too may users error.
    But there aren't any others.
    I go to all other web site, no issues with speed.
    I just cold warm booted the machine and now while page 1 appears, page 2, login, takes minutes to appear.  But on a beta server (also developer edition) it's instant.
    When I go straight into the browser, it works fine, albeit no images, crashes with a known bug (missing application variable), fix it, then resume, then just sits there forever.
    And there's no difference between the two machines ... well, not in "that" way.
    Adding to my confusion is ... I cannot get into the CF Admin panel.
    I can see it approve me, then it just spins.
    Nothing has changed on machine in past weeks EXCEPT traveling when I sign in to the usual plethora of wifi and other networks but never had a problem - except luggability
    I am thinking of, UGH, reinstalling Windows ... but why bother if it's working perfectly and only ColdFusion has an issue.
    Now COLD booted machine for 5 minutes.
    Everything seems better except CF still a BIT sluggish and still not "drawing" most images.  Able to access Admin panel.  Even if there images not displaying.
    Anyone any ideas?

    Thanks for your prompt reply ...
    We scoured for a folder like that and found none.
    What we DID find is that over the years of coding, we have a template count of 3,500 files in 130 folders, but the root where we start is about 1,500 files.   144 megs total size though.
    That shouldn't be too much?  Esp as our beta and production servers are using the same amount with no issues.
    Admittedly production is CF 7.X.
    Much more powerful machines but still.
    It would have made sense as that is the only thing on the machine that has "grown" ... but no luck.
    Does remind me of the day when our mail server got hacked and we had 100,000 outbound in the spool.  That was fun.: :)

  • Preview.app will not display some PDF files

    Since upgrading Yosemite I have found that Preview.app will not display some PDF documents, the documents open but all the pages are blank. This is a big issue as my work involves reviewing documents that are all in the PDF format. Strangely some PDFs work properly but I haven't been able to determine any common factors among the documents that work versus those that don't work. The problem documents do open correctly in Adobe Acrobat Reader but Reader takes over viewing of PDF container fields I have in several important FileMaker Pro 13 databases. Acrobat in the FileMaker databases for me is just as much of a problem as not viewing PDFs in Preview.
    After searching the forums I followed suggestion in a post to try using version 7.0 of Preview.app (the version that worked under Mavericks) but that is also showing blank pages. I have noticed that the PDFs which open as blank pages also display that way in Finder and Spotlight previews. Could this mean that I have some kind of OS level issue here and not a Preview.app issue? Perhaps Finder and Spotlight use Preview.app to generate the preview.
    I have posted this in a bug report to Apple but in the meantime I would welcome any suggestions or workarounds to try.

    The built-in PDF renderer has trouble with that file. You might get better results with Adobe Reader.

  • Empty grid columns not displayed in pdf

    hi.. am using alivepdf to generate pdf from flex..
    it works fine for chart and grids...
    am having empty coloums in flex grid, but empty colums are not displayed in pdf...
    guide me to overcome this prob,,
    thanks in advance..

    Hi
    Check whether user have authorization to access the tables or not
    Check  whether DB connection is working or not
    And what is the back-end data base for the universe?
    Find the below notes for more info.
    If data base is Oracle
    1803659 - Unable to display columns from Oracle synonym tables
    Ms SQL Server
    1904204 - Synonyms not displaying columns in IDT.

  • Image not displaying in the Task Sequence Wizard. SCCM2012

    This is my question, so I will post the link here.
    http://community.spiceworks.com/topic/925727-image-not-displaying-in-the-task-sequence-wizard-sccm2012
    Bryan
    I captured an image from a PC that I am preparing to be deployed with Office 365. Once I captured
    the image, I went to the software library to add the operating system image. That seemed to go on without any issue, but when I look at the summary, I see the big yellow globe saying "in progress" it has not changed since yesterday afternoon.
    I then created the task sequence for this image
    to be deployed under Software Library, Task Sequences. When I selected the references tab, everything seemed to be in order with the exception of the "operating system image" under type. It was/is showing 0.0% Compliance.

    So, the problem described in the other forum post does not match the title of this thread. Are you trying to address two different things? These are unrelated btw.
    For the issue in the other thread, you'll have to troubleshoot your content distribution to the selected DP. The distmgr.log and pkgxfermgr.log (assuming you chose to distribute the image to a DP directly attached to your primary site) are the places to
    start and will show you exactly what's going on.
    As for the title of this thread, we'll need a lot more info to help you there.
    Finally, I would suggest you copy your questions from other sources into the thread -- this will help other folks in the future that may stumble upon this thread and will prevent any confusion.
    Jason | http://blog.configmgrftw.com | @jasonsandys

  • Country name in Chinese not displaying in PDF

    Hi Experts
    I am working on a Chinese localisation DB and when I export any docs to PDF the country name disappears. Print preview is fine . I have checked the forum and found the following link Chinese Characters not display when PDF for marketing doc which was helpful but unable to resolve the issue even after using different Chinese recognisable font. Just like to know how to get around this ?
    Has any one comeup with this kind of issue ? Any help will be appreciated.
    regards
    Johnson

    Hi All,
    The issue has been fixed. There is a SAP note  1406074 as per the sap note,
    Exporting Chinese/Japanese character correctly, involves a setting of the layout in SAP Business One.
    1. Open the document layout.
    2. Go to Print Layout Designer > Display Document Properties > Format tab;
    3. Tick the "E-Mail Layout" checkbox, and choose a Chinese / Japanese font (E.g. MS Mincho)
    4. Save the layout and set as default.
    5. Export to PDF.
    I had always changed the format to Chinese but never ticked the ' E-mail Layout box'  This is just for information & thanks to Gordon and Rakesh for the inputs.
    regards
    Johnson

  • Indesign CC does not display linked PDF image on screen

    On Mac1 (10.6.8) When I imported a PDF file into Indesign CC 9.1 as a linked image - the image would come in as usual, however the image would not appear on my screen. Only a blank page box.
    I can see the thumbnail image of the imported PDF in the links palette correctly.
    However, on my page it appears as a blank box.
    Selected Hi-res preview, and still it appears as a blank box.
    I export to PDF, and the image is there as it should be on the exported PDF.
    I tried the same image on Mac2 (10.8.3) with Indesign CC.
    The imported image appears correctly on the page. (no blank box)
    I saved that file and opened it on Mac1 that is having the problem displaying the image.
    Mac1 again does not display the image, instead it is a blank box.
    Tried the same image import in Cs6. No issue on either mac1 or mac2
    What could be causing the imported PDF not to display on the page in Indesign CC?
    Has anyone else come across this problem?

    Hi
    Are you still facing the same issue ?
    Please refer to these threads for steps that you can try :
    Edge Animation not working properly
    Edge Animate not working in Muse Browser Preview, But works in Edge Preview
    http://tv.adobe.com/watch/learn-adobe-muse-cc/integrating-adobe-edge-animate-graphics/
    Thanks,
    Sanjit

  • Embedded video not displaying or playing in PDF

    Hello, I am trying to embed a video using InDesign CC 2014 but it is not displaying or playing when looking at it using Adobe reader. Please help!

    Make sure it's a format InDesign supports (MP4 preferred). If necessary use Adobe Media Encoder to convert to MP4, H264 encoding.
    Preview in the Media panel (Interactive > Media). Set options in Media panel (Poster, Controller). Preview in Media panel and in SWF or EPUB Interactive panel.
    Export your PDF as PDF (Interactive).

Maybe you are looking for

  • Starting Photoshop CC/mini bridge is returning an error message

    With Bridge CC open, I select Browse in Mini Bridge and receive the following: "Cannot complete the command because the extension could not be loaded" Photoshop CS6 works fine, but this is with Photoshop CC.

  • 30 PIN to HDMI not working ???

    I have the 30 PIN connector plugged to the iPad. I have the HDMI cable going from adapter to the TV. I select the correct HDMI input in the TV. When I play any video on my iPad instead of seeing "connected to TV" on the iPad I still get the video on

  • Text layers from .txt file for buisness cards

    I have a template for a business card that I created for a company. So  imagine I have a background layer which is the card itself, and above  that a layer for each string of text on the card (name, title, phone,  email). Up until now, I would manual

  • Re-installing OS on an R30 + Lenovo drivers + ThinkVantage tools

    My old R30 experienced a smash that ruined the internal HDD. Now, I'm going to replace the HDD and install the OS from scrach, say, Win XP with SP3. Where can I download all the proprietary Lenovo software for R30? 

  • Problems with symbol characters in WIKI using plaintext authentication

    Hi! I have a Lion Server with Wiki service enabled, and using plaintext to authenticate against third provider LDAP server (Oracle/SUN ldap server). The authentication fails if the password has a at least & character inside (I do not test another sym