Dynamic Images not showing on BOXIR3 with SP2 (Linux redhat installation)

Hi Guys,
We recently upgraded our BOXI R2 installation to BOXIR3 with SP2 (Linux redhat platform), and we noticed that all our reports icons/logos have just disappeared. 
What we are trying to do is just to load an image in an OLE Object, the image is referenced by an URL (that is passed through as a parameter).
We built a very simple testReport.rpt with an OLE Object that has an image URL in it, still it doen't work.
Notes:
1 The CrystalReport 2008 where the simple test report is built shows the icon/iamge correctly. However.
2- CMC and InfoVIew do not show the image.
3- What I just noticed today is that when I go to CMC/folders/folderxyz//testReport.rpt double click go to Default Settings/Thumbnail the image is there (if I tick Show report thumbnail).
Any help would be very appreciated (I am just stack).
Best Regards
Khalef Bessaih

moved to BOE forums

Similar Messages

  • Dynamic Images not showing at all

    Hello there,
    I need some help.
    I have a mySQL database with some images and txt. I use
    "Export Recordset As XML" (from Developer Toolbox).
    to run the txt through a Spry Data Table and the images to
    the Spry Detail Region. The problem is that the images won't show
    in the Detail Region when I click at the table. The description
    shows and changes as I click the table so the setup 'works'. I use
    a Image Placeholder in the Detail Region bind to the appropriate
    Recordset. I've uploaded a test table with images and txt from a
    online Dreamweaver tutorial so the mySQL table should be ok. At
    least the file names are showing in the table when checking in
    phpMyAdmin, though I can't see them. Only as a file name. And yes,
    I'm a newbie..
    Any idea what I'm missing out on here?
    Any help appreciated.
    Cheers

    moved to BOE forums

  • Likely bug with external editing (in CS5 not CS6 beta) and edited image not showing back up in LR

    I have come across something strange today that I've not seen before. I'm running LR 4.0 under Win7 64-bit. I usually use Photoshop CS6 beta as my external editor, but invoke CS5 when I have to use some tools that don't support the beta. Here is the scenario:
    * I have CS5 open
    * I externally edit an image in CS5 and Save it from CS5 when I'm done
    * The edited image does not show up in LR
    * I close LR and reopen it
    * There is the edited image!
    I have duplicated this many times this evening. I don't think I've seen it when I've used CS6 beta.

    Something strange is going on because I had the behavior reported of edited image not showing up after using another filter, Nik Silver Efex Pro 2.

  • BLOB image not shows in JSP page!!

    Hi Dear all,
    I had tried to configure how to show BLOB image to jsp page . The code are works fine and servlet works ok but image can not show only. can you help me that what need to be added. Please help me.
    Can any experts help me? BLOB image not shows in JSP page. I am using ADF11g/DB 10gR2.
    My as Code follows:
    _1. Servlet Config_
        <servlet>
            <servlet-name>images</servlet-name>
            <servlet-class>his.model.ClsImage</servlet-class>
        </servlet>
        <servlet-mapping>
            <servlet-name>images</servlet-name>
            <url-pattern>/render_images</url-pattern>
        </servlet-mapping>
      3. class code
    package his.model;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.Iterator;
    import java.util.Map;
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import oracle.jbo.ApplicationModule;
    import oracle.jbo.Row;
    import oracle.jbo.ViewObject;
    import oracle.jbo.client.Configuration;
    import oracle.jbo.domain.BlobDomain;
    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;
    public class ClsImage extends HttpServlet
      //private static final Log LOG = LogFactory.getLog(ImageServlet.class);
      private static final Log LOG = LogFactory.getLog(ClsImage.class);
      public void init(ServletConfig config)
        throws ServletException
        super.init(config);
      public void doGet(HttpServletRequest request,
                        HttpServletResponse response)
        throws ServletException, IOException
        System.out.println("GET---From servlet============= !!!");
        String appModuleName = "his.model.ModuleAssetMgt";//this.getServletConfig().getInitParameter("ApplicationModuleName");
        String appModuleConfig = "TempModuleAssetMgt";//this.getServletConfig().getInitParameter("ApplicationModuleConfig");
        String voQuery ="select ITEM_IMAGE from MM_ITEMIMAGE where IMAGE_NO = 'P1000000000006'" ;// 'P1000000000006' this.getServletConfig().getInitParameter("ImageViewObjectQuery");
        String mimeType = "jpg";//this.getServletConfig().getInitParameter("gif");
        //?IMAGE_NO='P1000000000006'
        //TODO: throw exception if mandatory parameter not set
        ApplicationModule am =
          Configuration.createRootApplicationModule(appModuleName, appModuleConfig);
          ViewObject vo =  am.createViewObjectFromQueryStmt("TempView2", voQuery);
        Map paramMap = request.getParameterMap();
        Iterator paramValues = paramMap.values().iterator();
        int i=0;
        while (paramValues.hasNext())
          // Only one value for a parameter is expected.
          // TODO: If more then 1 parameter is supplied make sure the value is bound to the right bind  
          // variable in the query! Maybe use named variables instead.
          String[] paramValue = (String[])paramValues.next();
          vo.setWhereClauseParam(i, paramValue[0]);
          i++;
       System.out.println("before run============= !!!");
        // Run the query
        vo.executeQuery();
        // Get the result (only the first row is taken into account
        System.out.println("after run============= !!!");
        Row product = vo.first();
        //System.out.println("============"+(BlobDomain)product.getAttribute(0));
        BlobDomain image = null;
        // Check if a row has been found
        if (product != null)
          System.out.println("onside product============= !!!");
           // We assume the Blob to be the first a field
           image = (BlobDomain) product.getAttribute(0);
           //System.out.println("onside  run product============= !!!"+image.toString() +"======="+image );
           // Check if there are more fields returned. If so, the second one
           // is considered to hold the mime type
           if ( product.getAttributeCount()> 1 )
              mimeType = (String)product.getAttribute(1);       
        else
          //LOG.warn("No row found to get image from !!!");
          LOG.warn("No row found to get image from !!!");
          return;
        System.out.println("Set Image============= !!!");
        // Set the content-type. Only images are taken into account
        response.setContentType("image/"+ mimeType+ "; charset=windows-1252");
        OutputStream os = response.getOutputStream();
        InputStream is = image.getInputStream();
        // copy blob to output
        byte[] buffer = new byte[4096];
        int nread;
        while ((nread = is.read(buffer)) != -1)
          os.write(buffer, 0, nread);
          //System.out.println("Set Image============= loop!!!"+(is.read(buffer)));
        os.close();
        // Remove the temporary viewobject
        vo.remove();
        // Release the appModule
        Configuration.releaseRootApplicationModule(am, false);
    } 3 . Jsp Tag
    <af:image source="/render_images" shortDesc="Item"/>  Thanks.
    zakir
    ====
    Edited by: Zakir Hossain on Apr 23, 2009 11:19 AM

    Hi here is solution,
    later I will put a project for this solution, right now I am really busy with ADF implementation.
    core changes is to solve my problem:
        byte[] buffer = new byte[image.getBufferSize()];
        int nread;
        vo.remove();
        while ((nread = is.read(buffer)) != -1) {
          os.write(buffer);
        }All code as below:
    Servlet Code*
      public void doGet(HttpServletRequest request,
                        HttpServletResponse response) throws ServletException,
                                                             IOException {
        String appModuleName =
          "his.model.ModuleAssetMgt";
        String appModuleConfig =
          "TempModuleAssetMgt";
      String imgno = request.getParameter("imgno");
        if (imgno == null || imgno.equals(""))
          return;
        String voQuery =
          "select ITEM_IMAGE from MM_ITEMIMAGE where IMAGE_NO = '" + imgno + "'";
        String mimeType = "gif";
        ApplicationModule am =
          Configuration.createRootApplicationModule(appModuleName,
                                                    appModuleConfig);
        am.clearVOCaches("TempView2", true);
        ViewObject vo = null;
        String s;
          vo = am.createViewObjectFromQueryStmt("TempView2", voQuery);
        // Run the query
        vo.executeQuery();
        // Get the result (only the first row is taken into account
        Row product = vo.first();
        BlobDomain image = null;
        // Check if a row has been found
        if (product != null) {
          // We assume the Blob to be the first a field
          image = (BlobDomain)product.getAttribute(0);
          // Check if there are more fields returned. If so, the second one
          // is considered to hold the mime type
          if (product.getAttributeCount() > 1) {
            mimeType = (String)product.getAttribute(1);
        } else {
          LOG.warn("No row found to get image from !!!");
          return;
        // Set the content-type. Only images are taken into account
        response.setContentType("image/" + mimeType);
        OutputStream os = response.getOutputStream();
        InputStream is = image.getInputStream();
        // copy blob to output
        byte[] buffer = new byte[image.getBufferSize()];
        int nread;
        vo.remove();
        while ((nread = is.read(buffer)) != -1) {
          os.write(buffer);
        is.close();
        os.close();
        // Release the appModule
    Configuration.releaseRootApplicationModule(am, true);
    }Jsp Tag
    <h:graphicImage url="/render_images?imgno=#{bindings.ImageNo.inputValue}"
                                                        height="168" width="224"/>

  • Another Images not Showing up thread

    I know there are multiple threads out there about images not showing up on the login page of application express, and I have browsed most of them without success.
    My images folder is in:
    C:\oracle\product\10.1.0\db_1\Apache\Apache\images\
    My dads.conf file has specified:
    Alias /i/ "C:\oracle\product\10.1.0\db_1\Apache\Apache\images\"
    Address of missing image in I.E. is:
    http://<host>:7777/i/htmldb/apex_logo.gif
    When I ran @apexins I specified /i/ for the virtual images directory.
    I am running Oracle Database 10gR2, with Oracle HTTP Server that came with the Oracle Database 10g Companion CD Release 2.
    I am using APEX 3.2.
    When I try to go to
    http://<host>:7777/i/
    I get:
    You don't have permission to access /i/ on this server.
    I also cannot login to APEX. When I type my username/password and click the Login button, it does nothing (nothing loads, nothing changes... nothing happens). I don't know if this is related?
    Thank you,
    ~Tom

    I found the problem -
    In my dads.conf file I had:
    Alias /i/ "C:\oracle\product\10.1.0\db_1\Apache\Apache\images\"
    When I really needed:
    Alias /i/ "C:\oracle\product\10.1.0\db_1\Apache\Apache\images/"
    Note the end slash after images changed from backslash to forward.
    Silly me.

  • Images not showing in the jlabel/jbutton

    Hello all,
    I've a package in which my cards directory is located along with all my src files and compiled classes. All my images ****.gif files are inside this directory.
    Then I've following the icon object.
    protected static JLabel lblDeck;The following code is used to get the image.
      String imgPath;
         imgPath = isImageExists("imgBG1.gif");
              if (imgPath == "")
              {     // If the image of Card Deck(imgDeck) is not Found
                   lblDeck = new JLabel();
                   lblDeck.setBackground(new Color(0, 64, 128));
                   lblDeck.setOpaque(true);
                   flagImgDeckFound = false;
              } else {
                   // If the image of Card Deck is Found
                   imgDeck     = new ImageIcon(imgPath);
                   lblDeck = new JLabel(imgDeck);
    // Check if the image exists else return "";
      protected String isImageExists(String imgName) {
              java.net.URL imgURL = getClass().getResource("cards/" + imgName);
             if (imgURL != null)
             {     return (imgURL.toString());     }
             else
                  JOptionPane.showMessageDialog(null, "File not Found: " + imgURL);
                  return "";
         }I'm still unable to get the image in the jlabel!
    When i checked the path, it is exactly returning the path of the file.
    But its neither loading the image into the jlabel nor is it returning "".
    This is just the label part i've other jbuttons also. Even they are not displaying any images.

    aLkeshP wrote:
    can everyone see this thread?
    YES FER-CHRISE-SAKE.
    Just how many times do you intend posting the same identical question?
    images not showing in the jlabel/jbutton
    Problem in imageicon
    iconImage on JButton & JLabel
    Re: images not showing in the jlabel/jbutton

  • Crystal Report Images Not Showing - JSP inside /WEB-INF folder

    Hi Experts,
    I am using Crystal report for Eclipse and also using Struts2 and tiles framework combination.
    The problem is when viewing the report all I've got is red X on all images and the graph image also not showing. This is when I use tiles and my jsp is inside the web-inf folder.
    This is my struts link: href="s:url value='/report/reportOpen.action?report=1'
    I've checked that the path to the viewer generated HTML is not correct. see code below.
    src="../../../crystalreportviewers/js/crviewerinclude.js"
    But when I test to access a simple jsp viewer that resides on the web root folder, this works fine but of course this is not what I want to have. I need to have my banner and menus on top of the report page (using tiles)
    This is my jsp link: href="s:url value='/ReportViewer.jsp?report=1'
    Viewer generated HTML below.
    src="crystalreportviewers/js/crviewerinclude.js"
    This might be a common problem and that you can share to me your solution.
    Note: I removed the script tags because I can't submit this entry.
    Thank you  in advance,
    Regards,
    Rulix Batistil
    Crystal Report Images Not Showing - JSP inside /WEB-INF folder

    Hi Saravana,
    After a few experimentation from your idea i was able to figure out the problem and now it is working.
    I don't have to copy the folder to where my jsp resides but still maintains it in the root location:  web/crystalreportviewers
    The changes should always be in web.xml.
    1st: change the crystal_image_uri value to ../crystalreportviewers
    2nd: change crystal_image_use_relative value to "web"
    Change to "web" instead of webapp because that is what I named my web root folder.
    <context-param>
              <param-name>crystal_image_uri</param-name>
              <param-value>../crystalreportviewers</param-value>
         </context-param>
         <context-param>
              <param-name>crystal_image_use_relative</param-name>
              <param-value>web</param-value>
         </context-param>
    Thank you. You showed me the way on how to solve the 3 day problem.
    BTW, my next problem is when clicking on any buttons prev/next/print/export, I got this error HTTP Status 404.
    Well, at least for now I can view my initial report.  I just need to figure out the next issue and with the help of the great people here in the forum.
    Thanks a lot.
    Regards,
    Rulix
    Edited by: Rulix Batistil on Nov 26, 2008 7:27 AM

  • HT4075 when i drag the pdf file over other (in previewer) to merge it does not show green circle with plus one. what to do?

    when i drag the pdf file over other (in previewer) to merge it does not show green circle with plus one. what to do?

    Hello djensen1x,
    Could you please let me know what version of Acrobat are you using.
    Also, tell me your workflow of combining those PDF files?
    Please share the screenshot of the error message that you get.
    Hope to get your response.
    Regards,
    Anubha

  • Im trying to find my iPhone via iCloud but i does not show a map with its last know location. It only shows the menu options. My iPad and Mac show up but the map of my iPhone does not.

    Im trying to find my iPhone via iCloud but i does not show a map with its last know location. It only shows the menu options. My iPad and Mac show up but the map of my iPhone does not. Can anyone help?

    If your phone is turned off or not connected to the Internet, you will be unable to locate it. Last known location is only stored for 24 hours.

  • Image not showing in Abobe integrated with Java WebDynPro

    Hi All,
    Image is not showing in Abobe integrated with Java WebDynPro.
    I did the following:
    Added the image field in adobe form. in URL value set the value of context node binding. Binding set to none and size set to Use Original Size.
    Then in script editor i wrote
    this.value.image.href = xfa.resolveNode(this.value.image.href).value;
    at innitialize , javascript and client.
    I can see the image from the same url context value if image field is created directly in WebDynPro View.
    Can anyone suggest what is missing?
    Thanks and Regards,
    Nuzhat

    Try changing your line of code for this one
    this.value.image.href = xfa.record.Images.URL;
    Check that the url passed by scripting is correct with a messageBox for example.
    You can also try assigning a hardcoded url at scripting level to check if its works.
    Best regards, Aldo.

  • Image not showing because not associated with the application

    I have an issue with the images in an application that I have imported to a test environment not displaying.
    The pages refer to the images using #APP_IMAGES# and the images are showing in Shared Components->Images as "No Application Associated", which seems to be the issue, since when I change the setting manually on each image then the images appear.
    However there are lots of images and when I reimport the images from the dev environment (via application express import) specifying the application to install into it sets them back to "No Application Associated" again. Note - the applciation id is different on the test env than on development.
    This is not the case with another environment we have, also another funny in this test environment, whenever I try to reimport the image export file (without individually deleting each image first) I get the following oracle error irrespective of whether I try to specify the application to import into or whether I pick "workspace images" from the drop-down.
    ORA-20001: GET_BLOCK Error. ORA-20001: Execution of the statement was unsuccessful. ORA-00001: unique constraint (FLOWS_020000.WWV_FLOW_IMAGE_REPO_IDX1) violated <pre>declare l_name varchar2(255); l_img_id number := null; begin l_name := '855_globe_watercolour.jpg'; l_img_id := wwv_flow_image_api.new_image_repository_record( p_name=&gt; l_name, p_varchar2_table=&gt; wwv_flow_image_api.g_varchar2_table, p_mimetype=&gt; 'image/jpeg', p_flow_
    Do I have a duff environment here ? Is it because I'm importing into a different application id ? Is it a known issue with Application Express (v2.0.0.00.49) ?

    I've gone back to the environment where the image import does work, this happens to have the same id as the original application. So its looking to me like if you import an image export file into an application id other that that which it was originally exported, it ignores the application you chose and pulls the images in as workspace images.
    Furthermore it also looks like once an image import has been done into an application with one id (the original application id), then an import of the same image export file into a different application id gives a unique constraint error.
    Are these bugs and have they been fixed ?

  • 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?

  • Dynamic List not showing from RTL alignment

    Hi friends,
    I have a dynamic hierarichal list, showing the employee and sub-ordinates.
    I have to show this alignment from RTL and not from LTR and hence for that in the inline CSS section of the page I mentioned like
    body{direction:rtl}But the list aint moving, since the remaining things appearing in RTL other than the list, Is im missing anything in the list alignment in order to show from RTL
    I have created a ex in apex.oracle.com
    In application 49240, page 1
    Kindly help me with this problem friends.
    Thanks in advance.
    Brgds,
    Mini

    Hello Mini,
    What you are asking is not trivial at all, and using the CSS direction attribute will not help, per se.
    As you are using a built-in region type, there is a lot of page orientation HTML code that is hard-coded, including JavaScript function parameters, which set to Left (e.g. dhtml_MenuOpen). Another problem is the hard-coded use of the arrow images (e.g. menu_open_right2.gif). These images are not influenced by the CSS direction attribute, and need to be replaced with images in a reverse direction.
    To make a long story short – what you are asking can't be done out-of-the-box, or by minor changes to CSS files.
    Regards,
    Arie.
    &diams; Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.
    &diams; Author of Oracle Application Express 3.2 – The Essentials and More

  • Image not showing in Links

    Somehow a few images in my document, which previously showed in the links, now do not. The image is visible, just not the link in the panel. What may have happened, and how to I find it? The preflight indicates no missing link, but it's clearly not there in the link panel. Seems odd.

    In order to make the file "whole" again. The image(s) without panel info have to be deleted and either via CMD+D or File > Place... the same asset is selected from the supporting artwork folder and re-placed into position. Replacement will not happen if the image without the panel info is the selected frame and an attempt to place is made, the panel stays blank.
    All files begin as CS5.5
    We have a blank folder/document structure which is duplicated and renamed as jobs are processed into design.
    We preach that all revisions are followed up with a Save As... However, there are these few instances where the file is opened, checked and closed without a save & without any revisions.
    These are to check for the correct use of rich black and 100% black usage on the page. (All type elements selected over, one at a time with the type tool. As many as 200 text blocks per layout page.) Generally, this late in revisions, this is not the first check for rich, 100% black so it is pretty common that no changes are made.
    Every image is selected and the effects panel is checked to make sure the same drop shadow settings are used. Cancel.
    The last is simply opening the document and cycling through some panels prior to final file approval and before mechanicals are made...
    Swatches >> Check for unused swatches.
    Swatches >> Add unnamed colors
    Character Styles > None but default, no modifications.
    Paragraph Styles > None but default, no modifications.
    File > Package... (Look at the summary for issues, click Cancel.)
    -- One more thing, not sure if this is related... when switching application focus from another app to an InDesign window, InDesign does not always become active or completely active. Sometimes the window will come to the front with menu bars active but the document not active. Happens with only 1 document open as well as several. Sometimes focus will not happen at all unless the visible documents top border is clicked. (Clicking on the layout does nothing.)

  • Small images not showing in design view

    Desperate for help! I've been trying to diagnose this for a
    long time. For some strange reason, images that used to show up in
    my design view are now displaying the 'missing image' icon. I've
    narrowed it down to this--if the image is less than 8px high, the
    image will not display. When I increase it to 8px or more high
    (width does not have any bearing on it), the image is displayed.
    Same exact image name, same placement, path, file type, etc. The
    only variable changed is the image height. Someone please tell me
    what is going on. By the way, this just started to happen. These
    small images were displaying fine up until yesterday.

    You have two id="header" elements on the page....
    I can see both the 5px tall GIF and JPG images just fine in
    CS4.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "peregrinedesign" <[email protected]> wrote
    in message
    news:gmiaur$bv$[email protected]..
    > OK, but I'm not sure this will help. Here's the page:
    >
    http://www.capitaloandp.com/orthotics.php
    >
    > What you will see is correct, and when I preview with a
    browser it is fine
    > also, it's only the DW design view that is not showing
    the small jpeg.
    > On the right side, there are two small black rectangles.
    The one on the
    > left
    > is a gif, and the one on the right is the jpg. They were
    both exported
    > from the
    > same original Fireworks file. I have tested using
    Photoshop also.
    >
    > Thank you for your attention to this.
    >

Maybe you are looking for

  • How can I test a RTP(send&receive) application on the same computer?

    I an writing an application that lets one computer (A) sends a media file to another computer (B) and B receives it and play it. But how can I test this application on the same computer Eg.Transmitter: localhost 43000 Receiver: localhost 43000 It wil

  • Transferring music from iphone to library

    ive just got a macbook pro and dont know how to load the music on my iphone onto the library? please help, thanks

  • IPOD causes PC to crash

    Hi there, hope someone can help figure out whats going on. I have a 3rd gen ipod (one before click wheel), black and white screen, it has been blissfully working perfectly for a few years now. Recently updated Itunes to 6.0.4 and ipod updater to 2.3.

  • How to Save Data from DataGrid to Excel Sheet?

    Hi All, I am trying to use Adobe Flex 3.0 for making web pages. I want to save the data from DataGrid and Advanced DataGrid of Adobe Flex 3.0 to Excel Sheet file. I am trying Flex Help, but didn't find answer for it. In the application there is a but

  • Faxing reports from ORACLE PURCHASING

    If anyone has faxed purchase orders from ORACLE Application using some third party tool other than oracle reports ,kindly let me know at [email protected]