Pls help for Exception "Too Few Parameters : Expected 35"

Hi,
I am expericing with the exception
"Too Few Parameters : Expected 35".
What's wrong with it? The following is my code.
try {                                                                                                                                                                                                                
String DRIVER = ("sun.jdbc.odbc.JdbcOdbcDriver");               
String URL = "jdbc:odbc:Industrial_One_DSN";
String sql = "UPDATE BusinessRegistration " +
"SET [Date] = ?, ISIC = ?, BizName = ?, BizAddress = ?, " +
"OwnerName = ?, OwnerNRC = ?, Investment = ?, EstablishedYear = ?, " +
"L_Male = ?, L_Female = ?, F_Male = ?, F_Female = ?, " +
"OwnershipType = ?, Remarks = ?, IndustialZoneName = ?, Unit = ?, " +
"Fuel = ?, FactoryType = ?, FactoryName = ?, Township = ? " +
"MainProductName = ?, MainProductCountType = ?, " +
"MainProductQuantity = ?, MainProductValue = ?, RMName = ?, " +
"RMCountType = ?, RMQuantity = ?, RMValue = ?, EnergyName = ?, " +
"MachinePower = ?, AmountGallon = ?, StateDiv = ?, BizSize = ?  " +
"WHERE RegistrationID = ?";
Class.forName(DRIVER);
Connection con = DriverManager.getConnection(URL);
PreparedStatement pstmt = con.prepareStatement(sql);
int ilmale = Integer.parseInt(lmale);
int ilfemale = Integer.parseInt(lfemale);
int ifmale = Integer.parseInt(fmale);
int iffemale = Integer.parseInt(ffemale);
int impq = Integer.parseInt(mpq);
int impv = Integer.parseInt(mpv);
int irmq = Integer.parseInt(rmq);
int irmv = Integer.parseInt(rmv);
int iamountgallon = Integer.parseInt(amountgallon);
pstmt.setString(1, date);
pstmt.setString(2, isic);
pstmt.setString(3, bizname);
pstmt.setString(4, bizaddress);
pstmt.setString(5, ownername);
pstmt.setString(6, ownernrc);
pstmt.setString(7, investment);
pstmt.setString(8, eyear);
pstmt.setInt(9, ilmale);
pstmt.setInt(10, ilfemale);
pstmt.setInt(11, ifmale);
pstmt.setInt(12, iffemale);
pstmt.setString(13, ownershiptype);
pstmt.setString(14, remark);
pstmt.setString(15, izn);
pstmt.setString(16, unit);
pstmt.setString(17, fuel);
pstmt.setString(18, ft);
pstmt.setString(19, fname);
pstmt.setString(20, township);
pstmt.setString(21, mpn);
pstmt.setString(22, mpct);
pstmt.setInt(23, impq);               
pstmt.setInt(24, impv);
pstmt.setString(25, rmname);
pstmt.setString(26, rmct);
pstmt.setInt(27, irmq);
pstmt.setInt(28, irmv);
pstmt.setString(29, ename);
pstmt.setString(30, mpower);
pstmt.setInt(31, iamountgallon);
pstmt.setString(32, statediv);
pstmt.setString(33, bizsize);
pstmt.setInt(34, Integer.parseInt(rid));
pstmt.executeUpdate();
}I have got 35 fields in my db. But I wanna edit 34 fields only. I have no primary key in my table. Is't alright?
pls help me.
With thanks,
WTDAHL

I presume you are using SQL server, hence the [Date] in your SQL?
I counted 34 question marks in your SQL statement, And 34 parameters supplied.
Looks ok to me.
You say you have no primary key? What is RegistrationId then?
My suggestion for debugging: start smaller.
Try updating it with only 5 fields, then 10 then 15 and build it up like that.
Trying to debug 35 fields is a nightmare - you have to break it down to solve it.
Good luck,
evnafets

