Embedding a *.pdf or *.doc into a Oracle Report

Report Guru's,
I am having a scenario wherein a client wants to import a file which could be anything from an image/text/pdf/doc/excel into an Oracle Report output. The file would be stored in the database table column(BLOB or LONG RAW type). As per the existing functionality available in Oracle Report, I can select this particular column in my report and in the layout design a field with this column as its source. Now the problem is that if I check the properties of this field in the column, then the file format is restricted to text/image/ole/cgm/oracle drawing format/sound/video/ole2/image url and it doesn't seem to take care of pdf/excel or other file types.
Is there any workaround which I can use to embed pdf's or other documents?
Thanks in advance.
Regards.

I asked this, too, not too long ago, but I have received no response of any kind.
Seems like maybe the answer is no.
]{evin                                                                                                                                                                                                                                                                   

Similar Messages

  • How To Store pdf or doc file in Oracle Database using Java Jdbc?

    can any one help me out How To Store pdf or doc file in Oracle Database using Java Jdbc in JSP/Serlet? i tried like anything. using blob also i tried. but i am able 2 store images in DB not files. please if u know or else if u have some code like this plz send that to me, and help me out plz. i need that urgent.

    Hi.. i am not getting error, But i am not getting the original contents from my file. i am getting all ASCII vales, instead of my original data. here i am including my code.
    for Adding PDF in DB i used image.jsp
    Database table structure (table name. pictures )
    Name Null? Type
    ID NOT NULL NUMBER(11)
    IMAGE BLOB
    <%@ page language="java" import="java.util.*,java.sql.*,java.io.*" pageEncoding="ISO-8859-1"%>
    <%
    String path = request.getContextPath();
    String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
    %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <%
    try{
         Class.forName("oracle.jdbc.driver.OracleDriver");
         Connection con=DriverManager.getConnection("jdbc:oracle:thin:@192.168.1.135:1521:orcl","scott","tiger");
         PreparedStatement ps,pstmt,psmnt;
         ps = con.prepareStatement("INSERT INTO pictures VALUES(?,?)");
    File file =
    new File("D:/info.pdf");
    FileInputStream fs = new FileInputStream(file);
    ps.setInt(1,4);
    ps.setBinaryStream(2,fs,fs.available());
    int i = ps.executeUpdate();
    if(i!=0){
    out.println("<h2>PDF inserted successfully");
    else{
    out.println("<h2>Problem in image insertion");
    catch(Exception e){
    out.println("<h2>Failed Due To "+e);
    %>
    O/P: PDF inserted successfully
    i tried to display that pdf using servlet. i am giving the code below.
    import java.io.IOException;
    import java.sql.*;
    import java.io.*;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    public class DispPDF extends HttpServlet {
         * The doGet method of the servlet. <br>
         * This method is called when a form has its tag value method equals to get.
         * @param request the request send by the client to the server
         * @param response the response send by the server to the client
         * @throws ServletException if an error occurred
         * @throws IOException if an error occurred
         public void service(HttpServletRequest request, HttpServletResponse response)
                   throws ServletException, IOException {
              //response.setContentType("text/html"); i commented. coz we cant use response two times.
              //PrintWriter out = response.getWriter();
              try{
                   InputStream sPdf;
                   Class.forName("oracle.jdbc.driver.OracleDriver");
                        Connection con=DriverManager.getConnection("jdbc:oracle:thin:@192.168.1.135:1521:orcl","scott","tiger");
                        PreparedStatement ps,pstmt,psmnt;
                   psmnt = con.prepareStatement("SELECT image FROM pictures WHERE id = ?");
                        psmnt.setString(1, "4"); // here integer number '4' is image id from the table.
                   ResultSet rs = psmnt.executeQuery();
                        if(rs.next()) {
                   byte[] bytearray = new byte[1048576];
                        //out.println(bytearray);
                        int size=0;
                        sPdf = rs.getBinaryStream(1);
                        response.reset();
                        response.setContentType("application/pdf");
                        while((size=sPdf.read(bytearray))!= -1 ){
                        //out.println(size);
                        response.getOutputStream().write(bytearray,0,size);
                   catch(Exception e){
                   System.out.println("Failed Due To "+e);
                        //out.println("<h2>Failed Due To "+e);
              //out.close();
    OP
    PDF-1.4 %âãÏÓ 2 0 obj <>stream xœ+är á26S°00SIá2PÐ5´1ôÝ BÒ¸4Ü2‹ŠKüsSŠSŠS4C²€ê P”kø$V㙂GÒU×713CkW )(Ü endstream endobj 4 0 obj <>>>/MediaBox[0 0 595 842]>> endobj 1 0 obj <> endobj 3 0 obj <> endobj 5 0 obj <> endobj 6 0 obj <> endobj xref 0 7 0000000000 65535 f 0000000325 00000 n 0000000015 00000 n 0000000413 00000 n 0000000168 00000 n 0000000464 00000 n 0000000509 00000 n trailer <<01b2fa8b70ac262bfa939cc786f8770c>]/Root 5 0 R/Size 7/Info 6 0 R>> startxref 641 %%EOF
    plz help me out.

  • How can I convert a pdf or .doc into a url

    I want to link a pdf file to a word on a website. I think the easiest way would be to link a url address but I do not know how to get a url address from a pdf or I do not know where the url address can be found. Can anyone help me with this?

    Hi, Chartla2012.
    I would suggest you speak to the IT department or service which is hosting your website. Your question is not exactly related to our CreatePDF service.
    You can include links in PDF files. Those links can go to any Internet-hosted content, including Word files. In this way, you could have a user open a PDF file in his browser and click on a link in the PDF which will in turn open a Word file.
    Dave

  • How to embed/show an image file (.jpeg or .jpg or .png) into a Oracle 10g report file (.rdf)

    Hi All,
    Morning , have an urgent requirement and need some guidance regards this.
    we are currently having an existing Oracle 10g reports file (.rdf)  lets say with name : Testing1.rdf .
    The report output is getting generated in a pdf format . it opens up in a pdf format..
    Now we want to embed an image file lets say : (logo.jpeg or logo.gif  ) into the report output..at run time the image from the image file should show up in the report output.
    Could someone please help as to how this could be achieved..and what approach we could follow for this...
    with regards
    Thanks as always !!

    Hi All,
    Morning ...just a follow up question to this original post : embedding the image files at runtime into an Oracle Report..
    We were able to achieve this by entering the folder location where the image files are place on the server in the REPORTS_PATH env variable in the report.sh file.
    Then we update this filename like file1.jpg into a table and from there we fetch this in the Oracle Reports data model directly.
    for The layout field we select the option as Image.
    All this works fine..
    Issue : The resolution of the embedded image in the generated report output is very low ...means the image appears there but it is not very clearly visible ..is there any way we could improve the IMAGE RESOLUTION in the report output....?????
    With regards

  • How to Display PDF File on Oracle Report 10g

    Dears,
    i have a PDF File on the server,
    also i need to display this file into rdf report.(Embed the PDF file into Report)
    Regards

    Dear Inol,
    I have the same problem I want to embded a PDF, word Doc OR Image in report 10g.
    And I put the read from file property YES and File Format OLE2
    and it doesnt work by run_web_report by repport server. while in run report layout it works.
    And my report server on the same Pc "The file path on the same server". or you can say that im working on the server where the path of the file exists and it doesnt work also.
    So what do you think that i have to do to solve this problem.\
    by the way i try to Genarate the report to a file in spacefic path then open it. and it didnt work also.
    any help will be apreciated.
    thanks in advance.
    Ashraf

  • Oracle reports having issue with high volume

    Hi
    We are facing problems when generating the oracle reports with 100 000 records to be written into pdf/text format generated through Oracle report.
    The error we are getting is
    Unexpected Signal : 11 occurred at PC=0xFEDCD524
    Function=[Unknown. Nearest: JVM_GetCPFieldClassNameUTF+0x4B30]
    Library=/orarep/asuser/product/9.0.4/Reports/jdk/jre/lib/sparc/client/libjvm.so
    Dynamic libraries:
    0x10000      /orarep/asuser/product/9.0.4/Reports/bin/rwrun
    0xfec00000      /orarep/asuser/product/9.0.4/Reports/jdk/jre/lib/sparc/libjvm.so
    0xfe000000      /orarep/asuser/product/9.0.4/Reports/lib/librw90.so
    0xff100000      /orarep/asuser/product/9.0.4/Reports/lib/libobx90.so.0
    0xff0d0000      /orarep/asuser/product/9.0.4/Reports/lib/libnn90.so.0
    0xff080000      /orarep/asuser/product/9.0.4/Reports/lib/librws90.so.0
    0xfdd80000      /orarep/asuser/product/9.0.4/Reports/lib/libde90.so.0
    0xfebc0000      /orarep/asuser/product/9.0.4/Reports/lib/libucol90.so.0
    0xfeb90000      /orarep/asuser/product/9.0.4/Reports/lib/libuicc90.so.0
    0xfeb30000      /orarep/asuser/product/9.0.4/Reports/lib/libca90.so.0
    0xfeb10000      /orarep/asuser/product/9.0.4/Reports/lib/libmma90.so.0
    0xfead0000      /orarep/asuser/product/9.0.4/Reports/lib/libmmiw90.so.0
    0xff060000      /orarep/asuser/product/9.0.4/Reports/lib/libmmov90.so.0
    0xfea90000      /orarep/asuser/product/9.0.4/Reports/lib/libmmos90.so.0
    0xfdfc0000      /orarep/asuser/product/9.0.4/Reports/lib/libmmoi90.so.0
    0xfdfa0000      /orarep/asuser/product/9.0.4/Reports/lib/libmmia90.so.0
    0xfdd60000      /orarep/asuser/product/9.0.4/Reports/lib/libmmft90.so.0
    0xfdd20000      /orarep/asuser/product/9.0.4/Reports/lib/libmmcm90.so.0
    0xfdc00000      /orarep/asuser/product/9.0.4/Reports/lib/libvgs90.so.0
    0xfdd00000      /orarep/asuser/product/9.0.4/Reports/lib/libuihx90.so.0
    0xfdb90000      /orarep/asuser/product/9.0.4/Reports/lib/libuc90.so.0
    0xfdb20000      /orarep/asuser/product/9.0.4/Reports/lib/libuipr90.so.0
    0xfd900000      /orarep/asuser/product/9.0.4/Reports/lib/libuimotif90.so.0
    0xfdae0000      /orarep/asuser/product/9.0.4/Reports/lib/libot90.so.0
    0xfd8a0000      /orarep/asuser/product/9.0.4/Reports/lib/librem90.so.0
    0xfd820000      /orarep/asuser/product/9.0.4/Reports/lib/libree90.so.0
    0xfd800000      /orarep/asuser/product/9.0.4/Reports/lib/librec90.so.0
    0xfd7d0000      /orarep/asuser/product/9.0.4/Reports/lib/libuiimg90.so.0
    0xfd790000      /orarep/asuser/product/9.0.4/Reports/lib/libuia90.so.0
    0xfdac0000      /orarep/asuser/product/9.0.4/Reports/lib/libtknqap90.so.0
    0xfd750000      /orarep/asuser/product/9.0.4/Reports/lib/libutt90.so.0
    0xfd720000      /orarep/asuser/product/9.0.4/Reports/lib/librod90.so.0
    0xfd6f0000      /orarep/asuser/product/9.0.4/Reports/lib/libror90.so.0
    0xfd6c0000      /orarep/asuser/product/9.0.4/Reports/lib/libros90.so.0
    0xfd690000      /orarep/asuser/product/9.0.4/Reports/lib/libuat90.so.0
    0xfd670000      /orarep/asuser/product/9.0.4/Reports/lib/libdfc90.so.0
    0xfd650000      /orarep/asuser/product/9.0.4/Reports/lib/libutc90.so.0
    0xfd630000      /orarep/asuser/product/9.0.4/Reports/lib/libutj90.so.0
    0xfd5f0000      /orarep/asuser/product/9.0.4/Reports/lib/libutl90.so.0
    0xfd5d0000      /orarep/asuser/product/9.0.4/Reports/lib/libutsl90.so.0
    0xfcc00000      /orarep/asuser/product/9.0.4/Reports/lib/libclntsh.so.9.0
    0xfd480000      /orarep/asuser/product/9.0.4/Reports/lib/libnnz9.so
    0xfd5b0000      /orarep/asuser/product/9.0.4/Reports/lib/libwtc9.so
    0xfcb00000      /usr/lib/libnsl.so.1
    0xfd460000      /usr/lib/libsocket.so.1
    0xfd440000      /usr/lib/libgen.so.1
    0xff3fa000      /usr/lib/libdl.so.1
    0xfcbe0000      /usr/lib/libsched.so.1
    0xfca00000      /usr/lib/libc.so.1
    0xfcbc0000      /usr/lib/libaio.so.1
    0xfc9b0000      /usr/lib/libm.so.1
    0xfc980000      /usr/lib/libthread.so.1
    0xfc700000      /usr/lib/libXm.so.4
    0xfc690000      /usr/openwin/lib/libXt.so.4
    0xfc580000      /usr/openwin/lib/libX11.so.4
    0xff3a0000      /usr/lib/libw.so.1
    0xfcad0000      /usr/lib/libCrun.so.1
    0xfc400000      /orarep/asuser/product/9.0.4/Reports/lib/libix90.so
    0xfc960000      /orarep/asuser/product/9.0.4/Reports/lib/libixd90.so
    0xfc940000      /usr/lib/librt.so.1
    0xfc670000      /usr/lib/libmp.so.2
    0xfc640000      /usr/openwin/lib/libXext.so.0
    0xfc560000      /usr/openwin/lib/libSM.so.6
    0xfc530000      /usr/openwin/lib/libICE.so.6
    0xfc3e0000      /usr/lib/libmd5.so.1
    0xfdcf0000      /usr/platform/SUNW,Sun-Fire-V440/lib/libc_psr.so.1
    0xfc3a0000      /orarep/asuser/product/9.0.4/Reports/jdk/jre/lib/sparc/native_threads/libhpi.so
    0xfc370000      /orarep/asuser/product/9.0.4/Reports/jdk/jre/lib/sparc/libverify.so
    0xfc330000      /orarep/asuser/product/9.0.4/Reports/jdk/jre/lib/sparc/libjava.so
    0xfc310000      /orarep/asuser/product/9.0.4/Reports/jdk/jre/lib/sparc/libzip.so
    0xe3420000      /orarep/asuser/product/9.0.4/Reports/jdk/jre/lib/sparc/libnet.so
    0xe3550000      /orarep/asuser/product/9.0.4/Reports/jdk/jre/lib/sparc/libioser12.so
    0xe24e0000      /usr/lib/nss_files.so.1
    0xe2610000      /usr/lib/nss_cluster.so.1
    0xe24b0000      /usr/cluster/lib/libclos.so.1
    0xe23d0000      /usr/lib/libsecdb.so.1
    0xe23b0000      /usr/lib/libdoor.so.1
    0xe0b00000      /usr/lib/libCstd.so.1
    0xe2260000      /usr/lib/libcmd.so.1
    0xe2220000      /usr/lib/cpu/sparcv8plus/libCstd_isa.so.1
    0xe2390000      /orarep/asuser/product/9.0.4/Reports/lib/librwu90.so
    0xe1f30000      /orarep/asuser/product/9.0.4/Reports/jdk/jre/lib/sparc/libcmm.so
    0xe15b0000      /orarep/asuser/product/9.0.4/Reports/jdk/jre/lib/sparc/libjpeg.so
    0xe0600000      /orarep/asuser/product/9.0.4/Reports/jdk/jre/lib/sparc/libawt.so
    0xe0580000      /orarep/asuser/product/9.0.4/Reports/jdk/jre/lib/sparc/libmlib_image.so
    0xe20d0000      /orarep/asuser/product/9.0.4/Reports/jdk/jre/lib/sparc/headless/libmawt.so
    Local Time = Thu Feb 2 18:08:09 2006
    Elapsed Time = 222
    # HotSpot Virtual Machine Error : 11
    # Error ID : 4F530E43505002E6 01
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.4.1_03-b02 mixed mode)
    # An error report file has been saved as /tmp/hs_err_pid31802.log.
    # Please refer to the file for further information.
    Could anybody help us to findout the solution.

    how many pages of the file are generated? also was it being written to a file or displayed on the screen? try also to check the log file for any possible solutions.

  • Help desiging a 10g Oracle Report with Matrix and Lexical Parameters - Long

    Hello all:
    I apologize in advance for this long post.... I'm using Oracle Reports 10g (9.0.4.0.33). First -- the question:
    I need to create a Matrix where the rows come from one database table
    (TABLE1) and the columns and cell contents come from a linked query (pulled from TABLE2) that is generated with lexical parameters based on the current TABLE1 row. The lexical parameters contain a WHERE clause for the TABLE2 query. Basically, I have a linked query between TABLE1 and TABLE2. I need to generate a Matrix around it.
    Does anyone know if this is even possible?
    Here's the background on the application, if that is helpful...
    I have an application where I maintain database tables containing names/addresses along with information pertaining to them. As part of the processing, I need to produce reports that contain statistics based on values in the table. For example, each row has a field RTYPE that identifies the Record Type (1-Suppress, 2-Buyer, 3-Inquirer). Each row also has a last purchase date field. The statistics produced for this field would look like this:
              2001     2002     2003     11/03     12/03 01/04     02/04 03/04     04/04     05/04 ...
    Buyer      100 150 250 30 25 15 8 9 22 83
    Inquirer     1000 800 493 ...
    Suppress ... ...
    Totals ... ...
    Each cell contains the count of the number of records that have the corresponding RTYPE and Last Purchase date. The dates across the top are determined by the most recent purchase date in the file. We count the last 12 months, month by month, and then anything older than that is grouped by
    year of purchase. So, the column headings are variable.
    The SQL query for this example looks like this:
    SELECT CASE WHEN rtype = '2' THEN 'Buyers'
    WHEN rtype = '3' THEN 'Inquirers'
    WHEN rtype = '1' THEN 'Suppress'
    END HLDESC,
    CASE WHEN MONTHS_BETWEEN(trunc(:MAXHLDATE,'MONTH'),
    TRUNC(T.HOTLINE,'MONTH')) < 12
    THEN TO_CHAR(T.HOTLINE,'YYYYMM')
    ELSE TO_CHAR(T.HOTLINE,'YYYY') || '00'
    END YYMM_8,
    CASE WHEN MONTHS_BETWEEN(trunc(:MAXHLDATE,'MONTH'),
    TRUNC(T.HOTLINE,'MONTH')) < 12
    THEN TO_CHAR(T.HOTLINE,'MM/YY')
    ELSE TO_CHAR(T.HOTLINE, 'YYYY')
    END FmtDate_8,
    COUNT(*) HLCOUNT
    FROM &TABLENAME T
    GROUP BY CASE WHEN rtype = '2' THEN 'Buyers'
    WHEN rtype = '3' THEN 'Inquirers'
    WHEN rtype = '1' THEN 'Suppress'
    END,
    CASE WHEN MONTHS_BETWEEN(trunc(:MAXHLDATE,'MONTH'),
    TRUNC(T.HOTLINE,'MONTH')) < 12
    THEN TO_CHAR(T.HOTLINE,'YYYYMM')
    ELSE TO_CHAR(T.HOTLINE,'YYYY') || '00'
    END,
    CASE WHEN MONTHS_BETWEEN(trunc(:MAXHLDATE,'MONTH'),
    TRUNC(T.HOTLINE,'MONTH')) < 12
    THEN TO_CHAR(T.HOTLINE,'MM/YY')
    ELSE TO_CHAR(T.HOTLINE, 'YYYY')
    END
    ORDER BY CASE WHEN MONTHS_BETWEEN(trunc(:MAXHLDATE,'MONTH'),
    TRUNC(T.HOTLINE,'MONTH')) < 12
    THEN TO_CHAR(T.HOTLINE,'YYYYMM')
    ELSE TO_CHAR(T.HOTLINE,'YYYY') || '00'
    END
    There might be a better way to write this, but that isn't the issue at the moment.
    I have many different tables, each with different fields. I need to produce counts on each of those fields. Some of those fields have a limited number of values where I need to count the occurrences and attach a description (like the RTYPE counts above). Others, like Last Purchase Amount, require counts within ranges (between 0 and 9.99, 10 and 19.99, etc.). Still others are "multiple choice"-style fields (such as products purchased), where we have multiple single-char flags that are not null when the corresponding products are purchased. In this case, we need to produce statistics that look like this:
              2001     2002     2003     11/03     12/03 01/04     02/04 03/04     04/04     05/04 ...
    Product 1 .........
    Product 2 .........
    The worst of the bunch is a field where I need to count the occurrence of each value within it (hundreds of values) without entering descriptions, so I don't know how many rows will appear ahead of time. This is used for "source codes" that identify where the name/address came from. They look similar to the RTYPE above, but the leftmost column contains each value from the field rather than a description. There are so many possible values and they change so often that it isn't feasible to enter a description for each one.
    Right now, I manually create an Oracle Report for each table when I design/load it. This is becoming difficult to manage, since I have over 150 of them now. Each of these reports can have any number of matrices to display (the largest right now has about 25).
    The new table structure to generate these reports consists of two tables: A COUNTHDR table and a COUNTROW table. The COUNTHDR table represents a single Matrix within the report. It contains info such as a heading for the Matrix and whether column totals should be calculated or not. The COUNTROW table contains a description for each row and an SQL Fragment that contains an appropriate WHERE clause to match the description. In the event of a "source code" style count, COUNTHDR has the name of the field to count. COUNTROWs won't exist, so I'll be handling those counts differently. But, ignoring that issue for now, the report structure looks like this:
    + Q1 +
    |
    + COUNTHDR +
    |
    + COUNTROW +
    | linked query
    + Q2 +
    |
    + COUNTDTL +
    Q2 is the query with lexical parameters for the table and "where clause" that identifies the actual statistic I need counted. I need fields from COUNTROW and COUNTDTL to form a Matrix.
    Can this be done? How?
    Of course, if anyone out there has a better idea on how to achieve my goal of not writing a report per table, please let me know!! :-)
    TIA
    Eric Raskin
    PS. This structure does not exactly duplicate my original query, since multiple Matrix rows are created by the single SQL query given in the example. Instead, I'll end up executing an SQL query for each row, which is less than desirable. The design will need some tweaking...
    PPS. I have tried handling this problem by pre-counting the target table and storing the results in a COUNTCOL table, containing the details of the matrix. This actually does work, but the performance is terrible. I have one "source code"-style count that generated over 20,000 detail cells, including all the "0" cells needed to fill out the matrix. If you don't generate the "0" cells, you get holes in the matrix presentation and/or error messages (which I can explain if you wish). I never did get Oracle Reports to print this one -- I gave up after an hour of runtime on a P4 3GHz machine connected via Gigabit Ethernet to the server. Hence the attempt to push the SQL Queries back into the Oracle Report itself.
    Eric H. Raskin Voice: 914-765-0500
    Professional Advertising Systems Inc. Fax: 914-765-0503
    200 Business Park Dr Suite 107 [email protected]
    Armonk, NY 10504

    Hi there
    here's example of my code
    Html header of the page :
    <script language="JavaScript" type="text/javascript">
    function callMyPopup (formItem1,formItem2) {
    var formVal1 = document.getElementById(formItem1).value;
    var formVal2 = document.getElementById(formItem2).value;
    var url;
    url = 'f?p=&APP_ID.:8:&APP_SESSION.::::P8_PROJECT,P8_PDRL_NO:' + formVal1 + ',' + formVal2;
    w = open(url,"winLov","Scrollbars=1,resizable=1,width=800,height=600");
    if (w.opener == null)
    w.opener = self;
    w.focus();
    </script>
    troubleshooting
    1.Test each parameter separate first - each work ?
    2.Use code above, rerig it, create multiple parameter
    3.try again...
    hope this helps...
    check your orginial source (page where items are) - what data

  • Import text / word documents into a Crystal Report

    Good morning,
    I need to import a Text file/Word Doc. into a crystal report, these files are based on a field, i mean
    The data in the field is "alr-finclk", then the file to import is alr-finclk. if the data is "alr-pro" the file is alr-pro and so on..
    Have we any way of getting this report ?
    Thks for your help
    Jose Marin

    I have found the following formula which is running when the file isn't a big one...,
    StringVar sFile;
    NumberVar i;
    i := 1;
    while FileGetText( "c:\file.txt", i) <>"" Do
    sFile := sFile + FileGetText( "c:\file.txt", i);
    i := i + 1
    sFile;
    but when the file is big i get
    A STRING CAN BE AT MOST 65534 CHARACTERS LONG
    Any way of solving this?
    Thks
    Jose Marin

  • Oracle Report 6i with XML

    Can I create an Oracle report definition programmatically using XML and to build up a report definition on the fly based on user input? If I can, could anyone tell me where I can find more information about HOW?
    null

    Yes. Please read chapter 7 of the Publishing Reports manual (shipped with 6i in PDF or HTML)
    Regards
    The Oracle Reports Team http://technet.oracle.com

  • AutoConfig rolling back the changes for Oracle Report Services

    Hi Gurus,
    I am putting some properties in $INST_TOP/ora/10.1.2/reports/conf/rwbuilder.conf in R12.0.6 EBS instance to fix a report related issue. Whenever I ran the auto config, my changes are going away. Can you please help how can I preserve my changes please.
    Thanks
    Asif

    user12142193 wrote:
    Hi Gurus,
    I am putting some properties in $INST_TOP/ora/10.1.2/reports/conf/rwbuilder.conf in R12.0.6 EBS instance to fix a report related issue. Whenever I ran the auto config, my changes are going away. Can you please help how can I preserve my changes please.
    Thanks
    AsifPlease apply the patches mentioned in these docs.
    Intermittent Oracle Reports REP-0069: REP-57054: Error [ID 1237834.1]
    Patch 11669923 Post Patch Instructions Would Get Overridden By Autoconfig [ID 1322704.1]
    Reports Cache Directory in Oracle E-Business R12 is Growing Rapidly [ID 859255.1]
    EBS R12 Oracle Reports Cache Directory Not Being Cleaned Up [ID 1062825.1]
    Thanks,
    Hussein

  • ORACLE Reports Training - Online / Free tutorials

    I am looking for Oralce report ONline Training - please advice if you know any good trainer

    Here few link...
    1. http://docs.oracle.com/html/B14364_01/title.htm
    2. http://www.scribd.com/doc/3960412/Basic2-Oracle-Reports-10g-Tutorials
    Hope this Helps....

  • Saving a PDF or DOC file into Oracle 9i using Developer Forms 10g

    Hi guys,
    I want to save a pdf or doc file into oracle 9i. I am using Developer 10 g. Please help me;
    1. What datatype field should be in database table to store such file.
    2. Which code should I use in Forms 10g to display open file dialog, get the name and save that into database table.
    Thanks in advance

    WEBUTIL is a library used with forms to interact with the client. With Forms10G the library comes shipped with the developer suite, for forms 9i i'm not sure, check the forms-page at otn if there is any download available. For documentation about how to do a file-upload, simply search the forum, there are lots of examples.

  • Need help: trouble printing a doc into a pdf

    Hello
    I can not take a word docx or any other format and convert it into a pdf format.  When I click on printer, then pdf, hit ok - it gives me :
    invalid "adobe pdf" printer properties: do not change spooler settings. Please selete "print directly to the printer" option (from adobe pdf printer properties "advanced" tab).
    then it says windows cannot print due to a problem with the current printer setup
    I have tried setting the 'print directly to printer' and it does nothing but along pause... no print
    It used to work before now it stopped working and I don't know what happened
    I am not sure where the problem is, I do not have a lot of knowledge when it comes to computers.
    I do have an adobe reader 9.3 and an adobe acrobate 4.0 
    I am also using windows vista
    Please help me!  Thanks

    There are forums I read that say there is a convert on the word dox program.  Problem is that I am not always wanting to convert a word doc into a pdf.  There are other programs I want to convert as well like .indd for example, which does not have a pdf coverter option in its program
    I tried a live chat ... and they said they could not help me because they can only help version 10

  • How to convert word doc into pdf - which product of adobe i need to use- what upgrades - am a newbie

    How to convert word doc into pdf - which product of adobe i need to use- what upgrades - am a newbie -  simple answers please - Thanks in advance.

    @Pipeline2007 - which version of Microsoft Office have you got? Older versions of Acrobat aren't compatible with the latest versions of Office, see this link for info:
    http://helpx.adobe.com/acrobat/kb/compatible-web-browsers-pdfmaker-applications.html

  • How can I change a odt doc. into a pdf?

    How can I change a odt doc into a pdf?

    Hi Nickers
    There are two ways to do this ...
    Either Use Adobe CreatePDF Service and convert the Doc to PDF Online ...
    https://www.acrobat.com/createpdf/en/home.html
    Or
    Use Adobe Acrobat to Convert the files into PDF. You can download the Free Trial and Use it for 30 days ...
    Please Refer :
    To Download Trial : http://www.adobe.com/cfusion/tdrc/index.cfm?product=acrobat_pro&loc=us&promoid=KHXXV
    Steps to Convert : http://www.adobe.com/au/products/acrobat/word-to-pdf-converter.html

Maybe you are looking for