Calling jsp with parameter - problem

Hi,
i am calling another jsp in onclick event. But the parameter does seems to be passed.
when i write like below seperately,
<script type="text/javascript">
               window.location.href='emp2.jsp?empcode=<%=request.getParameter("empcode")%>&descr=<%=request.getParameter("empname")%>'
</script>
I can see emp2.jsp with correct parameters.
But when i use the above logic in onclick event, the empcode is missing.
See the onclick event.
<INPUT TYPE="submit" value="Modify" ONCLICK="window.location.href='emp2.jsp?empcode=<%=request.getParameter("empcode")%>&descr=<%=request.getParameter("empname")%>'">
Pls help where am i doing wrong.

Looks like it should work, provided empcode and empname are both in the request parameters when you load this page.
If you enter in the empcode and empname on the same screen as the submit button, this won't work.
I would suggest you just use the default action of a submit button, and submit a form.
This should be exactly equivalent to what you have written in your onclick event.
<form action="emp2.jsp>
<input type="hidden" name="empcode value="<%= request.getParameter("empcode") %>"
<input type="hidden" name="descr value="<%= request.getParameter("empname") %>"
<input type="submit" value="Modify">
</form>

Similar Messages

  • System call failed. Error 2 (The system cannot find the file specified. ) in execution of system call 'CreateProcessAsUser' with parameter ( , NULL,  Program Files/sapinst_instdir/BS2011/ERP606/AS-ABAP/SYB/HA/DB, &StartupInfo, &ProcessInfo),

    Dear All,
    I am getting a below error while doing ehp6 installation on sybase (high availbility )
    can any one help me on this..?
    An error occurred while processing option SAP Business Suite 7i 2011 > Enhancement Package 6 for SAP ERP 6.0 > SAP Application Server ABAP > SAP ASE > High-Availability System > Database Instance( Last error reported by the step: System call failed. Error 2 (The system cannot find the file specified. ) in execution of system call 'CreateProcessAsUser' with parameter ( , NULL,  Program Files/sapinst_instdir/BS2011/ERP606/AS-ABAP/SYB/HA/DB, &StartupInfo, &ProcessInfo), line (646) in file (d:\depot\bas\720_rel\bc_720-2_rel\gen\optu\ntamd64\ins\sapinst\impl\src\syslib\synxcchapp.cpp), stack trace: d:\depot\bas\720_rel\bc_720-2_rel\gen\optu\ntamd64\ins\sapinst\impl\src\ejs\ejscontroller.cpp: 181: EJSControllerImpl::executeScript() d:\depot\bas\720_rel\bc_720-2_rel\gen\optu\ntamd64\ins\sapinst\impl\src\ejs\jsextension.hpp: 1059: CallFunctionBase::call() d:\depot\bas\720_rel\bc_720-2_rel\gen\optu\ntamd64\ins\sapinst\impl\src\osmod\iaxxbprocess.cpp: 423: CIaOsProcess::start_impl() d:\depot\bas\720_rel\bc_720-2_rel\gen\optu\ntamd64\ins\sapinst\impl\src\syslib\synxcchapp.cpp: 238: CSyChildApplicationImpl::start(false) d:\depot\bas\720_rel\bc_720-2_rel\gen\optu\ntamd64\ins\sapinst\impl\src\syslib\synxcchapp.cpp: 262: CSyChildApplicationImpl::doStart() .). You can no
    Regards,
    Letz..

    Hello Mauricio.
    Thanks
    Two Thinks:
    1.- This error appears precisely in the process of creating SAP users including you mention sidadm:
          A.- Execute sapinst
          B.- Installation option is chosen
                SAP NetWeaver CE Production Edition
                        Installation Options
                            High-Availability System
                                  Central Service  Instance (SCS)
           c.- System ID, Next and appear message error
    2.- However, the user manually create sidadm, I gave the permissions you indicate, and the error message is the same
    Thanks

  • Call JSP with applet and wait till it is loaded

    Hi,
    I am calling a JSP with a java-script. The targetpage needs some time, until the applet is loaded. I would like to call a function in the applet.
    My problem is, that I cannot set 'location.href' and straight after that call the applet, because it will not be there. How can I delay the applet-call, until it is really there?
    function loadOrder(){
    top.mainFrame.location.href = 'auftragseditor.jsp';
    top.mainFrame.OrderApplet.setOrder( orderno )
    I also fitted a while(...) loop between the two statements, but obviously the page is not build up in another thread. The loading will wait.
    Thanks for your help
    Klaus

    Assuming that top.mainFrame.OrderApplet.setOrder( orderno ) causes an exception because
    the applet is not loaded yet you should put it in a try and catch.
    One other problem is that orderno is not defigned anywhere in your method.
    function loadOrder(){
      top.mainFrame.location.href = 'auftragseditor.jsp';
      callApplet( orderno );
    function callApplet(strPassToApplet){
      try{
         top.mainFrame.OrderApplet.setOrder( orderno )
      }catch(e){
        // try again in .1 seconds
        setTimeout("callApplet(\"" + strPassToApplet + \");",100);
    }

  • Calling fonction with parameter in jsp

    Hi!
    I am looking to call a function of my bean class into my jsp page. But this function has 1 parameter. I want to display the list that this function returns.
    For example:
    - Bean class: Users
    - Bean class: X
    - in this class X I have the function: getHobbies(username)
    - in my jsp page I get all users nodes and I want to display each user with the list of his hobbies thanks to this function getHobbies, please would you mind telling me if it is possible? I was thinking of something like this:
    <a:richList id="users-list" binding="#{UsersBean.usersRichList}"
    viewMode="details" pageSize="10"
    styleClass="recordSet" headerStyleClass="recordSetHeader"
    rowStyleClass="recordSetRow" altRowStyleClass="recordSetRowAlt" width="100%"
    value="#{Users.users}" var="b" initialSortColumn="userName"
    initialSortDescending="true">
    <h:selectOneMenu id="hobbies" style="width:150px" >
    <f:selectItems actionListener="#{X.getHobbies(b.username}" />
    </h:selectOneMenu>
    Thanks

    http://developer.java.sun.com/developer/onlineTraining/Database/JDBC20Intro/JDBC20.html

  • Problem calling Procedure with parameter from Dynamic Page

    I received an error saying the Page not found
    here's how to reproduce the error.
    1. Create procedure in portal30 schema.
    Create or Replace PROCEDURE PORTAL30.ADD_TWO_VALUES
    v_one IN NUMBER,
    v_two IN NUMBER,
    v_result OUT NUMBER)
    as
    begin
    v_result :=v_one+v_two;
    end;
    2. Create Dynamic Page with following code
    <ORACLE>DECLARE
    v_total NUMBER;
    BEGIN
    ADD_TWO_VALUES(:v_one,:v_two, v_total);
    htp.p('The total is => ');
    htp.p('<input type="TEXT" VALUE='||v_total||'>');
    htp.para;
    htp.anchor('http://<machine.domain:port#>/pls/portal30/PORTAL30.DYN_
    ADD_TWO_VALUES.show_parms', 'Re-Execute Procedure');
    END;</ORACLE>
    3. I clicked on Customize Link and entered 2 numbers as values for v_one and v_two.
    4. Got "The page cannot be found" error in I.E. or "The requested URL /pls/portal30/PORTAL30.DYN_SAMPLE_ADD.show was not found on this server." on Netscape
    However when I subsitute "ADD_TWO_VALUES(:v_one,:v_two, v_total);" in the dynamic page for "ADD_TWO_VALUES(3,2, v_total);", it runs just fine.
    What's wrong here? Can I not use a parameter from a dynamic page and call a procedure with it? Help is needed urgently and will be greatly appreciated.
    -Ahsun

    Hi,
    I tried with your code with few changes ,please try with them.
    Create or Replace PROCEDURE <myschema>.ADD_TWO_VALUES
    v_one IN NUMBER,
    v_two IN NUMBER,
    v_result OUT NUMBER)
    as
    begin
    v_result :=v_one+v_two;
    end;
    I created the procedure in <mySchema> and granted that to <application_schema> and made some changes
    <ORACLE>
    DECLARE
    v_total NUMBER;
    BEGIN
    <procedure_schema>.ADD_TWO_VALUES(:v_one,:v_two, v_total);
    htp.p('The total is => ');
    htp.p('<input type="TEXT" VALUE='||v_total||'>');
    htp.para;
    htp.anchor('http://<your_host>/pls/<portal_schema>/<application_schema>.DYN_FOR_OTN.SHOW_PARMS', 'Re-Execute Procedure');
    END;
    </ORACLE>
    Hope this helps.
    rahul

  • Calling report with parameter form using frmrwinteg

    Hi,
    I am calling a report with a parameter screen from a form and am using the frmrwinteg bean. This works fine on our test application server but, when moved onto our production application server, the database logon screen is presented after pressing the submit button on the parameter screen. The cause of the problem seems to be the html generated to simulate the parameter screen. The html on the test application server contains a BASE tag in the HEAD section with an href starting "http:/servername.companyname.com". However, the same tag in the html generated on the production application server is missing the ".companyname.com", causing the cookie produced by the frmrwinteg bean to not be found. Does anyone know how the BASE href tag is generated and what I need to change to get the correct BASE href value? I am using Forms/Reports 10g R2 and Application Server 10.1.2.
    Cheers....

    Appendix "A" of this document describes how cookie_domain works:
    http://otn.oracle.com/products/forms/pdf/10g/frmwebshowdoc_rep.pdf

  • Calling report with parameter screen from form using frmrwinteg

    Hi,
         I am calling a report with a parameter screen from a form and am using the frmrwinteg bean. This works fine on our test application server but, when moved onto our production application server, the database logon screen is presented after pressing the submit button on the parameter screen. The cause of the problem seems to be the html generated to simulate the parameter screen. The html on the test application server contains a BASE tag in the HEAD section with an href starting "http:/servername.companyname.com". However, the same tag in the html generated on the production application server is missing the ".companyname.com", causing the cookie produced by the frmrwinteg bean to not be found. Does anyone know how the BASE href tag is generated and what I need to change to get the correct BASE href value? I am using Forms/Reports 10g R2 and Application Server 10.1.2.
    Cheers.....

    Appendix "A" of this document describes how cookie_domain works:
    http://otn.oracle.com/products/forms/pdf/10g/frmwebshowdoc_rep.pdf

  • Not able to run Applet after calling JSP with a Servlet

    Dear Java-Community :)
    At first I want to say, that my English isn't the best.. so I hope you'll understand my problem ;)
    I'm running a J2EE-Application, packed in a EAR-File, on my JBoss with following directory-structur:
    /jaw6c/bin
    /jaw6c/build
    /jaw6c/common
    /jaw6c/ejb
    /jaw6c/sql
    /jaw6c/src
    /jaw6c/webapp
    /jaw6c/webapp/build
    /jaw6c/webapp/build/classes
    /jaw6c/webapp/build/classes/com
    /jaw6c/webapp/build/classes/com/jbossatwork
    /jaw6c/webapp/build/classes/com/jbossatwork/ControllerServlet.class<<<<<<<<
    /jaw6c/webapp/build/distribution
    /jaw6c/webapp/build/distribution/webapp.war
    /jaw6c/webapp/build/gensrc
    /jaw6c/webapp/compile-lib
    /jaw6c/webapp/lib
    /jaw6c/webapp/src
    /jaw6c/webapp/src/com
    /jaw6c/webapp/src/com/jbossatwork
    /jaw6c/webapp/src/com/jbossatwork/ControllerServlet.java
    /jaw6c/webapp/web
    /jaw6c/webapp/web/WEB-INF
    /jaw6c/webapp/web/WEB-INF/classes
    /jaw6c/webapp/web/buyCarForm.jsp
    /jaw6c/webapp/web/carForm.jsp
    /jaw6c/webapp/web/carList.jsp
    /jaw6c/webapp/web/copy_darstellungErgebnisse.jsp
    /jaw6c/webapp/web/darstellungErgebnisse.jsp<<<<<<<<<<<<<<
    /jaw6c/webapp/web/default.css
    /jaw6c/webapp/web/diag.jar
    /jaw6c/webapp/web/diagram.class<<<<<<<<<<<<<<<<<<<<<<<<
    /jaw6c/webapp/web/error.jsp
    /jaw6c/webapp/web/index.jsp
    /jaw6c/webapp/web/selectBewertungslaeufeList.jsp
    /jaw6c/webapp/build.xml
    /jaw6c/build.xmlThe applet should be loaded in my "darstellungErgebnisse.jsp"-File.
    Now the strange situation:
    When I access "darstellungErgebnisse.jsp" DIRECTLY by entering a URL like "localhost:8080/jaw/darstellungErgebnisse.jsp" , the applet is loading perfectly !
    But when my server is forwarding me to the JSP-Site with
    RequestDispatcher dispatcher =  getServletContext().getRequestDispatcher(destinationPage);
    dispatcher.forward(request, response);
    . . . . . . . ..I'll get a ""java.lang.ClassFormatError: Incompatible magic value 1008813135 in class file diagram
    " -Error what means (referenced on the articles I've read here), that the diagram.class Is not found !
    I have tried to put the class file in a JAR, in different locations... using the codebase and archive tag but NOTHING solved my problem.
    So my question:
    Why I'm able to access the JSP-File directly and seeing the applet but after forwarding to the JSP-File via the Servlet, I'm not able to see anything.
    Would appreciate your help
    Thank you and best regards
    Edit:
    1) I'm able to download the diag.jar and diagram.class file from different locations
    2)I recognized, that after using the servlet, my url is changing from
    localhost:8080/jaw
    to
    localhost:8080/jaw/controller
    I tried added the class file to the position, where the controller-class file is, but without sucess.
    3)Opening the class-file with a hex-editor shows me, that
    the first bytes are
    "CAFEBABE0000002E02B9070002010007"
    (http://forum.java.sun.com/thread.jspa?threadID=648990&messageID=3820701)
    Message was edited by:
    Khaled01

    Hello everybody,
    I finaly have found the solution (after 16 hours).
    Like I mentioned before, I recognized (maybe a little to late), that my path is changing when I'm using the servlet :
    localhost:8080/jaw
    to
    localhost:8080/jaw/controller
    (made by url-pattern in my web.xml).
    So when my JSP tries to acces the class file, It's looking at:
    localhost:8080/jaw/controller/applet/diagram.class
    but the file is in:
    localhost:8080/jaw/applet/diagram.class
    So the solution is, to but a codebase-tag in my applet-declaration with following delcaration "basedir="../applet"
    I hope I'll help somebody with the same problems. It took me a day to find out, that the solution was two points and a slash..... lol
    Regards to everybody

  • Calling form with value problem

    Hello All,
    Platform: forms 6i
    calling form- quot.fmx
    called form- inv.fmx
    Value to pass: ref_no
    on Calling form-> button-> when-button-pressed-trigger
    DECLARE
    P PARAMlist;
    BEGIN
    P:= CREATE_PARAMETER_LIST('ABC');
    ADD_PARAMETER(P,'A_REF_NO',TEXT_PARAMETER,:ref_no);
    CALL_FORM('D:\clean\inv.FMX',NO_HIDE,NO_REPLACE,NO_QUERY_ONLY,P);
    DESTROY_PARAMETER_LIST(P);
    END;On Called form-> Parameter created-> a_ref_no
    when-new-block-instance trigger
    SET_BLOCK_PROPERTY('inv',DEFAULT_WHERE,'ref_no:='||:PARAMETER.A_REF_NO);
    EXECUTE_QUERY;When i am clicking om button form is opening but no value in inv.ref
    Please help.

    ref_no datatype is number and we are creating text_parameter. Is this creating problem?Why do you have the leading Zero's if REF_NO is a NUMBER? Oracle will automatically strip the leading Zero's unless you specify REF_NO as a VARCHAR2. Your code sample used 000001 so this implied your REF_NO was a VARCHAR2. Is the Data Type of :PARAMETER.A_REF_NO a NUMBER or a CHAR? If it is a CHAR, you will need to cast the value to a NUMBER using the TO_NUMBER() function. You can't rely on Oracle to implicitly convert the CHAR to NUMBER - in fact - Oracle strongly recommends you always cast data type conversion rather than relay on implicit conversions.
    And wht do you mean by where clause in forms? are you talking about data block------properties-----------Query data source type------ From clause query------------ (WHERE ref_no=:PARAMETER.A_REF_NO)>
    Is your Datablock based on a From Clause Query? If yes, you can't using the BLOCK WHERE property to filter your block records. You will have to alter the From Clause Query each time. Let me know if you are using a From Clause and I'll show you how to make this work.
    Craig...

  • SQL Query in JSP with variable problem

    Researching this but I haven't found an answer yet. I want to pass a user variable to the SQL query. Anyone know how? Thought the form call out might work but it doesn't. Thanks!     <%
         String selectX = request.getParameter("choice");
         String pSQLStr = "SELECT asset, tenant FROM fritco WHERE asset = '::selectX::'";
              try
              Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
              Connection con = DriverManager.getConnection("jdbc:odbc:MyDataSource", "username", "password");
              Statement stmt = con.createStatement();
              ResultSet result = stmt.executeQuery(pSQLStr);

    Yes.
    Use a Prepared Statement.
    Saves you from sql injection attacks.
    String selectX = request.getParameter("choice");
    String pSQLStr = "SELECT asset, tenant FROM fritco WHERE asset = ?";
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection con = DriverManager.getConnection("jdbc:odbc:MyDataSource", "username", "password");
    PreparedStatement stmt = con.prepareStatement(pSQLStr);
    stmt.setString(1, selectX);
    ResultSet result = stmt.executeQuery(); Suggestions for improvements.
    - Set up a JNDI datasource to retrieve your connection from. WIll do connection pooling for you, rather than creating a new DB connection each time.
    - Don't have any sql code in your JSP at all - that should be in beans.
    - If sql code MUST be in your JSP, use a taglib for it like the JSTL sql taglib
    - Don't use scriptlet code (<% %>) in JSPs. If you want to run java code use beans/servlets.
    Cheers,
    evnafets

  • Export a report from another page with parameter problems...can it be done?

    Hi All,
    I have used Dennis Excel pkg which works fine if on the same page... however, I want users to enter two dates in my items
    P5_FIRST_DATE
    P5_SECOND_DATE
    I have manged to create a button that will execute the report on the second page without parameters
    by choosing the redirect to url and this does work...
    however, when i parameterize the url, it still works but does not send across the values
    here is what i am using in the url
    #a href="f?p=102:7:3458199286078769:FLOW_EXCEL_OUTPUT_R2491013790251874" ##a href="f?p=102:0:3458199286078769:DOWNLOAD_EXCEL:NO::T_REGION_ID,T_EXCEL_NAME,T_PAGE,PFIRST_DATE:R2491013790251874,my_report,7,:P5_FIRST_DATE"
    This does work... but does not putt the parameters across
    Can this be done? or is there a better way of doing this. I dont really want them to see the report because it just a list of urns with dates which the user enters which they will always want to download
    so i just want them to add the dates and download
    thanks for your time in reading this
    cheers

    Fazlar,
    This is how you do it:
    http://apex.oracle.com/pls/otn/f?p=23521:8
    You should never name your items
    P5_FIRST_DATE
    and put the item on the page 8. This is confusing and costs a lot of time to find out an item
    doesn't exist.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://htmldb.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • When a contact tries to call me on FaceTime, they are told I'm not available. In settings, it's turned on and I can call them with no problem immediately after they've tried calling me. Any ideas?

    Facetime tells my contacts I'm not available. My FaceTime is turned on in settings and  I'm able to FaceTime them immediately after they've tried calling me. Any ideas what I'm missing? 

    Try going to settings and turning FaceTime off, then back on again.  A hard reset may also help(hold down the power button and the home button together until you see the Apple logo)

  • APEX process calling sp with parameter

    Here is the source of my PL/Sql process. It is not working.
    DECLARE
    P_ID NUMBER;
    BEGIN
    P_ID := :P9_VULN_ID;
    AUDIT_PROC(
    P_VULN_ID => P_ID
    END;
    But if I change :P9_VULN_ID to a number, for example 3, then it will work. I have to pass the item value into the stored procedure. I struggled on this for 2 days, could not solve it...
    Anyone?

    You make my day!!! I meant to give you Correct point!!! Please reply so I can make it correct.
    Edited by: YivonH on Feb 18, 2010 2:09 PM

  • Stored Procedure in access with parameter name

    Hi, i'm new in JDBC.
    I came from Ado.Net.
    I want to call a stored procedure in access and set my parameters by name and not by index.
    When i try to call the SP with params by index it works as expected,
    but with param names it give me this exception:
    java.lang.UnsupportedOperationException
    Is there a way to call SP with parameter names?
    BogN,

    Well, it still doesn't work. Here is part of the code, have a look please.
    public DisplayQueryResults() {
       String studattUrl = "jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=D:/StudAtt/StudAtt.mdb";
       String mustbUrl = "jdbc:odbc:mustb";          
       try {
          Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
          studattConn = DriverManager.getConnection(studattUrl);
          Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
          mustbConn = DriverManager.getConnection(mustbUrl, "sa", "");               
    private void getTable() {
       try {
          stmtStudAtt = studattConn.createStatement(resultSet.TYPE_SCROLL_SENSITIVE, resultSet.CONCUR_READ_ONLY);
          stmtMustb = mustbConn.createStatement();
          CallableStatement callSP = studattConn.prepareCall("{call mustbFaculty}");
          resultSet = callSP.executeQuery();
          displayResultSet(resultSet);
       }

  • Problem in calling jsp/servlets ...Last Day

    when ever I call jsp page from browser, It always search the jsp page in the parent directory of the documentroot directory.
    Also I am not able to set the configuration for calling the servlet from my customize laocation. is any other entry needed except specifying the repositry path in zone.properties file.
    Please help...........I have not very time left for evaluation of 9ias 1.0.2.0.0
    If any one encountered this type of problem. pls respond immediately
    I have installed 9ias v10200 enterprise edition with oracle 8.1.6(enterprise edition) as origin database on winnt server 4.0 with service pack 5. At the time of installation I have selected oracle web cache , forms & reports to be configured at the time of installation.
    I am using port say 10000 other than default port 80, but on same IP.
    I have entered the folling entries at the end of httpd.conf file.
    <VirtualHost 192.168.1.120:10000>
    ServerName rnd1
    DocumentRoot e:/test
    DirectoryIndex hi.html
    </VirtualHost>
    Listen 80
    Listen 10000
    now when I request "http://rnd1:10000/ClamHome.jsp" from browser, It gives the messege that source file "ClamHome.jsp" not found on path "e:\" which is the parent of my documentroot path. Why it try to search at parent directory of document root????????
    another thing is that, when I run the demos of jsp given with 9ias v10200, they works(jsps) fine.
    but after running the demo which is on port 80 with documentroot e:\9\Apache\Apache\htdocs,
    I again call my ClamHome.jsp at rnd1:10000 then it gives error that file not found at "e:\9\Apache\Apache\htdocs". Strange behaviour, this time it searches on path which I called earlier.
    pls help
    null

    I would try to change "./Welcome.jsp" to "/Welcome.jsp". I'm not sure what that period will do.
    Are you able to access that JSP directly from your browser (even if it's not designed to be accessed that way)? If not, then you have some other problem.
    When you say you get a 404 when you access the servlet, is that when you access the servlet, or when it tries to forward to the JSP? If you get the 404 when you access the servlet, perhaps your servlet-mapping to the servlet is invalid.

Maybe you are looking for

  • Lost OSX 2.8

    When I Held down the commandoption+PR keys to attempt to restore a sytem problem of not shutting down, I lost the OS X system. I am back to the 8.6 system from the G3 disk included with the computer. I bought the computer used last year and it was al

  • Report by Profit Center

    Hi experts, 1. I have created a distribution rule and assigned 3 profit centers. 2. I have created AP (service document) using this distribution rule. 3. In profit Center report, I can see that the amount on my AP was properly distributed on 3 Profit

  • Hyperlink in Mail Signature?

    Hi, I am trying to find a way to include a hyperlink (a "Click here" type, not just a URL) in my signature, but don't seem to be able to get it to work. Has anyone done this? And can you tell me how? Thanks! - John

  • Using Manufacturer Part numbers (HERS) in Maintenance orders (IW32)

    We want to be able to allow our maintenance engineers to select the MPN's they want (material type HERS) from the maintenance order creation screen (Iw31/IW32) but we get the message CO010 Material nnnnnnnn not found in plant xxxx. Of course the HERS

  • JDev 9.0.3.3 - float/double in the debugger

    Hello! I use JDeveloper ver. 9.0.3.3 and during last debug session I noticed one strange behaviour in the JDev debugger. There is a variable of type float with value of 10964.17. I see the value when I do System.out.println() of the variable. But the