Similar Messages

  • Java.sql.SQLException:[Microsoft][ODBC Driver]Too few parameters Expected 1

    Hi friends,
    Greetings.
    i am trying to work with my inventory management system. My code is as follows and i getan error as follows:
    java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver] Too few
    parameters. Expected 1.
    CODING:
    import java.io.*;
    import java.sql.*;
    import java.util.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class iteminsert extends HttpServlet
    public void doGet(HttpServletRequest req,HttpServletResponse res)throws ServletException,IOException
    Connection con;
    Statement r,s;
    ResultSet rs;
    int flag1=0;//flag1 is for seeing if itemcode already exists
    String str1,str2;
    String s0=req.getParameter("itemcode");
    String s1=req.getParameter("itemname");
    int s2=Integer.parseInt(req.getParameter("unit"));
    int s3=Integer.parseInt(req.getParameter("minlevel"));
    int s4=Integer.parseInt(req.getParameter("rate"));
    int a=1;
    int b=0;
    res.setContentType("text/HTML");
    PrintWriter out=res.getWriter();
    try{
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    con=DriverManager.getConnection("jdbc:odbc:stocks");
    r=con.createStatement();
    s=con.createStatement();
    rs=r.executeQuery("select * from stock where itemcode='"+s0+"'");
    while(rs.next())
    flag1++;
    if(flag1!=0)
    out.println("<body><h1 align=\"center\"><font color=\"green\">INVENTORY MANAGEMENT SYSTEM</font></h1><p>ITEM CODE ALREADY EXISTS!!!!</p><p>To insert an item with a different code, <a href=\"http://localhost:8000/stock/insert.html\">Click here</a> .</p><p>To go back to the main menu <a href=\"http://localhost:8000/stock/index.html\">click here</a></p></body>");
    else
    str1="insert into stock values('"+s0+"','"+s1+"',"+s2+","+s3+","+s4+","+a+")";
    str2="insert into stock values('"+s0+"','"+s1+"',"+s2+","+s3+","+s4+","+b+")";
    if(s3<=s4)
    s.executeUpdate(str2);
    out.println("<body><h1 align=\"center\"><font color=\"green\">INVENTORY MANAGEMENT SYSTEM</font></h1><p>ITEM HAS BEEN INSERTED. HOWEVER REORDER LEVEL IS <b><u>MORE THAN</u></b> QUANTITY AT HAND</p><p>To buy more <a href=\"http://localhost:8000/stock/purchase.html\">Click here</a></p><p>To go back to the main menu <a href=\"http://localhost:8000/stock/index.html\">click here</a></p>");
    else
    s.executeUpdate(str1);
    out.println("<body><h1 align=\"center\"><font color=\"green\">INVENTORY MANAGEMENT SYSTEM</font></h1><p>ITEM HAS BEEN INSERTED.</p><p>To buy more <a href=\"http://localhost:8000/stock/purchase.html\">Click here</a></p><p>To go back to the main menu <a href=\"http://localhost:8000/stock/index.html\">click here</a></p></body>");
    con.close();
    catch(Exception e)
    out.println("error"+ e);
    Please help. I have to use only Create statement and not PreparedStatement :(
    Thank You.
    Regards.
    Aravind

    your code is wrong on so many levels.
    you should not be embedding HTML in Java objects this way. wrong, wrong, wrong.
    JSPs are what you should be using.
    look at this line:
    rs=r.executeQuery("select * from stock where itemcode='"s0"'");the SQL query is supposed to be a bloody string. yours won't even compile.
    do it this way:
    PreparedStatement ps = connection.prepareStatement("select * from stock where itemcode = ?");
    ps.setString(1, itemCode);
    rs = ps.executeQuery();you don't close resources. you don't use code tags.
    too much wrong to fix here.
    %

  • Sql exception :too few paprameters to update

    I am getting an sql exception in this query below.
    It says too few parameters :expected 1
    String query = "UPDATE INR SET " + month+ " = " + mnt+ " where (IT = '" + initial + "') AND (new = '" + later+ "' ) AND (number = '" + num + "' ) AND (code = '" + Id + "')";
    I am just passing 1 telling it to update month column with mnt .
    Thanks,

    Here is my code with JDBC connecting to an Access Table
    String data ="jdbc:odbc:MonthUpdateTable";
    try {
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");     
         Connection conn = DriverManager.getConnection(data, "", "");
         Statement st = conn.createStatement();
         String query = "UPDATE INR SET " + month+ " = " + mnt+ " where (IT = '" + initial + "') AND (new1 = '" + later+ "' ) AND (number = '" + num + "' ) AND (code = '" + Id + "')";
         System.out.println(query);
         st.executeUpdate(query);
         st.close();
              conn.close();
    catch(Exception e) {System.out.println("UpdateError: " + e.toString()
               + e.getMessage());}
    Thanks,

  • Too few parameters. Expected 1.

    Im getting "Too few parameters. Expected 1." when trying to
    update a form, and I need a second pair of eyes if anyone can help?

    I found where the problem was located at, its the time and
    date column. I guess you could say its a ColdFusion bug. according
    to Adobe:
    quote:
    This is a known issue and Macromedia's Engineers are aware of
    it. Currently, the only known work around available is to avoid
    inserting and/or updating columns of "Date/Time" data types in
    Access with empty strings, ("") or with any other value that does
    not correspond to the range of values specified for the data type.
    when I took out "distribution_date='#FORM.dateOfdist#' which
    had a data type of Date/Time in Access it worked.
    more information about this topic
    can be found here
    Thanks

  • Too few parameters error

    hi,
    i keep getting the following error:
    SQLException in PAUserBean - getWorkNumber java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver] Too few parameters. Expected 1.here is code:
    public String getWorkNumber(String Id) {
         String workNumber = "";
         try {
              Connection conn = DriverManager.getConnection("jdbc:odbc:PA");
              Statement s = conn.createStatement();
              String sql = "SELECT WORKER.WORK_PHONE_NBR FROM WORKER WHERE WORKER.USER_ID=" + Id + ";";
              ResultSet rs = s.executeQuery(sql);
              if(rs.next()) {
                   workNumber = formatPhoneNumber(rs.getString("WORK_PHONE_NBR"));     
         }catch(SQLException e) {
              System.out.println("SQLException in PAUserBean - getWorkNumber " + e.toString());
         return workNumber;
    }here is the database map:
    WORKER TABLE:
    USER_ID - Number (primary key)
    WORK_PHONE_NMR - Text
    I'm using an MS Access database, when i run the following query in MS Access it returns the number:
    SELECT work_phone_nbr
    FROM Worker
    where id=102;
    odd thing is the jsp page does display the number, meaning the query is ok, but i see tomcat's log with that error, any ideas what it means? what parameter am i missing?
    Thank you.

    Enclose the parameter with single quotes. Also, you don't need the semi-colon.
    String sql = "SELECT WORKER.WORK_PHONE_NBR FROM WORKER WHERE WORKER.USER_ID='" + Id + "'";

  • Too few parameters

    Hi friends,
    please solve this below problem. Exception is "-------Too few parameters"..
    import java.io.*;
    import Java.*;
    import javax.servlet.http.*;
    import java.sql.*;
    import javax.sql.*;
    public class EmpData extends HttpServlet {
    public void service (HttpServletRequest request,HttpServletResponse response) throws ServletException,IOException{
    try {
    PrintWriter out;
    out=response.getWriter();
    response.setContentType("text/plain");
    String a =request.getParameter("id");
    String b =request.getParameter("ename");
    String c =request.getParameter("esal");
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection con = DriverManager.getConnection("jdbc:odbc:malloc");
    Statement stmt = con.createStatement();
    out.println(a);
    out.println(b);
    out.println(c);
    stmt.executeUpdate("insert into emp values (" + " ' " + a + " ' " + " , " + " ' " + b + " ' " + ", " + " ' " + c +" ' "+ ")" );
    }catch(Exception e) {
    System.out.println(e);
    }

    What's the actual value of that string? Don't just post a dog's breakfast of quotes that you put in your code to compute the string, post the string.
    And if you had posted this in the JDBC forum (being the question about your database queries that it is) you would have been told to use a PreparedStatement to avoid that awful mess of quotes. That would be a good idea in any case.
    When you look at the string you're probably going to find you are missing quotes around something that is supposed to be a string constant, and Access would try to interpret that as a table name or a column name. If there is no such table or column you get this sort of message.

  • Pls help - Film is too red on DVD by Encore CS5.1

    Hello,
    Please i need some help asap. I dont know what i am doing wrong, but i just used Encore CS5.1 to burn my new film on DVD and it the color has nothing to do with the original.
    My DVD player is showing me a very red film. I am using the same film on youtube and it look fine, exactely how it should be.
    I am very new to editing and this is the second time Encore is giving the red-ish look to my film.
    Please help asap.
    Also, could you please point me to a good and simple tutorial about using Encore for DVD.
    Many thanks.

    First, provide the DETAILS about what you are doing... what are your source files and what are your Encore settings, for a start
    Post screen shots of your Encore settings so people may see what you are doing
    CS5 User Guides - online and PDF (right click PDF link to save PDF to your hard drive)
    http://blogs.adobe.com/premiereprotraining/2010/08/help-documents-for-creative-suite-5-pdf -and-html.html
    Here Tutorials
    http://forums.adobe.com/thread/913334
    http://forums.adobe.com/thread/845731
    -and http://forums.adobe.com/message/3234794
    Encore http://tv.adobe.com/show/learn-encore-cs4/
    A "crash course" http://forums.adobe.com/thread/761834
    A Video Primer for Premiere http://forums.adobe.com/thread/498251
    Premiere Tutorials http://forums.adobe.com/thread/424009
    CS5 Premiere Pro Tutorials http://forums.adobe.com/message/2738611
    And http://blogs.adobe.com/premiereprotraining/2010/06/video_tutorials_didacticiels_t.html
    And http://blogs.adobe.com/premiereprotraining/2010/06/how_to_search_for_premiere_pro.html
    CS5 Tutorials http://bellunevideo.com/tutlist.php
    PPro Wiki http://premierepro.wikia.com/wiki/Adobe_Premiere_Pro_Wiki
    Tutorial http://www.tutorialized.com/tutorials/Premiere/1
    Tutorial http://www.dvxuser.com/V6/forumdisplay.php?f=21
    Tutorial HD to SD w/CS4 http://bellunevideo.com/tutorials/CS4_HD2SD/CS4_HD2SD.html
    Premiere Pro Wiki http://premierepro.wikia.com/wiki/Main_Page
    Exporting to DVD http://help.adobe.com/en_US/premierepro/cs/using/WS3E252E59-6BE5-4668-A12E-4ED0348C3FDBa.h tml
    And http://help.adobe.com/en_US/premierepro/cs/using/WSCDE15B03-1236-483f-BBD4-263E77B445B9.ht ml
    Color correction http://forums.adobe.com/thread/892861
    Photo Scaling for Video http://forums.adobe.com/thread/450798
    -Too Large = Crash http://forums.adobe.com/thread/879967
    After Effects Tutorials http://www.videocopilot.net/
    Authoring http://www.videocopilot.net/tutorials/dvd_authoring/
    Encore Tutorial http://www.precomposed.com/blog/2009/05/encore-tutorial/
    And more Encore http://library.creativecow.net/articles/devis_andrew/
    Surround Sound http://forums.adobe.com/thread/517372

  • Pls help: Io exception: Connection refused

    My application was running fine and one days i got this error
    Io exception: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=168821248)(ERR=12514)(ERROR_STACK=(ERROR=(CODE=12514)(EMFI=4))))
    I am using a remote oracle server in my application .....the service provider is saying that every thing is ok and he didn't know wht is wrong in my schema object.....
    the method of connetion is
    DriverManager.registerDriver (new oracle.jdbc.driver.OracleDriver());
                             connect = DriverManager.getConnection("jdbc:oracle:thin:@//host_ip/orcl.oracle.com%","user","password");
    // @machineName:port:SID, userid, password
    I am struck now and i have no idea wht to do now and wht should i ask to my service provider to do.....
    pls help

    The error 12514 means 'TNS:listener could not resolve SERVICE_NAME given in connect descriptor'. In your connect string what is the service_name?
    The format for a connect string is :
    ("jdbc:oracle:thin:@myhost:<PORT>:<SERVICE_NAME>","<USERNAME>", "<PASSWORD>");

  • Pls help for the installation

    Hi,
    I am having problem in installing SAP netweaver 2004 on my windows xp.
    when i try to run the setup,the following error occur to prevent me from futher installing :
    An error occur during the installation of components SAP Netweaver sneak preview 04 support release 1> Migration - target system installation .
    The following is the log file:
    Error 5 (Zugriff verweigert
    ) in execution of a 'RegOpenKeyEx' function, line (67), with parameter (SYSTEM\CurrentControlSet\Services\McAfeeFramework).
    The subkey 'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\McAfeeFramework' does not exist on the 'localhost' host.
    The step setDefaults with step key J2EE_SystemCopy_OneHost|ind|ind|ind|WebAS|640|0|J2EE_SystemCopy|ind|ind|ind|ind|ind|0|J2EE_EngineEnterpriseDialogs|ind|ind|ind|WebAS|630|0|setDefaults was executed with status ERROR.
    Could anyone pls give me a help.Thanx

    Hi,
    You can't install in xp; check Note 722273; this note talks about the configuration. very helpfull but you need to meet the minimum SAP requirement. Read any instllation guide for hardware reqirement.
    Thanks,
    Plz points for helpfull tips

  • Pls Help Out: Exception Details: CrystalDecisions.CrystalReports.Engine.LogOnException: Logon failed.

    Post Author: olabisi
    CA Forum: .NET
    Hello All,
    i am working on a project and try to come up with a report using crystal report that is embedded with vs 2003.net and the following error was generated.
    this is the error in detail:
    Server Error in '/BISI' Application.
    Logon failed.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: CrystalDecisions.CrystalReports.Engine.LogOnException: Logon failed.Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. Stack Trace:
    &#91;LogOnException: Logon failed.&#93;
        . I(String   , EngineExceptionErrorID   )
        . D(Int16   , Int32   )
        . C(Int16   )
       CrystalDecisions.CrystalReports.Engine.FormatEngine.GetLastPageNumber(ReportPageRequestContext reqContext)
       CrystalDecisions.ReportSource.LocalReportSourceBase.GetLastPageNumber(ReportPageRequestContext reqContext)
       CrystalDecisions.Web.ReportAgent.get_LastPageNumber()
       CrystalDecisions.Web.ReportAgent.u(Boolean  n)
       CrystalDecisions.Web.CrystalReportViewer.OnPreRender(EventArgs e)
       System.Web.UI.Control.PreRenderRecursiveInternal()
       System.Web.UI.Control.PreRenderRecursiveInternal()
       System.Web.UI.Control.PreRenderRecursiveInternal()
       System.Web.UI.Page.ProcessRequestMain()
    Version Information: Microsoft .NET Framework Version:1.1.4322.573; ASP.NET Version:1.1.4322.573
    Note: this report has a main report that have three subreport in it. It was working fine until i added the third sub report to the main form.I will be glad if a solution could come up fast. This is  my email : [email protected] or [email protected]
    Jacobs

    Post Author: mewdied
    CA Forum: .NET
    You need to make sure that you are passing the database logon code to the third sub-report correctly.  If you are currently only passing database logon to the main report, it may be that the other two subreports are using the same connection as the main, but the third one is using something different.

  • Pls help for i cloud pass

    pls i need help im geeting tired

    Hello khaled alghem,
    The following article provides steps that will guide you through the process of resetting your iCloud password.
    iCloud: Change your iCloud password
    http://support.apple.com/kb/PH2617
    Cheers,
    Allen

  • WiFi help for me too please???

    My Wifi appears to be connecting well - strong signal showing etc. IP Address and Subnet Mask is completing itself. There is a 'tick' next to the Wifi network I want (my home wireless router).
    When I go to Safari (or iTunes store for that matter) it tells me " Safari can't open the page because it can't find the server" or "Cannot connect to iTunes store". Any ideas? I just spent an hour on phone with Apple help and been disconnected twice.
    Thanks all!

    I have the same problem, I have a Dlink DI524 router.
    I can connect to the ipod touch when wep is disable. However, I cannot connect while wep is on.
    I am certain that I have typed in the 10 digit wep key correctly and the router's firmware is also up to date.
    I think the problem is that the ipod touch failed to read the router's ip address when wep is enabled.
    The connection values of my ipod touch to the router when I have wep enable was:
    IP Address 169.254.42.162
    Subnet Mask 255.255.0.0
    But my dlink's ip address should start from 192.168.0.1 to 192.168.0.199
    and the subnet mask should be 255.255.255.0
    Any suggestion welcome.
    Thank you

  • Pls Help for Sql Loader utility

    Dear friends,
    I want to execute Sql Loader utility by procedure.
    Can anyone give me any idea about it.
    Thanks in adavance.

    Why?
    Why build a kludgy and unscalable application?
    Sybrand Bakker
    Senior Oracle DBA

  • Result set two few parameters exception!!?

    when i use the following code:
           res = stat1.executeQuery("SELECT * FROM Word where word="+current );
    where res is a result set
    stat1 is a statement
    current is a string
    the following exception appears after running:
    java.sql.sqlexception[microsoft][ODBC microsoft access Driver] Two few parameters.Expected 1.
    Any one can help me with this problem plz?

    is the (?) from the syntax?in:
    PreparedStatement ps =
    connection.prepareStatement("SELECT * FROM Word WHERE
    word=?");
    ps.setString(1, someWord);
    rs = ps.executeQuery(); [url http://java.sun.com/developer/onlineTraining/Database/JDBC20Intro/JDBC20.html#JDBC207]http://java.sun.com/developer/onlineTraining/Database/JDBC20Intro/JDBC20.html#JDBC207

  • Java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver] Too few pa

    I have 2 tables in my database as:
    db3
    Code | number primary key
    name | text
    priceperqty | number
    avail1 | number
    tempupdate
    transactedvalue | number
    Code | number foreign key
    I run following code:
    try
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection con = DriverManager.getConnection(
    "jdbc:odbc:inven");
    Statement stmt = con.createStatement(
    ResultSet.TYPE_SCROLL_SENSITIVE,
    ResultSet.CONCUR_UPDATABLE);
    stmt.setFetchSize(35);
    ResultSet rs1=stmt.executeQuery("Select avail1,transactedvalue from db3,tempupdate where db3.code=tempupdate.code");
    while(rs1.next())
    //subtracting available value - transacted value
    int a =rs1.getInt(1);
    int b =rs1.getInt(2);
    int c=b-a;
    int d=-(c);
    //storing results into an array
    for(int i=0;i<4;i++)
    y=d;
    i++;
    //printing on console
    System.out.println(""+a);
    System.out.println(""+b);
    System.out.println(""+d);
    //updating available values in table db3
    for(int i=0;i<4;i++)
    stmt.execute("update db3 set avail1="+y[i]+" where db3.Code=tempupdate.Code="+(i+1)+"");
    catch (Exception ex)
    ex.printStackTrace();
    Why does avail1 attribute does not show any updations and throws exception of too few parameters?can anyone help me?
    Edited by: Peter1 on Jul 2, 2008 4:39 AM

    zhaoyh wrote:
    tmt.execute("update db3 set avail1="y" where db3.Code=tempupdate.Code="+(i+1)+"");
    Changed it to PreparedStatement, and use ? for y. It should be
    stmt.execute("update db3 set avail1=? where Code="+(i+1)+"");
    If you're going to use PreparedStatement, it ought to be:
    PreparedStatement ps = connection.prepareStatement("update db3 set avail1=? where Code=?");
    ps.setInt(1, y);
    ps.setInt(2, i+1);
    ps.executeUpdate();

Maybe you are looking for

  • Add a new attribute.

    I would like to add a new attribute to the membership.xml, what can i do to create the new attribute in the directory server and then add it to the form of autoregister?

  • Location of Indian Tax IDs in Customer Master Record.

    We are enabling India as company code/sales organization. One of the requirements put upon us is to carry 2 tax id numbers on the customer master and at the transaction level. We are being requested to carry a CST (Central Sales Tax) id and a VAT tax

  • Equium A100 - Unable to boot from bootable disc

    Equium A100-549 My partners son has a 2 year old Toshiba laptop that has become slow over time. I had made a backup of the system with office etc installed using Acronis. Anyway, decided to clear it off by running Acronis and the image saved. The pro

  • One row totals

    Hi, on Discoverer Viewer (Release 4.1.44) I created totals, but when there is only one row composing the total, is not showing the total on the report. On Discoverer Desktop is showing all the totals correctly, independently the amount of rows that c

  • Cant Open PDF document-its always ask me to save it first

    I can not open a PDF document in adobe reader, it is always asking me to save it first