CR2008 can't show images on published report

I have report with subreports, showing images from network path, which saved in database. In design mode everything looks nice, but when I publish report on BO Crystal Decisions Server, I can see only placeholder images. Plese help to fix it.
Thanks

Thanks everybody, I fix it myself - just add server as domain user of images folder (so server running under local service can access images)
Edited by: Oleksiy Illyashov on Jul 8, 2008 2:43 AM
Edited by: Oleksiy Illyashov on Jul 8, 2008 2:43 AM

Similar Messages

  • Show image in crystal report 2008

    Hi All,
    I have a UDF - image type in Sales order Line item which stores image.
    Currently I want to display sales order line item data in CR2008 using a query.
    All data is coming but image field is showing image name in place of showing image.
    How can I show image.
    Kindly suggest.
    Deep Kulshrestha

    Hi Deep,
    An image type UDF only stores the image name in the database. When you add an image, the SBO client takes a copy of the image file and puts it in the Pictures folder (as defined in General Settings). Therefore, to use dynamic images in Crystal you will need to do the following:
    1) Create a formula in Crystal that combines the image name from the UDF field and the path to the Pictures folder to create the full path to the image (note: your Pictures folder must use a UNC or mapped drive path rather than a local path). It's easiest just to hardcode the path to the Pictures folder in the report but you'll have to bear in mind that this setting is company database specific. If you want to be able to run the report for multiple SBO databases then you may need to use a formula to change the path (you could add the OADM table to the report but there is no suitable join between this table and other tables in the database. The report would work because there is only ever 1 record in OADM but it's not good report design).
    2) Once you have your formula you can add a add a picture to the body of the report (at this point you should select a default image)
    3) Right-click the picture on the layout and choose Format Graphic.
    4) Select the Picture tab and click on the formula button to the right of the Graphic Location property
    5) In the formula window set the return value to the formula you created in step 1.
    6) At this point your image will dynamically change based on the UDF value. You may want to set a formula in the Suppress property of the image so that the default image is hidden if the UDF field is blank for a particular record.
    Kind Regards,
    Owen

  • Showing the XML publisher report in an iframe..

    Hi all..
    Please help me with this question.
    Before: We had a "http page" and we are showing a XML Publisher report which is also in "http" ,in an iframe of the parent page. Previously it was working fine, as both are http.
    *** Basically we are generating a URL of the report and showing it in a iframe of the web application****
    Now: Recently we configured ssl to the parent page (https), and the report sever is still in "http". Because of this difference, whenever we are calling that report,it is showing a security alert and redirecting to totally wrong page.
    Is there any configurations that i can do in the ""report server" to rectify this issue.Please help me with this issue.
    Thank u

    Hi Ravi ,
    can i do it only with the xml Publisher , because when i tried it in the past and get all the staff like Template / DD / CP up and running and started the CR i get an error from the system that he is missing a report directly in the file system... so he searched for the report himself on system like a standard 6i Report. But the template and the dd is stored in the db. So my question again, can I use the XML Puplisher without a Standard Report or can i use a dummy file only for checking and after that he use my template / dd.
    regards
    Kay

  • Color box to show images on a report

    Hello guys,
    I am trying to use Color Box http://www.jacklmoore.com/colorbox to show the images on a report.
    But the problem is when I click on an image the colorbox shows up but it displays symbols :
    �O�Y��Yф�4N�iƒ�����JSE2SM-!4TԎ4�3ԑ���m�͋,z�� k���x����5�)٨Jl��4���3���ש�{I�O�t)��@>��Here you can see the report source:
    select id as "ID",
    CASE WHEN NVL(dbms_lob.getlength(CONTENT),0) = 0
                THEN NULL
                ELSE         
      '<a   class="gallery" onClick="javascript:color();"
    href="'||apex_util.get_blob_file_src('P105_IMAGE',id)||'">
    <img   style="border: 4px solid #CCC; -moz-border-radius: 4px;
    -webkit-border-radius: 4px;" height="60" width="75"  alt="Property Image" title="Photos"
    src="'||apex_util.get_blob_file_src('P105_IMAGE',id)||'" /> </a>' END as "PHOTO"
          from photos This is the function on the head of the page:
      <script>
                function color() {
                    $('a.gallery').colorbox({ opacity:0.5 , rel:'group1'}) };
               </script>How can I get it worked ???
    Best Regards,
    Fateh
    Edited by: Fateh on Jul 29, 2012 3:34 AM

    Fateh wrote:
    I am trying to use Color Box http://www.jacklmoore.com/colorbox to show the images on a report.
    But the problem is when I click on an image the colorbox shows up but it displays symbols :
    �O�Y��Yф�4N�iƒ�����JSE2SM-!4TԎ4�3ԑ���m�͋,z�� k���x����5�)٨Jl��4���3���ש�{I�O�t)��@>��
    Hi Fateh
    Looks like the same issue we had in your previous Fancy Box, with a jQuery plugin being unable to automatically determine the type of content coming from an APEX BLOB source.
    Try setting the content type explicitly using the <tt>photo</tt> setting:
    <script>
      function color() {
        $('a.gallery').colorbox({ opacity:0.5, rel:'group1', photo:true });
    </script>

  • How can i show images from different folders  in image gallery

    Hi All,
             i have downloaded and executed photo viewer image gallery application.
              in that we r showing images sequentially what we have defined in xml file.
             but i want show images randomly or i want show images from different gallary.
    Can any one help me.
    thanks
    Raghu.

    WaqarLFC7 wrote:
    On Windows:
    Ctrl + click on the songs you want to group - then right click and click get info and it will ask you if you want to get info for multiple items click YES then under album name it whatever you want and them songs will be grouped into 1 album.
    Mac:
    Same procedure but hit SHIFT instead of CTRL.
    Actually, it's right click or ctrl click, same as windows.

  • Can't show image in the center of the jscrollpane ,any one can help

    i write a program to show image in the jscrollpane
    i create a class called ImageLabel (it extends jlabel) then i use
    ImageLabel im=new ImageLabel(imageicon)
    jscrollpane.setViewportView(im);
    validate();
    repaint();
    but it show the image in the left and top corner of the jscrollpane ,not in the center of the jscrollpane
    then i change the ImageLabel to JLabel ,:
    JLabel im=new JLabel(imageicon);
    jscrollpane.setViewportView(im);
    validate();
    repaint();
    it shows the image in the center of the jscrollpane,
    but i want to use ImageLabel not jlabel
    whats the problem ,any one can help me ,thank you:)

    the ZoomLabel is the imagelabel ,and my complete code as follows:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    class ZoomLabel extends JLabel
        private ImageIcon icImage;   
        private int ph,pw,picW,picH;    
        ZoomLabel(ImageIcon ic)   
            super(ic, JLabel.CENTER); 
            icImage = ic;
            pw = picW = ic.getIconWidth(); 
            ph = picH = ic.getIconHeight();
           setSize(pw,ph);
           setPreferredSize(new Dimension(pw,ph));
           repaint();
          validate();
           public void zoom(float scale)    
               ph = Math.round(picH * scale);         
               pw = Math.round(picW * scale);          
               setPreferredSize(new Dimension(pw,ph)); 
               repaint();
             public void paint(Graphics g)     
                     update(g);     
                public synchronized void update(Graphics g)     
                {             g.drawImage(icImage.getImage(),0,0,pw,ph,this); 
      public class ImageShow extends JFrame
                  ImageShow()
                 ImageIcon ii=new ImageIcon("e:/download/pic/me1.JPG");
                   JScrollPane js=new JScrollPane();
                   zl=new ZoomLabel(ii);
                  js.setViewportView(zl);
                  getContentPane().add(js,"Center");
                     js.repaint();
                                  js.validate();
                  pack();
                  setVisible(true);     
             public  static void main(String[] args)
                   new ImageShow();
             ZoomLabel zl;
        }

  • Can I run a BI Publisher report from interactive report

    Hi,
    I have an APEX interactive report and want to run a BI publisher report by clicking on a column value within the interactive report. Is that possible?

    Hi 918900,
    This is possible.
    Set the column in the interactive report as link to page 0 with the report name in the request field
    PRINT_REPORT=<your report>. Don't forget to specify the Display type for the column as 'Standard Report Column'.
    Geert.

  • How can i show gif files through reports

    I have blob column in a table and i store text with some gif files there ...i made a report for that and i set the property of blob item like ..file format as "text" and containes html tags "yes" then i generate the report on html but when i see the on html i can see only text not any picture like .gif file ..
    if any body have the solutuion to show .gif files with text then tell me ...
    Thanx..

    hello,
    you say, you store text with gif images in a blob. the question would be, in what format. if you store HTML text there, the images are actually not stored in the document but only references to them. you might then check the src attributes of your IMG tags if they point to valid destinations.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Can We Display Image on Hieararichal Report on Each Line item

    Dear Gurus ,
                         I have a Strange Requirement from the Client . They want to display Image on each line item of report with regard to Material in Hierarchal Sequential Report . Is there any solution for the same .
    Thanks in advance
    regards
    Shankar

    I am having a path which is stored in SAP database which i have fetched in the reported in both alv heriarchal and also in Alv Grid . The Image is stored from DMS . Now what i am doing is i am trying to load a excel file from program BCALV_BDS_UPLOAD and when i run my report and go to view and select Microsoft Excel option the I am getting an error Bad file format .
    The Path is : SAPR3://SAPR3CMS/get/200/DMS_5FC1/DE72B28A5B76F0F1AF0000215E54283E/FM1E1085XX18W-001E.jpg
    Can you please help me out in this .
    Regards
    Shankar

  • How can we show image in per_images table in our OAF page?

    Hi All,
    Can any one suggest me how to show the image from per_images table on to OAF page?
    Ihe image is stored as binary value in the table..
    <br><br> Thanks in advance. <br>
    Soujanya

    Go through this thread:
    Re: Displaying an Image stored in the Database as BLOB on OA Fwk Page
    --Mukul                                                                                                                                                                                                                   

  • How can i show images on mobile Phone?

    Hello All,
    I am not able to see the image on a mobile phone.I am using the SimpleImage tag.Can any one send me a sample code and the things to be taken care while doing so.
    please get back.
    Raju
    null

    Hello,
    I am able to get the Gif image shown properly but when i kee a .wbmp in the same folder them i am unable to get it displayed on the mobile phone.
    Can u suggest me any clue for it.
    Hope to seee u soon.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Khurram Iftikhar ([email protected]):
    Hi,
    The following code works inside the servlet. The gif files are put in <%9iASHome%>\panama\server\portal\images directory. The portal alias for ptg/rm takes us to the ....\portal direcory. Anything after that you need to specify in the URL.
    o.println ("<SimpleImage src=\"http://" + server + "/portal/images/PizzaHut.gif\" target=\"http://www.yahoo.com\" alt=\"Yahoo\" addImageExtension=\"false\">Yahoo</SimpleImage>");
    KI <HR></BLOCKQUOTE>
    null

  • How to show image in TestStand xml report

    Hi,
    I am using TestStand to run DLLs written over CVI.
    I am using the xml report for collecting results.
    Some of the tests i run require showing images on the report -
    I would like to know how to allow showing an image on xml report by writing a CVI code.
    Thanks,
    Moshik

    Hi Moshik,
    There is an example for inserting images in your report in this discussion:
    http://forums.ni.com/ni/board/message?board.id=330&message.id=2819&requireLogin=False
    TestStand uses the sequences named reportgen_***.seq that default to the
    C:\Program Files\National Instruments\TestStand 3.5\Components\NI\Models\TestStandModels directory for report generation.
    You can edit the reportgen_xml.seq for XML reports.
    Is it really necessary for your DLLs to do the image insertion?
    Gavin Fox
    Systems Software
    National Instruments

  • XML Publisher report to view as a self service page in EBS R12

    Hi All,
    I would like to show my XML publisher report as a self service page. What are the different methods in which i can show these reports. I would like to just click the function of the responsibility and see the report as a page.
    Your suggestions would be appreciable. Thanks in advance.
    Regards,
    Boris

    Hi All,
    I would like to show my XML publisher report as a self service page. What are the different methods in which i can show these reports. I would like to just click the function of the responsibility and see the report as a page.
    Your suggestions would be appreciable. Thanks in advance.
    Regards,
    Boris

  • Multiple Thread of a xml publisher report - messed up fonts in the PDF out

    We are running 60000 invoices at a given time. In order to get the job done faster, the xml publisher report is set up to run mulitple threads. Each thread running unique set of invoices.
    I am seeing this issue, randomly.
    The pdf output of the invoice is having the fonts messed up. font 10 shows up as 14 and the invoice looks very bad.
    When i rerun the same set of invoices it looks absolutely normal.
    Also if I retrieve the xml output of the bad pdf and view it through the xmlpub desktop, it looks perfectly fine.
    Two times we saw this issue
    PRODUCTION
    - when i run 8 threads, i saw this issue in one of the thread and affected one invoice. (Production- 1 concurrent processing node+ 5 OPP processes and 5 threads + MEMORY is J:oracle.apps.fnd.cp.gsf.GSMServiceController:-mx3072m )
    TEST INSTANCE
    - when i ran with 16 threads, one of the thread running xml pub report affected all the invoices (UAT environment-1 concurrent processing node+ 7 OPP processes and 1 threads + MEMORY is J:oracle.apps.fnd.cp.gsf.GSMServiceController:-mx3072m )
    Looks like it is happening when running multiple threads.
    The formatting command or information is getting lost somewhere and the report is all messed up.
    Please advise.
    Thanks
    SJ

    Really appreciate your response. Can you pls give little more details.
    1] Are there any standard API's which I can use to submit XML publisher report from the JSP pages
    2]Is there any sample code snippet for any of the options that I can refer to..or pls let me know the API's, I will check on them
    Appreciate any help

  • BI publisher report on OBIEE dashboard in a particular format

    Hi All ,
    We have a situation wherer we need to show a BI Publisher report on the OBIEE dashboard .
    The Dashboard has a prompt on 'Year' and 'Quarter'.The issue we are facing is ,based on the prompt value the report column header should also change.
    e.g :
    Year=2003 , Quarter=3
    It should give us the revenue for different Products for last four quarter :
    Product----------------------2003 Q3---------2002 Q4--------2002 Q3--------2002 Q2---------20002 Q1
    Airconditioner----------------100----------------200----------------300--------------400-----------------234
    Refrigerator-------------------145----------------208----------------350--------------467-----------------264
    Example 2 :
    Year=2004 , Quarter=4
    It should give us the revenue for different Products for last four quarter :
    Product----------------------2004 Q4---------2004 Q3--------2004 Q3--------2004 Q1---------2003 Q4
    Airconditioner----------------100----------------200----------------300--------------400-----------------234
    Refrigerator-------------------145----------------208----------------350--------------467-----------------264
    How can we acheive this column header.
    Please advice.
    Thanks!!

    Hi,
    based on the prompt value the report column header should also change. You want to change the value of the column heading dynamically based on prompt.You will get this by using the Presentation variable.So,you have to integrate both the bi publisher+rpd.
    Link to use the Prompts in bi publisher
    http://oraclebizint.wordpress.com/2007/10/19/oracle-bi-ee-101332-dashboard-prompts-and-bi-publisher/
    Link to get dynamic column headings
    http://oraclebizint.wordpress.com/2008/01/25/oracle-bi-ee-101332-dynamic-column-headers-using-presentation-variables-sets-and-conditional-formatting/
    Thanks,
    saichand

Maybe you are looking for

  • PO Print Preview  Error 06019 "Document  does not exist"

    Hi people , i`ve the following issue. I`ve noticed that when creating a PO if the user clicks con the "Print Preview" BEFORE Holding or Saving the document , the system will give the following error msg : Document  does not exist Message no. 06019 An

  • Regarding PR Release workflow:

    My pr release workflow is 8 levels. 1st level is working fine( getting workitem to sap inbox of 1st level approver and releasing from his inbox) when it comes to second level it is automatically releasing from me54n.(am not getting any workitem to sa

  • How to emulate INSert  key (in Terminal.app)

    iBook keyboard have no INSert key. I am using it very often on PC because I like working in Terminal and using Midnight Commander (insert key is used there to selecting files). How to emulate this key in Terminal.app (like you can emulate other keys

  • Smart collection with last X photos imported

    I'm trying to create a smart collection that contains the last X (say 1000) photos taken/imported. Not sure what rules to use, can someone give me some pointers. Thanks

  • Quick selection tool failing to select objects

    Every time I use Quick selection tool it selects the area which I don't want to use. I have a website called JoGuru Social Travel Network for which I need to edit it's logo. Now since the logo has many green and blue variation I  can't select the are