Help with one of my first progys

the fallowing code is for an intro to comp sci class I'm taking. I'm very new to java and I'm just having a small issue with this code
when it spits out the output for the final letter grade variable:sLettergrade it is many times incorrect or just spits out a blank but it's also sometimes right.
after quite some time trying to figure it out I have resorted to this any help would be fantastic!
package studentgrades;
import java.io.*; 
//@author Preston Taylor
public class Main {
//@param args the command line arguments
    public static void main(String[] args) {
        //this block sets up the program for user input
        InputStreamReader charReader = new
            InputStreamReader(System.in);
        BufferedReader keyboard = new
            BufferedReader(charReader);
        try{
            //variable declaration
            String sInput= ""; /*only used for input that requires prasing.
                                *must be parsed out of and decalred to another varible
                                *immediately so it can be used at the next input*/
            String sLoop=""; //variable used to continue loop
            String sFirstname="";
            String sLastname="";
            String sLettergrade="";
            int iStudentnumber=0;
            double dHomework=0;
            double dQuiz=0;
            double dMidterm=0;
            double dFinalscore=0;
            double dGradepercent=0; //final grade percentage after calulations
            //the next do statement is the main loop of the program
            //that the program comes back to if the user decides to continue
            do{
                //inquiry to the user
                System.out.println("What is the Student number?");
                    sInput=keyboard.readLine();
                    iStudentnumber=Integer.parseInt(sInput);
                System.out.println("Student first name?");
                    sFirstname=keyboard.readLine();
                System.out.println("Student last name?");
                    sLastname=keyboard.readLine();
                System.out.println("What is the homework average percent?");
                    sInput=keyboard.readLine();
                    dHomework=Double.parseDouble(sInput);
                System.out.println("What is the Quiz average percent?");
                    sInput=keyboard.readLine();
                    dQuiz=Double.parseDouble (sInput);
                System.out.println("What is the Midterm score percent?");
                    sInput=keyboard.readLine();
                    dMidterm=Double.parseDouble(sInput);
                System.out.println("What is the Final test score percent?");
                    sInput=keyboard.readLine();
                    dFinalscore=Double.parseDouble(sInput);
               //equations to figure final grade
               dHomework=dHomework*.4;
               dQuiz=dQuiz*.2;
               dMidterm=dMidterm*.2;
               dFinalscore=dFinalscore*.2;
               dGradepercent=dHomework+dQuiz+dMidterm+dFinalscore;
               //the fallowing if statements assign a letter grade to the percentage
               if (dGradepercent >= 90)
                   sLettergrade="A";
               if (dGradepercent < 90 && dFinalscore >=80)
                   sLettergrade="B";
               if (dGradepercent < 80 && dFinalscore >=70 )
                   sLettergrade="C";
               if (dGradepercent < 70 && dFinalscore >= 60)
                   sLettergrade="D";
               if (dGradepercent < 60)
                   sLettergrade="FAILURE";
               //the fallowing is readout to the user
               System.out.println(sLastname + ", " + sFirstname + " with a student id of " + iStudentnumber);
               System.out.println("Homework: " + dHomework);
               System.out.println("Quizzes: " + dQuiz);
               System.out.println("Midterm: " + dMidterm);
               System.out.println("Final Test " + dFinalscore);
               System.out.println(" ");
               System.out.println("Final average: " + "%" + dGradepercent + " Grade: " + sLettergrade);
                do{ //the fallowing loop covers incompetent user handling
                    System.out.println("would you like to enter another student? y or n");
                    sLoop= keyboard.readLine();
                    if (!((sLoop.equals ("y")) || (sLoop.equals ("Y")) || (sLoop.equals ("n")) || (sLoop.equals ("N"))))
                        System.out.println("ERROR: you typed something incorrect try again");
                //the below while statement loops back to the do statement above if the user is retarded or has fat fingers
                }while (!((sLoop.equals ("y")) || (sLoop.equals ("Y")) || (sLoop.equals ("n")) || (sLoop.equals ("N"))));
            //the next while statement handles exiting and looping the program
            }while ((sLoop.equals ("y")) || (sLoop.equals ("Y")));
        catch (IOException e){
            System.out.print("error "+ e.getMessage()); //error handling
}thanks, Preston

if you're testing a range, shouldn't the variables be the same?
if (dGradepercent < 90 && dFinalscore >=80)
if (dGradepercent < 90 && dGradepercent >=80)
                                ^^^

Similar Messages

  • I need advise and help with this problem . First , I have been with Mac for many years ( 14 to be exact ) I do have some knowledge and understanding of Apple product . At the present time I'm having lots of problems with the router so I was looking in to

    I need advise and help with this problem .
    First , I have been with Mac for many years ( 14 to be exact ) I do have some knowledge and understanding of Apple product .
    At the present time I'm having lots of problems with the router so I was looking in to some info , and come across one web site regarding : port forwarding , IP addresses .
    In my frustration , amongst lots of open web pages tutorials and other useless information , I come across innocent looking link and software to installed called Genieo , which suppose to help with any router .
    Software ask for permission to install , and about 30 % in , my instinct was telling me , there is something not right . I stop installation . Delete everything , look for any
    trace in Spotlight , Library . Nothing could be find .
    Now , every time I open Safari , Firefox or Chrome , it will open in my home page , but when I start looking for something in steed of Google page , there is
    ''search.genieo.com'' page acting like a Google . I try again to get raid of this but I can not find solution .
    With more research , again using genieo.com search eng. there is lots of articles and warnings . From that I learn do not use uninstall software , because doing this will install more things where it come from.
    I do have AppleCare support but its to late to phone them , so maybe there some people with knowledge , how to get this of my computer
    Any help is welcome , English is my learned language , you may notice this , so I'm not that quick with the respond

    Genieo definitely doesn't help with your router. It's just adware, and has no benefit to you at all. They scammed you so that they could display their ads on your computer.
    To remove it, see:
    http://www.thesafemac.com/arg-genieo/
    Do not use the Genieo uninstaller!

  • Need Help with One to One Mapping in SQL

    Can aynone please design me tables in Oracle .
    I want to have a two tables with one to one mapping .
    Following is the scenario.
    I have an Employee object and a Parking Space Object. The have a one to one relation i.e., an employee will always be associated to only one parking space, that parking space should not be associated to any other employee.
    It would be a great help .

    sb92075 wrote:
    We don't do homework assignments.I used to do my own... seems like a novel concept now-a-days :)

  • 2 minor issues need help with one BBM and one email

    I am hoping someone can help with this
    the BBM issue is one of my contacts that has the z10 doesn't show option for my to video chat with him all my other contacts do and he has it displayed on his side and all his options are set same as mine
    second question is since i set up my activesync email it has pushed a password on my phone everytime it goes to sleep and i go to options and cannot turn off the device password option.
    Hope someone has some ideas

    It sounds like the account you connected to for ActiveSync has an IT policy that requires the password. You can't get around it. You'd have to talk to them.
    For BBM, have you verified the PIN is correct on each end? Can you BBM directly with this person? You both have to be on wifi, as well.
    1. Please thank those who help you by clicking the "Like" button at the bottom of the post that helped you.
    2. If your issue has been solved, please resolve it by marking the post "Solution?" which solved it for you!

  • I need help with one chapter of the Logic training series book...

    I've been studying from the Apple Pro training series manual - Logic pro 9, Professional Audio Production. I'm keen to sit the exam asap, and move onto the next book in the series, but may need a little coaching on one chapter - namely Appendix A, 'Using External MIDI devices.' I've never used Logic in this way, and only have one MIDI piano to work with at home. Therefore recreating what is required in the chapter, and getting my head around the material is proving difficult. Therefore I have two questions - 1) Will this section be tested in the exam?  And if so, 2) Is there anyone in the Berkshire / Surrey / West London area who could help me with a quick lesson? (I'd be prepared to pay, obviously) I've been using Logic for a number of years, so would prefer not to have to spend serious money on a full blown course.
    I'm keen to sit the exam over half term if possibe - w/c 4th June 2012.
    Thanks for your help.
    Arron

    Hi
    Appendix A covers setting up Audio MIDI Setup for a "real" external Synth, and then getting Logic to create a track to send MIDi out to that Synth. Finally, you set up the Program names.
    You should be able to go through the first part (and do it) providing you have some kind of MIDI Interface showing up in AMS. Create a "dummy" MIDI 'Synth' and cable it up.
    Once done, this 'dummy' synth will appear in Logic's Library for External Instrument tracks. Without an real synth you will not be able to hear any results.
    You could run through the process for setting up the program names, but without something actually attached, you will not be able to hear/see the changes.
    You could run in 32bit mode and use the "Software" quicktime synth, or maybe sort something using an IAC bus, but frankly, that's more likely to confuse the **** out of you at this stage.
    HTH
    CCT

  • G460 became very slow after installing windows 7...help with one touch recovery??

    hi ...i got a laptop from friend  9 months ago from us ....its g460 with windows 7 home premium os...for practising sharepoint tech: i installed windows 7 ultimate 1 month back and after that i tried to install .net and sharepoint s/w with no use...after that whenever i start its taking neary 15 mins to start itself and then its saying windows s7 is not genuine...si i called up service center and they said that s/w instllation they dont cover under warranty ..and they are charging around sme 2000 bucks to install windows 7 premium  and said that we will also provide one touch recovery...
    cant i with online support do the one touch recovery and get back the laptop in the previous state?? what is this one touch recovery all about?? is it only for data ?? thanks in advance.

    hey durgamavu,
    Do check the following >>
    http://consumersupport.lenovo.com/%28S%28wjgnfm55b​e4kejqew1t0nj55%29%29/lk/en/HintsandTips/hints_sho​...
    WW Social Media
    Important Note: If you need help, post your question in the forum, and include your system type, model number and OS. Do not post your serial number.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    Follow @LenovoForums on Twitter!
    Have you checked out the Community Knowledgebase yet?!
    How to send a private message? --> Check out this article.

  • Help with One to One Can not Log On

    I do not know where to post this question, if I am in the wrong place I apologize in advance. I have not been able to sign into my One to One account for the last two days. It is not my computer because I tried on two different computers and on my Iphone. It takes my password and then it says Loading One to One, but it just keeps churning, for hours on end. I called my apple store and they could not help me, they told me to call Apple Care, who also told me that they could not help me, that it was up to the stores to help me because One to One was a store thing. So I called my store back again and waited on hold for over an hour. I then tried another store in my area, and they once again told me that it was not their jurisdiction.
    There seems to be a problem with he account, not the software or the computers. I cleared the caches, restarted the computers etc. But I do not know who to go to with this problem because One to One seems to be no ones jurisdiction. Any advice would be most welcomed.
    Thank you

    Can you go to the Apple tore and try logging on there? If there's a problem they are right there to help you.

  • Help with one select

    Hi everyone,
    i have a table with three columns, where in some cases, there is NULL in name column for a specific time and for a specific id.
    I need to fill the missing names, with the first previous occurence. I dont know if it possible to do so within one select.
    thanks for any ideas
    DATA table
    id, mdate, name
    15, '1.7.2008 15:00', 'A'
    15, '28.7.2008 18:00', 'B'
    4, '1.8.2008 15:00', 'G'
    5, '1.8.2008 15:00', ''
    3, '1.8.2008 18:00', 'G'
    15, '5.8.2008 15:00', ''
    15, '5.8.2008 17:00', ''
    3, '10.8.2008 18:00', ''
    15, '8.8.2008 07:00', 'F'
    15, '9.8.2008 07:00', ''having data above,
    for example for id = 15 i would like to fill the name column with this names.
    15, '5.8.2008 15:00', 'B'
    15, '5.8.2008 17:00', 'B'
    15, '9.8.2008 07:00', 'F'
    etc
    so the result of the select should be:
    15, '1.7.2008 15:00', 'A'
    15, '28.7.2008 18:00', 'B'
    4, '1.8.2008 15:00', 'G'
    5, '1.8.2008 15:00', ''
    3, '1.8.2008 18:00', 'G'
    15, '5.8.2008 15:00', 'B'
    15, '5.8.2008 17:00', 'B'
    3, '10.8.2008 18:00', 'G'
    15, '8.8.2008 07:00', 'F'
    15, '9.8.2008 07:00', 'F'
    select 15 as id, to_date('1.7.2008 15:00','dd.mm.yyyy hh24:mi') as mdate, 'A' as name from dual union all
    select 15, to_date('28.7.2008 18:00','dd.mm.yyyy hh24:mi'), 'B' from dual union all
    select 4, to_date('1.8.2008 15:00','dd.mm.yyyy hh24:mi'), 'G' from dual union all
    select 5, to_date('1.8.2008 15:00','dd.mm.yyyy hh24:mi'), null from dual union all
    select 3, to_date('1.8.2008 18:00','dd.mm.yyyy hh24:mi'), 'G' from dual union all
    select 15, to_date('5.8.2008 15:00','dd.mm.yyyy hh24:mi'), null from dual union all
    select 15, to_date('5.8.2008 17:00','dd.mm.yyyy hh24:mi'), null from dual union all
    select 3, to_date('10.8.2008 18:00','dd.mm.yyyy hh24:mi'), null from dual union all
    select 15, to_date('8.8.2008 07:00','dd.mm.yyyy hh24:mi'), 'F' from dual union all
    select 15, to_date('9.8.2008 07:00','dd.mm.yyyy hh24:mi'), null from dual

    Try this:
    update tab t1
    set t1.name = ( select t2.name
                      from tab t2
                     where t2.id = t1.id
                       and t2.mdate = ( select max( t3.mdate )
                                          from tab t3
                                         where t3.mdate < t1.mdate
                                           and t3.id = t2.id ) )
    where t1.name is null;

  • I am disabled and need help with one to one service that I paid for

    Hi there,
        I brought my computer last year in Aug.  I signed up for the one year of one -to - one service.  Here is the issue, I'm disabled, and things didn't go according to plan.  I am housebound.  If I get out once a week, that's pretty much it, and usually, I have a lot of Dr apts and can't do both things in the same day, too much sitting up in awkward positions for my back to handle (with 7 herniated discs, crushed spinal cord, and 3 tumors in my spinal canal).  So, from Aug to today, I have been out of the house a total of 30 times, all for Dr appointments.
    I have yet to be able to use the one-to-one that I paid for.  I talked to a manager and he was very nice and granted me an extra 30 days.  Is there anything that I can do to get a bit more time to use it?  Even if that is just till October, anything?  I feel dumb for getting it, but, had no way to know my back would get worse...
    Thanks
    Dan

    Sorry if I chose the wrong place to put this item, but, I really wasn't sure where to post it.  If the moderator would like to move it to a more appropriate spot, by all means.
    Thanks again
    Dan

  • Can you help with one more iCal problem?

    Thanks to this forum,I finally got rid of the double entries.  But I must still have something missing because when I post one device, it does not enter on the other. I know iCloud is turned on in Settings on my iPad and iCal is turned on. Each are working separately, just not together.  What am I not doing?

    You don't have any Shape layers, so you won't have any fill or stroke options.  If you had a rectangle and line layer, you have either deleted them, or caused them to be rasterized.  That would also remove any Fill and Stroke options from the Options bar.
    The 'little camera' at the bottom of the Tool bar, is the Quick mask icon.  Clicking on it toggles between standard and Quick mask modes, like you said.  Clicking on it is exactly the same as hitting the q key.  It has absolutely nothing to do with Shape layers.
    What you need to do now, is regroup.  What exactly are you trying to achieve, and what do you expect to see in your Workspace?  You will have noticed that your workspace is context sensitive.  It automatically changes according to what tools are selected, or what function you are using at any particular time.

  • I need help with one menu

    Hi evryone i created a menu in flash, the actionscript code
    is:
    // -- funciones
    MovieClip.prototype.TLonRollOver = function() {
    formato.color = 0x666666;
    this.texto.setTextFormat(formato);
    MovieClip.prototype.TLonRollOut = function() {
    formato.color = 0x666666;
    this.texto.setTextFormat(formato);
    MovieClip.prototype.TLonRelease = function() {
    // -- restaura todos los botones a su estado original
    for (i=0; i<menu.length; i++) {
    item = eval("boton_mc"+i);
    item.enabled = true;
    item.useHandCursor = true;
    formato.color = 0x666666;
    item.texto.setTextFormat(formato);
    // -- carga el clip de película en un clip contenedor
    holder_mc.loadMovie(this.pelicula);
    // -- deshabilita el botón pulsaso
    this.enabled = false;
    // -- desahbilita el cursdor en forma de mano
    this.useHandCursor = false;
    // -- para indicar que el botón se encuentra
    desahbilitado
    // -- se cambia el color de texto por uno más tenue.
    formato.color = 0xCCCCCC;
    this.texto.setTextFormat(formato);
    // -- Formato
    formato = new TextFormat();
    formato.font = "Verdana";
    formato.size = 18.5;
    formato.color = 0x000000;
    // -- Menú
    menu = new Array();
    menu[0] = {titulo:"Inicio", pelicula:"inicio.swf"};
    menu[1] = {titulo:"Terapias", pelicula:"terapias.swf"};
    menu[2] = {titulo:"Terapeutas", pelicula:"terapeutas.swf"};
    menu[3] = {titulo:"Tienda", pelicula:"tienda.swf"};
    menu[4] = {titulo:"Noticias", pelicula:"news.swf"};
    // -- clip contenedor
    this.createEmptyMovieClip("holder_mc",
    this.getNextHighestDepth());
    holder_mc._x = 0;
    holder_mc._y = 0;
    // -- Montar Menú
    formato.color = 0x666666;
    for (i=0; i<menu.length; i++) {
    // --se crean nuevas instancias del clip vinculado
    attachMovie("boton_mc", "boton_mc"+i,
    this.getNextHighestDepth());
    anterior = eval("boton_mc"+(i-1));
    item = eval("boton_mc"+i);
    item.pelicula = menu
    .pelicula;
    item.texto.autoSize = true;
    item.texto.text = menu.titulo;
    item.texto.setTextFormat(formato);
    // -- posicionamiento x-y
    item._y = 10;
    if (i == 0) {
    item._x = 10;
    } else {
    item._x = anterior._x+anterior._width;
    // -- eventos de botón
    item.onRollOver = this.TLonRollOver;
    item.onRollOut = this.TLonRollOut;
    item.onRelease = this.TLonRelease;
    well, i need to know how i can link each option with an URL
    and the target is in other frame
    Please help me!!!!

    hi
    still i am not sure what do u want to achieve?
    if u wanna create u r own toolbar then try something like this, but while creating buttons then u have to use codes too.
    There is an easier way to get the "toolbar" you want to have.
    1. Build a mmb with all the functions you want to have both in the menu and in the toolbar.
    2. For each menuitem, you can define in the properties
    - If it should be shown in the menu, then set "Visible In Menu" to Yes
    - If it should be shon in the horizontal toolbar (or vertical toolbar), then set "Visible In Horizontal Menu Toolbar" ("Visible In Vertical Menu Toolbar") to Yes
    - For showing an item in a toolbar, you will have to set the property "Icon Name" additionally to the name of an existing icon (the same way you do for buttons)
    3. Compile and generate the menu
    4. Build a form and attach your menu as Menu-Module in the properties of the form.sarah

  • Help with One to Many Formula

    Post Author: Don
    CA Forum: Formula
    Hello Everyone,
    I need some assistance.  I have a one to many relationship...
    Example...
    TABLE 1
    FieldName = RecordID
    DATA, RecordID= 10
    TABLE 2, linked one to many to RecordID in TABLE1
    FieldNames = RecordID, Name, ContactType
    DATA, RecordID= 10, Name= Tom, ContactType= Sales
    DATA, RecordID= 10, Name= Dan, ContactType= Service
    DATA, RecordID=10, Name= Jon, ContactType= Sales
    What I am looking for is to create a formula that would return something that looks like this....
    Sales Contact Name
    Tom, Jon
    So... I want to grab all the "Contact Types" of "Sales" from TABLE 2 then pass in the "Name" field from TABLE 2 and if there is more then one "Name" of the sames "Contact Type" then comma seperate it.
    And...  I don't want to do this in a sub report.   I do know I can make a sub report and return both values but to my knowledge the values would be on top of one another and not beside each other comma separated.
    Ideas?

    Post Author: Don
    CA Forum: Formula
    That may work using a subreport...
    I think the root of this my problem is the fact I have a table relationship, left outer... one to many join.  So even if I drop your suggested formula in my report I still get repeating record details with blank names where all the other contact types would be.
    Ticket Number       Contact Name     Contact Type
    111111                  Dan, Jim               Sales
    111111                                                                 <---- where the other contact type appear
    111111                                                                 <---- where the other contact type appear
    I was trying to avoid having to create several subreports for each data field I need on the report.  However, I think I can use your formula in a subreport to allow the data to display in a comma separated row rather then a vertical list.
    I thought about suppressing but that won't work because I have other contact types I need to list.
    Thank you for responding.

  • Help with Error 500 running first example of NDS on PocketPc 4.20

    Hi all,
    I'm trying to run the first example of the MI getting started help from Netweaver Developer Studio. When I enter to the app from my notebook it works fine but when I try to access from my PocketPc I get the following exception:
    <b>Hello. I am a Mobile Infrastructure Client application. Here is some information about your installation:
    Error: 500
    Location: /EJEMPLO01/jsp/tableView.jspInternal Servlet Error:
    javax.servlet.ServletException: java.util.Vector: method get(I)Ljava/lang/Object; not found at org.apache.jasper.servlet.JspServlet.service() at javax.servlet.http.HttpServlet.service() at org.apache.tomcat.core.ServletWrapper.doService() at org.apache.tomcat.core.Handler.service() at org.apache.tomcat.core.ServletWrapper.service() at org.apache.tomcat.facade.RequestDispatcherImpl.doForward() at org.apache.tomcat.facade.RequestDispatcherImpl.forward() at com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.dispatchRequest() at com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.doGet() at javax.servlet.http.HttpServlet.service() at com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.service() at javax.servlet.http.HttpServlet.service() at org.apache.tomcat.core.ServletWrapper.doService() at org.apache.tomcat.core.Handler.service() at org.apache.tomcat.core.ServletWrapper.service() at org.apache.tomcat.core.ContextManager.internalService() at org.apache.tomcat.core.ContextManager.service() at org.apache.tomcat.service.http.HttpConnectionHandler.processConnection() at org.apache.tomcat.service.TcpWorkerThread.runIt() at org.apache.tomcat.util.ThreadPool$ControlRunnable.run() at java.lang.Thread.run()Root cause:
    java.lang.NoSuchMethodError: java.util.Vector: method get(I)Ljava/lang/Object; not found at jsp._0002fjsp_0002ftableView_0002ejsptableView_jsp_0._jspService() at org.apache.jasper.runtime.HttpJspBase.service() at javax.servlet.http.HttpServlet.service() at org.apache.jasper.servlet.JspServlet$JspCountedServlet.service() at javax.servlet.http.HttpServlet.service() at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service() at org.apache.jasper.servlet.JspServlet.serviceJspFile() at org.apache.jasper.servlet.JspServlet.service() at javax.servlet.http.HttpServlet.service() at org.apache.tomcat.core.ServletWrapper.doService() at org.apache.tomcat.core.Handler.service() at org.apache.tomcat.core.ServletWrapper.service() at org.apache.tomcat.facade.RequestDispatcherImpl.doForward() at org.apache.tomcat.facade.RequestDispatcherImpl.forward() at com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.dispatchRequest() at com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.doGet() at javax.servlet.http.HttpServlet.service() at com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.service() at javax.servlet.http.HttpServlet.service() at org.apache.tomcat.core.ServletWrapper.doService() at org.apache.tomcat.core.Handler.service() at org.apache.tomcat.core.ServletWrapper.service() at org.apache.tomcat.core.ContextManager.internalService() at org.apache.tomcat.core.ContextManager.service() at org.apache.tomcat.service.http.HttpConnectionHandler.processConnection() at org.apache.tomcat.service.TcpWorkerThread.runIt() at org.apache.tomcat.util.ThreadPool$ControlRunnable.run() at java.lang.Thread.run()</b>
    I'm using MI 2.5 and
    CrEme326_AX_CE42_PPC_minimal.CAB as the JVM for the mobile device.
    It would seem that the JVM doesn't have the Vector class or an updated version of it. But that's the JVM that SAP recommends (). I tried downloading a new version (4.0 b) of the JVM but it won't install on my device. What JVM is everyone else using?
    Thanks

    Hi Andreas,
      Did you modify any of the code?
    Check this site to see the api that the creme supports (jdk 1.1.3)
    http://www.science.uva.nl/ict/ossdocs/java/jdk1.1.3/docs/api/java.util.Vector.html#_top_
    I had the same problem and had to double check that the only methods and classes used are from that API.
    Hope this helps,
    Wael

  • Need help with administrator password for first use??

    Hi, I'm not sure if this is a dummy question. I just installed BI EE, then I was trying to open a sample Repository file, it asked me for password for Administrator account. I entered SADMIN as I found from the HELP (attached below), it didn't work; then I left it blank, it didn't work, then I tried any password I used during the installation, none of them worked.
    Hopefully I can get some insight here.
    Thank and have a good day.
    Crystal
    ====================
    About the Oracle BI Administrator Account
    The Oracle BI Administrator account (user ID of Administrator) is a default user account in every Oracle BI repository. This is a permanent account. It cannot be deleted or modified other than to change the password and logging level. It is designed to perform all administrative tasks in a repository, such as importing physical schemas, creating business models, and creating users and groups.
    NOTE: The Oracle BI Administrator account is not the same as the Windows NT and Windows 2000 Administrator account. The administrative privileges granted to this account function only within the Oracle BI Server environment.
    When you create a new repository, the Oracle BI Administrator account is created automatically and has no password assigned to it. You should assign a password for the Oracle BI Administrator account as soon as you create the repository. The Oracle BI Administrator account created during the installation of the Oracle BI repository, that is, the repository shipped with Oracle BI, has the default password SADMIN.
    The Oracle BI Administrator account belongs to the Administrators group by default and cannot be deleted from it. The person logged on using the Oracle BI Administrator user ID or any member of the Oracle BI Administrators group has permissions to change anything in the repository. Any query issued from the Oracle BI Administrator account has complete access to the data; no restrictions apply to any objects.

    Goran O wrote:
    Try Administrator/Administrator, it works for sh.rpd and samplesales.rpd.
    Regards
    Goran
    http://108obiee.blogspot.com
    Thank you too!!

  • I still need help with my ipod shuffle(first gen)

    my usb dosnt reconize ipod, i already have itunes..i have no clue about ipods, i just got it.is there supossed to be other software other then itunes, for the ipod?

    Hello, Mjj2005
    If you are running Windows OS. The requirements to use an iPod or shuffle are
    Latest version of iTunes and Quicktime
    You can get the latest version of iTunes with Quicktime by going to
    http://www.apple.com/itunes/download/ and choose Windows 2000/XP
    There is no other software or hardware required.
    Some Quick Tips. Try using different USB Ports on your PC and see if iTunes shows your shuffle. Your shuffle is going to appear in the left hand side of iTunes.
    If you open iTunes and look at the left hand side. Look for an area called Devices. If you see this right below that will be your Shuffle name.
    For better assistance with your iPod you might want to call Apple Support at
    1-800-275-2273 where a helpful agent can guide you through these articles and assist you with any other questions you may have about your shuffle.

Maybe you are looking for

  • Problem with WebIntelligence and Universe Designer Derived Table

    Hi people, i have an issue with a report in WebIntelligence that i want to build. Here it goes: I created a derived table that brings every material that has or not any movement. The thing is that when I build the report using other information like

  • VMware Fusion - Journaled External HDD using MacDrive or NTFS?

    I plan to use VMware Fusion running XP Pro via a Bootcamp partition. Along with this I would like a dedicated external HDD for my windows work files (Premiere Pro etc). The trouble is, I'm not sure what way to go with the formatting of the external H

  • After purchase: ". . . can no longer be made into a ringtone"

    I figured I'd get my first ringtone. Maybe it was a bad choice, but "Mandy" by Barry Manilow was there, with the ringtone bell. My daughter's name. I knew it would make her crazy! Immediately after I downloaded it, I went to make the ringtone- and a

  • Non-rectangular click area?

    I have a map that contains several areas, which have irregular shapes, i.e., they all have non-rectangular contours. Each such area is a movie clip, made from a transparent gif. Any part outside of this area (non-rectangular contour) is transparent.

  • Speeding up website loading

    I have created a new website with a video gallery in AS3 and am trying to speed up the loading of the page for this as currently it pauses before appearing on the page. I have tried to get all the movies down to as low a size as possible but still it