APEX - BI publisher dynamic image not shown

Hi,
I've developed a BI RTF report layout within my APEX application.
I need to show external dynamic images stored into apex image files, but I have some problem.
BI manul says I should include into the report layout a dummy image with the following text:
url:{IMAGE_LOCATION}
where IMAGE_LOCATION is an element of the XML file having the image url.
When I run the report the image is blank although the IMAGE_LOCATION has the right url.
I tried to add another image with alt text url:{'image url'} and it is correctly shown.
I'm shure that IMAGE_LOCATION is right, because it's also shown in report as text.
How can I resolve this?
Thx
Davide

perhaps they can help you in here: BI Publisher

Similar Messages

  • Dynamic Images not shown on report in web farm environment

    I have a custom ASP .NET application running reports on XIR2 platform using the .NET WCA.  This is in a web farm environment.  Reports with images do not reliably work.  It appears that the WCA temp image handler cannot see the files if my session fails from one server in the farm to the next.  I'm looking to move the temp images location to an external file share so that all servers will see it.  Changing the value in web.config for the temp images directory did not work.  Tomorrow I will test changing the registry setting, but I wonder if anyone has any tips?
    Chris

    Hi, Ted,
    I am not the application developer, but rather the server administrator.  I know that the applications are NOT using viewrpt.cwr.  I can not state with confidence that they are using the CR .NET Web Forms viewer.  I know that some of our applications show their reports in the ActiveX Viewer, and some use the DHTML viewer.  The following is the code (in the aspx page) that is used to execute the report (I hope it helps):
              void ViewerSetting()
                        try
                             bool bHasRefreshButton =Request.QueryString["bRefresh"]=="Y"?true:false;
                             bool bHasToggleGroupTreeButton=Request.QueryString["bToggleGroupTree"]=="N"?false:true;
                             bool bHasZoomFactorList=Request.QueryString["bZoomFactor"]=="N"?false:true;
                             bool bDisplayGroupTree=Request.QueryString["bGroupTree"]=="N"?false:true;
                             bool bBestFitPage =true;
                             bool bDisplayBottomToolbar =Request.QueryString["BottomToolbar"]=="N"?false:true;
                             bool bHasCrystalLogo =Request.QueryString["CrystalLogo"]=="N"?false:true;
                             bool bHasExportButton =Request.QueryString["ExportButton"]=="N"?false:true;
                             bool bDisplayToolbar =Request.QueryString["Toolbar"]=="N"?false:true;
                             bool bHasGotoPageButton=Request.QueryString["GotoPageButton"]=="N"?false:true;
                             bool bHasSearchButton =Request.QueryString["SearchButton"]=="N"?false:true;
                             string sPrintMode=Request.QueryString["PrintMode"]==null?ConfigurationSettings.AppSettings["PrintMode"].Trim():Request.QueryString["PrintMode"].ToString();
                             crystalReportViewer.HasRefreshButton=bHasRefreshButton;
                             crystalReportViewer.HasToggleGroupTreeButton=bHasToggleGroupTreeButton;
                             crystalReportViewer.HasZoomFactorList=bHasZoomFactorList;
                             crystalReportViewer.DisplayGroupTree=bDisplayGroupTree;
                             crystalReportViewer.BestFitPage=bBestFitPage;
                             crystalReportViewer.DisplayBottomToolbar=bDisplayBottomToolbar;
                             crystalReportViewer.HasCrystalLogo=bHasCrystalLogo;
                             crystalReportViewer.HasExportButton=bHasExportButton;
                             crystalReportViewer.DisplayToolbar=bDisplayToolbar;
                             crystalReportViewer.HasGotoPageButton=bHasGotoPageButton;
                             crystalReportViewer.HasSearchButton=bHasSearchButton;
                             if (sPrintMode.ToUpper() =="ACTX")
                                  crystalReportViewer.PrintMode=CrystalDecisions.Web.PrintMode.ActiveX;
                             else
                                  crystalReportViewer.PrintMode=CrystalDecisions.Web.PrintMode.Pdf;
                        catch {}
                   void SetParameterandViewReport()
                             try
                                  ViewerSetting();
                            string sServer = ConfigurationManager.AppSettings["APSServer"].Trim();
                            string sUser = ConfigurationManager.AppSettings["APSUser"].Trim();
                            string sPassword = ConfigurationManager.AppSettings["APSPassword"].Trim();
                            string sAuthType = ConfigurationManager.AppSettings["APSAuthType"].Trim();
                                  string sReportName = Request.QueryString["ReportName"];
                                  EnterpriseSession ceSession;
                                  EnterpriseService ceEnterpriseService;
                                  InfoStore ceInfoStore;
                                  InfoObjects ceReportObjects ;
                                  InfoObject ceReportObject ;
                                  CrystalDecisions.Enterprise.Desktop.Report  ceReport;
                                  ParameterFields  ceParameterFields;
                                  ParameterField ceParameterField;
                                  ReportParameters ceParameters ;
                                  ReportParameter ceParameter ;
                                  ParameterDiscreteValue ceParameterDiscreteValue;
                                  SessionMgr ceSessionMgr= new SessionMgr();
                                  if ( Session ["ceSession"] == null)
                                       ceSession = ceSessionMgr.Logon(sUser, sPassword, sServer, sAuthType);
                                       Session ["ceSession"]=ceSession;
                                  else
                                       ceSession = (EnterpriseSession) Session ["ceSession"];
                                  ceEnterpriseService = ceSession.GetService("InfoStore");
                                  ceInfoStore = new  InfoStore(ceEnterpriseService);
                                  string sQuery = "Select * From CI_INFOOBJECTS Where SI_PROGID = 'CrystalEnterprise.Report' AND SI_Name='" + sReportName + "' And SI_INSTANCE=0";
                                  ceReportObjects = ceInfoStore.Query(sQuery);
                                  if (ceReportObjects.Count <1 )
                                       lblMessage.Text="Please check your reportName";
                                       lblMessage.Visible=true;
                                       return ;
                            ceReportObject = ceReportObjects[1];
                            ceReport = (CrystalDecisions.Enterprise.Desktop.Report)ceReportObject;
                            ceParameters = ceReport.ReportParameters;
                            ceParameterFields = new ParameterFields();
                                  if (ceReportObjects.Count > 0)
                                       ceReportObject = ceReportObjects[1];
                                       ceReport  =(CrystalDecisions.Enterprise.Desktop.Report) ceReportObject;
                                       ceParameters = ceReport.ReportParameters;
                                       ceParameterFields = new ParameterFields();
                                       string sParamName="",sParamValue="";
                                       string sPrompt="";
                                       for (int i=1; i <= ceParameters.Count; i++ )
                                            sPrompt="Prompt"+(i-1).ToString().Trim();
                                            ceParameter =ceParameters<i>;
                                            sParamName=     ceParameter.ParameterName.Trim();
                                            sParamValue= Request.QueryString[sPrompt]==null?"": Request.QueryString[sPrompt];     
                                            ceParameterField = new ParameterField();
                                            ceParameterDiscreteValue = new ParameterDiscreteValue();
                                    ceParameterDiscreteValue.Value = sParamValue;
                                    ceParameterField.CurrentValues.Add(ceParameterDiscreteValue);
                                            ceParameterField.Name = ceParameter.ParameterName;
                                            ceParameterField.ParameterValueType = ParameterValueKind.StringParameter;
                                            ceParameterFields.Add(ceParameterField);
                                       crystalReportViewer.ParameterFieldInfo = ceParameterFields;
                                       crystalReportViewer.EnterpriseLogon = ceSession;
                                       crystalReportViewer.ReportSource = ceReportObject;
                                          crystalReportViewer.Visible = true;
                             catch (Exception ex)
                                  lblMessage.Text = ex.Source + ex.Message + ex.StackTrace; 
                                  lblMessage.Visible=true;
    Thanks,
    Chris Peet

  • Export to Pdf: Image not shown

    I'm a newbie with Crystal Report.
    I'm trying to export a loaded Crystal report document in C# to pdf.
    I have a image in the document but it will not show. The Image path is an url.
    If I export it to CrystalReport format it works fine and the image is shown.  
    crdoc.ExportToDisk(ExportFormatType.CrystalReport, logPath + debugFileName + "_1.rpt");
    If I export it to Pdf format it will not work.  
    crdoc.ExportToDisk(ExportFormatType.PortableDocFormat, logPath + debugFileName + ".pdf");
    I also tried to export the document like this
    ExportOptions crExportOptions = new ExportOptions();
    DiskFileDestinationOptions crDiskFileDestinationOptions = new DiskFileDestinationOptions();
    crDiskFileDestinationOptions.DiskFileName = logPath + debugFileName + "_2.pdf";
    crExportOptions.DestinationOptions = crDiskFileDestinationOptions;
    crExportOptions.ExportDestinationType = ExportDestinationType.DiskFile;
    crExportOptions.ExportFormatType = ExportFormatType.PortableDocFormat;
    crdoc.Export(crExportOptions);
    The refrences i'm using is
    CrystalDecisions.CrystalReports.Engine vers. 11.5.3700.0
    CrystalDecisions.Enterprise.Framework vers. 11.5.3300.0
    CrystalDecisions.Enterprise.InfoStore vers. 11.5.3300.0
    CrystalDecisions.ReportSource vers. 11.5.3700.0
    CrystalDecisions.Shared vers. 11.5.3700.0

    I found a solution to this problem:
    1200904 - A dynamic image from an HTTP source does not appear in a .NET application 
    Symptom
    A dynamic image from an HTTP source does not appear in a .NET application deployed to a production system.
    Cause
    This problem occurs because the library file libcurl.dll is missing from the Business Objects bin directory. The libcurl.dll is not included in the .NET merge modules for Crystal Reports XI and Crystal Reports XI Release 2.
    Crystal Reports XI Release 2
    1. Find the libcurl.dll on the development system in C:\Program Files\Business Objects\Common\3.5\bin.
    2. Copy and paste libcurl.dll to C:\Program Files\Common Files\Business Objects\3.5\bin on the production system.

  • Approved and published items are not shown in the catalog search

    Hello all,
    We are implementing SRM 4.0 SSP scenario .
    To support shopping of EBP we are also implementing CCM 2.0 as an add on.
    Please note CCM and EBP are on same client and CAT & CSE are also on the same client.
    No XI is involved. The catalog scheme was uploaded as CSV 2.0. The items for the catalog was created manually in CAT.
    Although the item has the status "approved" and the procurement catalog which is also the master catalog was published successfully the item is not shown after searching by CSE in EBP. Also the categories of the scheme are not shown in the catalog search.
    Do i have to approve the categories too and if yes can you  explain me how to do this?
    I think you see that I'm a newbie at srm and ccm and this problem is probably no real problem but I have not found any similar topics in the forum. So please can you help.
    Thanks a lot for your help.
    Best regards,
    Bernd

    Bernd: the reason I asked about views is that you don't have any error messages. This might indicate that (a) you have no items in the view, or (b) there's something wrong with view-role-user assignment.
    To check for (a), please go to the published procurement catalog, and go to Views tab. Check that your View is Active. Click on your View ID link to display view details. You should see a list of characteristics assigned to your view in Assign Characteristics sub-tab (the list should not be blank!). Go to Assign Items sub-tab. Navigate in your schema to find items that are supposed to be assigned to your view. You should see "Yes" in the "Assigned" column for those products. If you don't, then you simply don't have any items in your view.
    Another thing I'd like you to check: when the user calls your procurement catalog for search, do you see the name of the catalog displayed just below the drop-down "Select Categories Hierarchically"?
    Cheers,
    Serguei

  • Gray image not shown correctly in photo app

    Hi, in my iphone App, I create a Gray CGImage. Some code is here:
    colorSpace = CGColorSpaceCreateDeviceGray();
    if (colorSpace == NULL)
    fprintf(stderr, "Error allocating color space\n");
    return NULL;
    CGDataProviderRef dataProvider =
    CGDataProviderCreateWithData(NULL,
    myimagebuffer,
    bitmapByteCount,
    NULL);
    CGImageRef cgImage = CGImageCreate(col,
    row,
    8,
    8,
    col,
    colorSpace,
    kCGImageAlphaNone,
    dataProvider,
    NULL,
    false,
    kCGRenderingIntentDefault);
    And then I use this CGImage to make a UIImage. This image shows OK in UIImageView. I also use UIImageWriteToSavedPhotosAlbum to save this gray scale image to photo album. But when I open iphone native Photo app, this image is not shown correctly.
    Anyone has the same experience?
    Thanks,
    fm

    Post Author: JeffI
    CA Forum: Older Products
    Because I am sure other people will encounter this issue, I will post the solution here...The issue lies in what program is associated with .bmp files. In my specific case the customer had PhotoSuite 4 by Roxio associated with opening bmp files.  I am not sure exactly why (perhaps it doesn't support drag-and-drop?) but if you create a .reg file and import this it should fix the problem. The bolded part is the important part. Windows Registry Editor Version 5.00&#91;HKEY_CLASSES_ROOT&#93;&#91;HKEY_CLASSES_ROOT\*&#93;"InfoTip"="prop:Type;DocAuthor;DocTitle;DocSubject;DocComments;Write;Size""QuickTip"="prop:Type;Size""AlwaysShowExt"="""TileInfo"="prop:Type;Size"&#91;HKEY_CLASSES_ROOT\.bmp&#93;@="Paint.Picture""PerceivedType"="image""Content Type"="image/bmp"&#91;HKEY_CLASSES_ROOT\.bmp\OpenWithList&#93;&#91;HKEY_CLASSES_ROOT\.bmp\OpenWithList\MSPaint.exe&#93;@=""&#91;HKEY_CLASSES_ROOT\.bmp\OpenWithProgids&#93;"Paint.Picture"=hex(0):

  • SRM-MDM Catalog: Images not shown in search ui - only placeholder visible

    Hello Expert,
    we have the problem, that the images, which we imported into the repository using the Data Manager are not shown in the search ui. The image is visible in the Data Manager and assigned to a product.
    If I make a right-click on the image in the brower,  I get a URL like this
    http://[server]:port]/webdynpro/resources/sap.com/tc~mdm~srmcat~uiprod/Components/com.sap.mdm.srmcat.uiprod.ItemDetails/null//Images?id=1&variant=Thumbnail&cachePath=/tmp/largeObjectRepositoriesCachedFolder/kfw-mdm-ae54/RepositoryPort_2010/User1&relativePath=t07/0000000/r00001v-2.jpg
    Regards,
    Sven
    Edited by: Sven Haustein on Oct 16, 2008 3:28 PM

    Hi,
    we are using SRM-MDM Catalog 2.0 SP04 Patch 01 (5.5.63.65)
    Retrieving MDM JAVA API Version
    Admin Version = 5.5.63.02 [Interface CRC=0x5b63a633]
    Build Version = 5.5.63.102
    Content Version = 5.5.63.09 [Interface CRC=0x9d7cb0c4]
    Meta Version \t= 5.5.63.00 [Interface CRC=0xab59b8dc]
    !======================================!
    Building up connection to MDM Server 10.130.32.81
    Retreiving MDM Server Version
    Version = Version 5.5 SP6 (5.5.63.65)
    Regards,
    Sven

  • New images not shown

    Hi,
    Apparently images that are not on the disk when a Java application starts but that are added on disk during program execution, are not shown on JLabels, JButtons, ...
    Anyone knows why?
    Taaje

    Dunno, coz it works 4 me. Y ! 4 u?
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.net.*;
    import javax.imageio.*;
    import javax.swing.*;
    public class Example {
        public static void main(String[] args) {
            final File file = new File("temp.jpg"); //constructor doesn't create file in file system, right?
            final JPanel cp = new JPanel(new BorderLayout());
            JButton write = new JButton("write image file");
            write.addActionListener(new ActionListener(){
                public void actionPerformed(ActionEvent evt) {
                    try {
                        URL url = new URL("http://today.java.net/jag/bio/JagHeadshot-small.jpg");
                        ImageIO.write(ImageIO.read(url), "jpg", file);
                    } catch (IOException e) {
                        e.printStackTrace();
            JButton read = new JButton("attempt to read file and create label");
            read.addActionListener(new ActionListener(){
                public void actionPerformed(ActionEvent evt) {
                   try {
                       cp.add(new JLabel(new ImageIcon(ImageIO.read(file))));
                       cp.revalidate();
                       cp.repaint();
                   } catch (IOException e) {
                       e.printStackTrace();
            JPanel buttons = new JPanel();
            buttons.add(write);
            buttons.add(read);
            cp.add(buttons, BorderLayout.NORTH);
            cp.setPreferredSize(new Dimension(400, 300));
            JFrame f = new JFrame("Example");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.setContentPane(cp);
            f.pack();
            f.setLocationRelativeTo(null);
            f.setVisible(true);
    }

  • CR XI R2 - Dynamic Images not working on production machine

    We are using VS2005 on windows server 2003 as our development environment. We have CR XI R2 installed there. We have a crystal report set up to use dynamic images and it is working fine. On the report, the graphic location of the picture is set to a formula which we set dynamically from VS2005.
    When we move our report and code to the production environment, the dynamic image is not showing. We have the report showing the formula, and it is the correct path to the image. What are we missing?!

    I am having the same problem.  This works no problem in development on a Vista machine but once I try and run it in production on a Windows 2003 server, it won't work.
    Did anyone ever come up with a resolution to this proble?
    I know it's not a file access rights issue as the url that I am calling is unprotected  I can call it using a simple web browser.
    http://details.planelements.com/Details/BarCode/BarCode.aspx?dataToEncode=12345
    I am pretty confident at this point (after insalling the lastest service pack) and trying everything that this is a security issue, but for the life of me I cant figure out what it is.
    To date I have tried the following:
    1)  Gave the ASP.Net account Administative rights - Didnt' work
    2)  Changed the dynamic value from usin the above specified url to a local file system file (ie. c:\temp\Image.jpg).  This worked, so I know the dynamic value code is being executed.
    3)  Uninstalled the Internet Explorer Enhanced Security settings just to make sure that something was not going on there (Since I don't have that intalled on my Vista machine) - Didnt' work
    4)  Tried calling a hard coded image locally (http://localhost/Image.jpg) - Didn't work
    At this point I don't know what else to try.  I am going to go through and see if I might need to assign some rights to the administrator account that are granted to the "local system" account, but after that I am not sure what else to try.
    Anyone else have any additional suggestions?

  • Images not shown correctly i addon store

    I Have a questions regarding the Adobe® Exchange Producer Portal. If this is not the correct forum, please do direct me to the correct channel.
    Images not showing correctly on the product page in the addons store.
    See page https://creative.adobe.com/addons/products/5132#.VL4rTy5GySM
    For instance the preview images are not showing correctly.
    The url https://portcullis-production-us-east-1.s3.amazonaws.com/0/5132/26a19cfe-663d-49f4-86f4-fd 4b2d6a338b.png returns status code "403 Forbidden"

    If this is your product, please submit a metadata change request with new images uploaded. That should solve the problem.

  • Image not shown - mysterious error

    We recently encountered a -to us very mysterious- problem in a report:
    We have to fields A, B and a repeating frame R on the same level. The repeating frame shows an image from a db blob.
    We have A and B side by side and R below that.
    A and B have format triggers which do no formatting but return FALSE or TRUE depending on whether data for the corresponding field is available or not.
    The image is only shown if the format trigger for A returns FALSE.
    Even worse we think that this error did not occur before and we did not change the iAS configuration (10g).
    Any ideas?
    Thanks
    Peter

    Meanwhile we learned that there is an implicit anchor between A and R.
    We
    - CUTted A and B
    - created a "dummy" field A0 left of A
    - thus got an implicit anchor between A0 and R
    - COPIED A and B
    - created a format trigger on A0 which does nothing than returning false
    This is a workaround (the mystery still exists..)

  • Images not shown in Diagram view SCOM 2012 R2

    Dear SCOM Experts,
    I have been creating mpbundle using C# . I was able to add resources to the images. I was able to import the .mpb file. I was able to discover and monitor the components, but I could not see the images for components in diagram view. I have followed the
    procedure in msdn website 
    http://msdn.microsoft.com/en-us/library/gg986188.aspx 
    EnterpriseManagementGroup mg = new EnterpriseManagementGroup("localhost");
    ManagementPack mp = new ManagementPack("Folder\\RePackaging.Library.xml");
    System.IO.FileStream fileStream1 = new System.IO.FileStream("Folder\\Resources\\package_16.png", System.IO.FileMode.Open);
    System.IO.FileStream fileStream2 = new System.IO.FileStream("Folder\\Resources\\package_32.png", System.IO.FileMode.Open);
    System.IO.FileStream fileStream3 = new System.IO.FileStream("Folder\\Resources\\package_64.png", System.IO.FileMode.Open);
    ResourceStream resStream1 = new ResourceStream(mg, fileStream1);
    ResourceStream resStream2 = new ResourceStream(mg, fileStream2);
    ResourceStream resStream3 = new ResourceStream(mg, fileStream3);
    ManagementPackBundleWriter bundleWriter = ManagementPackBundleFactory.CreateBundleWriter(".\\");
    ManagementPackBundle bundle = ManagementPackBundleFactory.CreateBundle();
    bundle.ManagementPacks.Add(mp);
    bundle.AddResourceStream(mp, "RePackaging.Library.Resources.Images.Package_16", resStream1, ManagementPackBundleStreamSignature.Empty);
    bundle.AddResourceStream(mp, "RePackaging.Library.Resources.Images.Package_32", resStream2, ManagementPackBundleStreamSignature.Empty);
    bundle.AddResourceStream(mp, "RePackaging.Library.Resources.Images.Package_64", resStream3, ManagementPackBundleStreamSignature.Empty);
    bundleWriter.Write(bundle, "RePackaging.Library");I had even used MPViewer to check if the images are in .mpb and I could see the images in Resources sectionin MPViewer software. I dont understand why i could not see images in diagram view.Please help!!!!!!

    Hi,
    A management pack bundle gives you the ability to not only add the XML but you could also add images or assembly in a much more efficient way then before without the bundle. When importing a MPB the xml will be imported as well as the assembly and images
    within it.
    Please refer below link for bundle and to unbundle MPB file 
    http://www.systemcentercentral.com/management-pack-bundles-to-bundle-and-to-unbundlendashcreate-a-mpb-and-extract-contents-from-a-mpb/
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • When editing an image in ps from a lr 4.2 smart collections image not shown back in smart collection

    Hi all,
    I have noticed at LR 4.2, that if you edit an image of a smart collection using PS (edit in PS function threw LR) and then save, the image is not appearing in the specific smart collection. Instead  image appears in the parent folder from where the smart collections retrieves images.
    Has anyone notice that as well??
    Forgot to mention that my parent folder with files is a collection created with virtual copies of seleveted files. If i edit in Photoshop directly threw this virtual copies collection then the files appears in smart collections as well. but if i edit in PS directly from smart collections then files dont appear into smart collections neither at the virtual copies collection!!

    "obviously you use virtual copies when creating those collections" - why? It seems to me that this just increases the number of images in your Library for no benefit, unless you want to independently edit  the two image versions, one inside the Event collection and one outside the collection. If you ever wanted to see an unedited version of a particular image, LR retains the history (and before/after view) needed to show that, within the single thumbnail.
    It is not necessary to make a Smart Collection in order to show only picked images from a particular event. You can use a Filter to show just the picked images and hide the rest. That means you can work inside the collection, and that means that when you edit an image to PS, the new LR version WILL inherit the collection membership as well as the Pick status, and therefore will immediately show next to the image it is based on.
    I think this is going to be simpler and easier - BTW you don't have to go back to Library Grid view in order to apply filters, only in order to configure them in the first place. By saving Filter presets with a name, you can then select between these directly [from the menu at the right end of the Filmstrip] while you work, even in Develop- for example, "no filter", "picked", "unpicked", "rated two or more", whatever you want. Also you can switch between the recently-viewed collections and folders [from a menu when you click on the image details text toward the left end of the Filmstrip], to change the underlying content of the Filmstrip, to which you are applying these filters.
    By "using selection criteria other than membership in a manual collection", I just meant: a special keyword, or a particular folder, or some combination of such things. But if you prefer to put images into a Collection, you can just use that directly and IMO you don't need the SC.
    I personally like to have some kind of sufficiently identifying keywords on the image anyway, so that Exported copies will also show this information automatically... since an exported image will not reveal what collection its master image belonged to, that classification alone is not enough IMO.

  • Png images not shown in applet when opened in internet explorer

    hi all,
    I am using some transparent PNG images in my applet . Its working properly in appletviewer as well as netscape but images just disappear in internet explorer.
    same image appears in internet explorer but not in applet in internet explorer.
    can anybody help me ?
    thanks

    The java version that IE has doesn't have support for PNG, only gif and jpeg.

  • APEX + BI Publisher: dynamic pdf filename.

    Hello gurus,
    i'm deploying my first apex application and I need to know if is possible to decide witch name will have the pdf output file.
    What I need is that the filename respect a particular syntax:
    :USER_NAME_:DATE_:ID
    I cannot find any customizable parameters in (report queries / report layouts ).
    Is it possible?
    Thank you very much in advance.
    Regards.
    Simon

    Simon,
    In the Print Attributes tab of your Report Region you can specify a filename. If you leave this blank it is the name of your region. Maybe you can enter there: &USER.
    For the Date : If &USER. works, you should fill a hidden field with the date you want to use for your report and use a reference to that field as a Filename (like &DATE_FIELD. ).
    The solution above doesn't seem to work. Even if you use &USER. in the region title (that is shown on the page), the PDF page is created with &USER..PDF as the name....sorry!
    HTH
    Regards
    Roel
    Edited by: Roel on Oct 16, 2008 12:31 PM

  • Flip book images not shown in flash.

    hi, i am new to all this and i am after a bit help please.
    i made a flash flipbook for my images using photo to flippingbook, and i uploaded it from dreamweaver on to my site,
    the  problem is, it works great in IE but does not in Firefox, in Firefox  you can see the flip book and buttons but no images at all.
    i have  tried everything i can think of including checking the internet for  ideas but i am at a loss, i do not know if it something to do with the  code or not.
    can someonne please help or give mee some ideas so that i can try and sort this problem out.
    thank you in advance for any help, thanks michael
    LINK
    http://mickynez.atwebpages.com/flip.html

    mate just checked ther it works in IE still and is just a white square blank flip book with no i msges in firefox, i asked a few people and they say they see the same as me? i dont know whats happened.

Maybe you are looking for

  • Push Notifications

    I am finding that with some of my push notifications it's not happening at all, for example, mail is not pushed through unless I go into the mail app..what's up with that? Or Facebook app does not send me notifications unless I go into the app and re

  • My early 2008 3.1, 2.8 Ghz wont boot up.

         My early 2008 Mac Pro, 3.1, 2.8 Ghz will not boot up. I get the chime then the gray screen, then it continues to boot for approx. 15 seconds after which the gray screen freezes up. Previous to this condition I started getting a half orange froze

  • EndpointConfigurator is breaking my composites

    Hi, I have run into a problem with Deploying my compisites via a deployment plan. Due to our cluster setup we need to have diffrent server url's to deploy to then the composites need to refer to each other. We need to deploy to devsoainternal.ad.ic.a

  • Consolidation Error Documentation (CSD)

    Hi all, I have recently ended upon a consolidation engine error (CSD-070, CSD-080). Searching in the forum I have see some threads talking about some documentation about these errors. Could anyone please send that documentation? About the CSD-070 (No

  • Safari Severely Malfunctioning

    I run Mac OS X 10.5.8 on a two year old mac book pro. My Safari is version 5.0.6 Recently I have experienced some severe problems with my Safari. It loads webpages extremely slowly. Most of the time it does not even load the page at all. Instead it w