Help on project...Urgent please!!!

Below i have some source code about one part of an aircraft reservation system.
This class is the initialisation of the Aircraft file...this stores the information of a particular flight and the number of seats (first class, business class, and economy class).
I want it to store the data as a 2d array that stores both string and int...but then i couldnt find a way of implementing the code.
Could you all please help me in figuring this out...thanks a bunch...
import javax.swing.*;
import java.util.*;
import java.io.*;
public class SetupAircraft {
     static ArrayList aircraft;
     public static void init () {
          aircraft = new ArrayList(5);
          loadAircraft(aircraft);
     //opens up another sub group while the user
     //entered 1 as his/her option in the SetupSystem
     //menu
     public static void Setup () {
          //this will create a string that is going to be displayed
          //in the input dialog box
          String menu = " Please select an option: \n"
                         +"----------------------------\n"
                         +"1) Add New Aircraft\n"
                         +"2) Edit Existing Aircraft\n"
                         +"3) List Aircraft\n"
                         +"4) Delete Existing Aircraft\n"
                         +"5) Save\n"
                         +"6) Return to Main Menu\n\n"
                         +" Enter a number between 1-6\n";
          //declare a field named option for selection through menu
          int option = 0;
          //continue the loop until the user inputs the number 6
          do {
               //error handling for the input from the menu
               //if the input is not integer the error is caught and
               //reassigning option to be 0
               try {
                    option = Integer.parseInt(JOptionPane.showInputDialog(null, menu,
                              "Setup Aircraft", JOptionPane.QUESTION_MESSAGE));
               catch (NumberFormatException e) {
                    option = 0;
               //determine which option the user has chosen
               //and enters the respective section
               switch (option) {
                    case 1: add(aircraft);
                              break;
                    case 2: edit(aircraft);
                              break;
                    case 3: list(aircraft);
                              break;
                    case 4: //delete(aircraft);
                              break;
                    case 5: save(aircraft);
                              break;
                    case 6:     return;
                    default: JOptionPane.showMessageDialog(null, "Please enter a number between 1-6",
                              "Alert", JOptionPane.ERROR_MESSAGE);
                              option = 0;
          while (true);
     public static void add (ArrayList aircraft) {
          String type = "";
          int first = 0;
          int business = 0;
          int economy = 0;
          do {
               try {
                    type = JOptionPane.showInputDialog(null,"Enter Aircraft Type", "Prompt for Type",
                    JOptionPane.QUESTION_MESSAGE);
                    try {
                         if(aircraft.contains(type)) {
                              JOptionPane.showMessageDialog(null, type + " already exist!",
                              "Error", JOptionPane.ERROR_MESSAGE);
                              type = "-100";
                    catch (Exception e) {}
                    if (type=="-100");
                    else if (type.length()==0) {
                         JOptionPane.showMessageDialog(null, "Please enter an aircraft type",
                         "Error", JOptionPane.ERROR_MESSAGE);
                    else if (!(type.startsWith("-",3))) {
                         JOptionPane.showMessageDialog(null, "Please enter the aircraft type with XXX-XXX format where X is integer.",
                         "Error", JOptionPane.ERROR_MESSAGE);
                         type = "0";
               //catch the input error that the user has produces.
               catch (Exception e) {
                    return;
          while (!(type.startsWith("-",3)));
          //try to ask the user for the passenger's name and if the name field contains
          //no characters at all repeat the prompt for name field until the user presses
          //Cancel.
          try {
               first = Integer.parseInt(JOptionPane.showInputDialog(null, "Enter First Class Capacity",
               "Prompt for Capacity", JOptionPane.QUESTION_MESSAGE));
          catch (Exception e) {
               String error = "For input string:";
               if (e.getMessage() == "null") {
                    return;
               else if (e.getMessage().startsWith(error)) {
                    JOptionPane.showMessageDialog(null, "Please enter only numbers",
                    "Error", JOptionPane.ERROR_MESSAGE);
          try {
               business = Integer.parseInt(JOptionPane.showInputDialog(null, "Enter Business Class Capacity",
               "Prompt for Capacity", JOptionPane.QUESTION_MESSAGE));
          catch (Exception e) {
               String error = "For input string:";
               if (e.getMessage() == "null") {
                    return;
               else if (e.getMessage().startsWith(error)) {
                    JOptionPane.showMessageDialog(null, "Please enter only numbers",
                    "Error", JOptionPane.ERROR_MESSAGE);
          try {
               economy = Integer.parseInt(JOptionPane.showInputDialog(null, "Enter Economy Class Capacity",
               "Prompt for Capacity", JOptionPane.QUESTION_MESSAGE));
          catch (Exception e) {
               String error = "For input string:";
               if (e.getMessage() == "null") {
                    return;
               else if (e.getMessage().startsWith(error)) {
                    JOptionPane.showMessageDialog(null, "Please enter only numbers",
                    "Error", JOptionPane.ERROR_MESSAGE);
          Aircraft newAircraft = new Aircraft (type, first, business, economy);
          aircraft.add(newAircraft);
          JOptionPane.showMessageDialog(null, "Aircraft Sucessfully Added",
          "Successful", JOptionPane.INFORMATION_MESSAGE);
     public static void edit (ArrayList aircraft) {
          String type = "";
          int first = 0;
          int business = 0;
          int economy = 0;
          do {
               try {
                    type = JOptionPane.showInputDialog(null, "Enter Aircraft Type to Edit",
                    "Prompt for Type", JOptionPane.QUESTION_MESSAGE);
                    if (type.length()==0) {
                         JOptionPane.showMessageDialog(null,"Please enter an aircraft type",
                         "Error",JOptionPane.ERROR_MESSAGE);
                    else if (!(type.startsWith("-",3))) {
                         JOptionPane.showMessageDialog(null, "Please enter the aircraft type with XXX-XXX format where X is integer.",
                         "Error", JOptionPane.ERROR_MESSAGE);
                         type = "0";
               catch (Exception e) {
                    return;
          while (!(type.startsWith("-",3)));
          try {
               int edited = aircraft.indexOf(new UniqueAircraft(type));
               Aircraft craft = (Aircraft)aircraft.get(edited);
               try {
                    first = Integer.parseInt(JOptionPane.showInputDialog(null, "Enter First Class Capacity",
                    "Prompt for Capacity", JOptionPane.QUESTION_MESSAGE));
               catch (Exception e) {
                    String error = "For input string:";
                    if (e.getMessage() == "null") {
                         return;
                    else if (e.getMessage().startsWith(error)) {
                         JOptionPane.showMessageDialog(null, "Please enter only numbers",
                         "Error", JOptionPane.ERROR_MESSAGE);
               try {
                    business = Integer.parseInt(JOptionPane.showInputDialog(null, "Enter Business Class Capacity",
                    "Prompt for Capacity", JOptionPane.QUESTION_MESSAGE));
               catch (Exception e) {
                    String error = "For input string:";
                    if (e.getMessage() == "null") {
                         return;
                    else if (e.getMessage().startsWith(error)) {
                         JOptionPane.showMessageDialog(null, "Please enter only numbers",
                         "Error", JOptionPane.ERROR_MESSAGE);
               try {
                    economy = Integer.parseInt(JOptionPane.showInputDialog(null, "Enter Economy Class Capacity",
                    "Prompt for Capacity", JOptionPane.QUESTION_MESSAGE));
               catch (Exception e) {
                    String error = "For input string:";
                    if (e.getMessage() == "null") {
                         return;
                    else if (e.getMessage().startsWith(error)) {
                         JOptionPane.showMessageDialog(null, "Please enter only numbers",
                         "Error", JOptionPane.ERROR_MESSAGE);
               Aircraft newAircraft = new Aircraft (type, first, business, economy);
               aircraft.add(newAircraft);
               aircraft.add(newAircraft);
               JOptionPane.showMessageDialog(null, "Successfully edited aircraft\n"+type+" to capacities\n"
               +"First: "+first+"\n"+"Business: "+business+"\n"+"Economy: "+economy,
               "Successful", JOptionPane.INFORMATION_MESSAGE);
          catch (Exception e) {
               JOptionPane.showMessageDialog(null,e.getMessage(),"Error",JOptionPane.ERROR_MESSAGE);
     public static void list (ArrayList aircraft) {
          JOptionPane.showMessageDialog(null, aircraft.size()+" aircraft found", "Found",JOptionPane.INFORMATION_MESSAGE);
          Object[] aircrafts;
          aircrafts = aircraft.toArray();
          JOptionPane.showMessageDialog(null, aircrafts);
     public static void save (ArrayList aircraft) {
          try {
               FileOutputStream fileout = new FileOutputStream(".\\Data\\Aircraft.bin");
               ObjectOutputStream objectout = new ObjectOutputStream(fileout);
               Object[] aircrafts;
               aircrafts = aircraft.toArray();
               objectout.writeObject(aircrafts);
               objectout.close();
               fileout.close();
               JOptionPane.showMessageDialog(null,aircraft.size()+" aircrafts saved", "Sucessful", JOptionPane.INFORMATION_MESSAGE);
          catch (IOException e) {
               JOptionPane.showMessageDialog(null,e.getMessage(),"Error",JOptionPane.ERROR_MESSAGE);
     public static void loadAircraft (ArrayList aircraft) {
          try {
               FileInputStream filein = new FileInputStream(".\\Data\\Aircraft.bin");
               ObjectInputStream objectin = new ObjectInputStream(filein);
               Aircraft craft = null;
               while ((craft=(Aircraft)objectin.readObject())!=null) {
                    aircraft.add(craft);
               objectin.close();
               filein.close();
          catch (Exception e) {}
Thanks for your help...^^

This class is the initialisation of the Aircraft
file...this stores the information of a particular
flight and the number of seats (first class, business
class, and economy class).
I want it to store the data as a 2d array that stores
both string and int...but then i couldnt find a way of
implementing the code.How about creating another class for this data instead of a two-dimensional array entry? If I understoof you correctly, these are "Flight" objects, with a destination (String) and a number of seats available(int).
How about simply creating those and adding them to a list?
You could further enhance that class with a passengers list...

Similar Messages

  • How can I get a list of IP's that have got access to my account I have a court summons and the information could only have been gathered from my Icloud account. Apple cant or wont help me. Urgent please have to go to court tomorrow.

    Need some urgent help please.
    I have a court summons for some information that has been taken from my Icloud account.
    I believe my ex employer has hired someone to hack into my account. They have had my laptop inspected by a forensic company. Orginally they did not know what the five emails I sent myself were about. Now they do. I believe they have hacked my Icloud account. I have asked Apple to help but they are refusing is there any way I can find out please feel free to email me [email protected] Thanks have to go to court tomorrow morning.

    It sounds like you really might want to consider seeking legal advice for this matter.

  • DEAL OR NO DEAL HELP THIS IS URGENT PLEASE HELP ME!!!!!

    i have a project due in two days and i must create a deal or no deal game in java the following is the code i have currently created i am not very advanced so this is where i am at so far:
    // The "DealorNoDeal" class.
    import java.awt.*;
    import hsa.Console;
    import java.util.Random;
    public class DealorNoDeal
        static Console c;
        public static void main (String[] args)
            c = new Console (30, 110, 15, "DEAL OR NO DEAL");
            //setSize(500,500);
            double[] CasesValues = {.01, 1, 5, 10, 25, 50, 75, 100, 200, 300, 400, 500, 750, 1000, 5000, 10000, 25000, 50000, 75000, 100000, 200000, 300000, 400000, 500000, 750000, 1000000};
            double[] Case = new double [26];
            int number = 0, Choosen, Remove = 0, Offer = 0;
            double PlayerCase;
            Random generator = new Random ();
            boolean Picked = false;
            char Deal = ' ';
            boolean Not = false;
            String name;
            // USER ENTERS THEIR NAME
            c.println ("Please enter your name: ");
            name = c.readString ();
            c.println (" ");
            // THIS PUTS THE NUMBERS IN THEIR CASES
            for (int i = 1 ; i < 26 ; i++)
                number = generator.nextInt (26);
                Case = CasesValues [number];
    for (int i = 0 ; i < 13 ; i++)
    c.println (CasesValues [i] + "\t\t" + CasesValues [i + 13]);
    // THE USER CHOOSES THEIR CASE
    c.println ("Please Pick Your Case");
    Choosen = c.readInt ();
    PlayerCase = Case [Choosen];
    c.clear ();
    // THE USER PICKS 6 CASES TO REMOVE
    for (int x = 1 ; x < 7 ; x++)
    c.print ("Please Choose Case To Remove: ");
    Remove = c.readInt ();
    for (int i = 1 ; i < 26 ; i++)
    if (Remove == i)
    c.clear ();
    c.println ("You Picked Case " + Remove + " That had a value of " + Case [i]);
    Case [i] = 0;
    c.println ();
    c.print ("Case Numbers Picked: ");
    for (int i = 1 ; i < 26 ; i++)
    if (Case [i] == 0)
    c.print (" " + i);
    c.println ();
    // CALCULATES AND MAKES OFFER
    for (int i = 1 ; i < 26 ; i++)
    Offer += Case [i];
    Offer = Offer / 19;
    c.clear ();
    c.println ("The Offer is: " + Offer);
    c.println ("DO YOU ACCPET (Y/N)");
    Deal = c.readChar ();
    if (Deal == 'Y' || Deal == 'y')
    c.clear ();
    c.println ("CONGRATS, YOU LEAVE WITH " + Offer + "DOLLARS");
    else if (Deal == 'N' || Deal == 'n')
    c.println ("ALRIGHT NOW YOU MUST OPEN 5 CASES");
    // THE USER PICKS 5 CASES TO REMOVE
    for (int x = 1 ; x < 6 ; x++)
    c.print ("Please Choose Case To Remove: ");
    Remove = c.readInt ();
    for (int i = 1 ; i < 26 ; i++)
    if (Remove == i)
    c.clear ();
    c.println ("You Picked Case " + Remove + " That had a value of " + Case [i]);
    Case [i] = 0;
    c.println ();
    c.print ("Case Numbers Picked: ");
    for (int i = 1 ; i < 26 ; i++)
    if (Case [i] == 0)
    c.print (" " + i);
    c.println ();
    // CALCULATES AND MAKES OFFER
    for (int i = 1 ; i < 26 ; i++)
    Offer += Case [i];
    Offer = Offer / 14;
    c.clear ();
    c.println ("The Offer is: " + Offer);
    c.println ("DO YOU ACCPET (Y/N)");
    Deal = c.readChar ();
    if (Deal == 'Y' || Deal == 'y')
    c.clear ();
    c.println ("CONGRATS, YOU LEAVE WITH " + Offer + "DOLLARS");
    else if (Deal == 'N' || Deal == 'n')
    c.println ("ALRIGHT WE WILL CONTINUE TO OPEN CASES");
    // THE USER PICKS 4 CASES TO REMOVE
    for (int x = 1 ; x < 5 ; x++)
    c.print ("Please Choose Case To Remove: ");
    Remove = c.readInt ();
    for (int i = 1 ; i < 26 ; i++)
    if (Remove == i)
    c.clear ();
    c.println ("You Picked Case " + Remove + " That had a value of " + Case [i]);
    Case [i] = 0;
    c.println ();
    c.print ("Case Numbers Picked: ");
    for (int i = 1 ; i < 26 ; i++)
    if (Case [i] == 0)
    c.print (" " + i);
    c.println ();
    // CALCULATES AND MAKES OFFER
    for (int i = 1 ; i < 26 ; i++)
    Offer += Case [i];
    Offer = Offer / 10;
    c.clear ();
    c.println ("The Offer is: " + Offer);
    c.println ("DO YOU ACCPET (Y/N)");
    Deal = c.readChar ();
    if (Deal == 'Y' || Deal == 'y')
    c.clear ();
    c.println ("CONGRATS, YOU LEAVE WITH " + Offer + "DOLLARS");
    else if (Deal == 'N' || Deal == 'n')
    c.println ("ALRIGHT WE WILL CONTINUE BY OPENING 3 CASES");
    // THE USER PICKS 3 CASES TO REMOVE
    for (int x = 1 ; x < 4 ; x++)
    c.print ("Please Choose Case To Remove: ");
    Remove = c.readInt ();
    for (int i = 1 ; i < 26 ; i++)
    if (Remove == i)
    c.clear ();
    c.println ("You Picked Case " + Remove + " That had a value of " + Case [i]);
    Case [i] = 0;
    c.println ();
    c.print ("Case Numbers Picked: ");
    for (int i = 1 ; i < 26 ; i++)
    if (Case [i] == 0)
    c.print (" " + i);
    c.println ();
    // CALCULATES AND MAKES OFFER
    for (int i = 1 ; i < 26 ; i++)
    Offer += Case [i];
    Offer = Offer / 7;
    c.clear ();
    c.println ("The Offer is: " + Offer);
    c.println ("DO YOU ACCPET (Y/N)");
    Deal = c.readChar ();
    if (Deal == 'Y' || Deal == 'y')
    c.clear ();
    c.println ("CONGRATS, YOU LEAVE WITH " + Offer + "DOLLARS");
    else if (Deal == 'N' || Deal == 'n')
    c.println ("ALRIGHT," + name + "YOU MUST CHOOSE 2 CASES TO OPEN NOW");
    // THE USER PICKS 2 CASES TO REMOVE
    for (int x = 1 ; x < 3 ; x++)
    c.print ("Please Choose Case To Remove: ");
    Remove = c.readInt ();
    for (int i = 1 ; i < 26 ; i++)
    if (Remove == i)
    c.clear ();
    c.println ("You Picked Case " + Remove + " That had a value of " + Case [i]);
    Case [i] = 0;
    c.println ();
    c.print ("Case Numbers Picked: ");
    for (int i = 1 ; i < 26 ; i++)
    if (Case [i] == 0)
    c.print (" " + i);
    c.println ();
    // CALCULATES AND MAKES OFFER
    for (int i = 1 ; i < 26 ; i++)
    Offer += Case [i];
    Offer = Offer / 5;
    c.clear ();
    c.println ("The Offer is: " + Offer);
    c.println ("DO YOU ACCPET (Y/N)");
    Deal = c.readChar ();
    if (Deal == 'Y' || Deal == 'y')
    c.clear ();
    c.println ("CONGRATS, YOU LEAVE WITH " + Offer + "DOLLARS");
    else if (Deal == 'N' || Deal == 'n')
    c.println ("ALRIGHT," + name + "YOU MUST CHOOSE 1 CASE TO OPEN NOW");
    // THE USER PICKS 1 CASES TO REMOVE
    for (int x = 1 ; x < 2 ; x++)
    c.print ("Please Choose Case To Remove: ");
    Remove = c.readInt ();
    for (int i = 1 ; i < 26 ; i++)
    if (Remove == i)
    c.clear ();
    c.println ("You Picked Case " + Remove + " That had a value of " + Case [i]);
    Case [i] = 0;
    c.println ();
    c.print ("Case Numbers Picked: ");
    for (int i = 1 ; i < 26 ; i++)
    if (Case [i] == 0)
    c.print (" " + i);
    c.println ();
    // CALCULATES AND MAKES OFFER
    for (int i = 1 ; i < 26 ; i++)
    Offer += Case [i];
    Offer = Offer / 4;
    c.clear ();
    c.println ("The Offer is: " + Offer);
    c.println ("DO YOU ACCPET (Y/N)");
    Deal = c.readChar ();
    if (Deal == 'Y' || Deal == 'y')
    c.clear ();
    c.println ("CONGRATS, YOU LEAVE WITH " + Offer + "DOLLARS");
    else if (Deal == 'N' || Deal == 'n')
    c.println ("ALRIGHT," + name + "YOU MUST CHOOSE 1 CASE TO OPEN NOW");
    // THE USER PICKS 1 CASES TO REMOVE
    for (int x = 1 ; x < 2 ; x++)
    c.print ("Please Choose Case To Remove: ");
    Remove = c.readInt ();
    for (int i = 1 ; i < 26 ; i++)
    if (Remove == i)
    c.clear ();
    c.println ("You Picked Case " + Remove + " That had a value of " + Case [i]);
    Case [i] = 0;
    c.println ();
    c.print ("Case Numbers Picked: ");
    for (int i = 1 ; i < 26 ; i++)
    if (Case [i] == 0)
    c.print (" " + i);
    c.println ();
    // CALCULATES AND MAKES OFFER
    for (int i = 1 ; i < 26 ; i++)
    Offer += Case [i];
    Offer = Offer / 3;
    c.clear ();
    c.println ("The Offer is: " + Offer);
    c.println ("DO YOU ACCPET (Y/N)");
    Deal = c.readChar ();
    if (Deal == 'Y' || Deal == 'y')
    c.clear ();
    c.println ("CONGRATS, YOU LEAVE WITH " + Offer + "DOLLARS");
    else if (Deal == 'N' || Deal == 'n')
    c.println ("ALRIGHT," + name + "YOU MUST CHOOSE 1 CASE TO OPEN NOW");
    // THE USER PICKS 1 CASES TO REMOVE
    for (int x = 1 ; x < 2 ; x++)
    c.print ("Please Choose Case To Remove: ");
    Remove = c.readInt ();
    for (int i = 1 ; i < 26 ; i++)
    if (Remove == i)
    c.clear ();
    c.println ("You Picked Case " + Remove + " That had a value of " + Case [i]);
    Case [i] = 0;
    c.println ();
    c.print ("Case Numbers Picked: ");
    for (int i = 1 ; i < 26 ; i++)
    if (Case [i] == 0)
    c.print (" " + i);
    c.println ();
    // CALCULATES AND MAKES OFFER
    for (int i = 1 ; i < 26 ; i++)
    Offer += Case [i];
    Offer = Offer / 2;
    c.clear ();
    c.println ("The Offer is: " + Offer);
    c.println ("DO YOU ACCPET (Y/N)");
    Deal = c.readChar ();
    if (Deal == 'Y' || Deal == 'y')
    c.clear ();
    c.println ("CONGRATS, YOU LEAVE WITH " + Offer + "DOLLARS");
    else if (Deal == 'N' || Deal == 'n')
    c.println ("NOW ITS TIME TO OPEN ONE MORE CASE");
    // THE USER PICKS 1 CASES TO REMOVE
    for (int x = 1 ; x < 2 ; x++)
    c.print ("Please Choose Case To Remove: ");
    Remove = c.readInt ();
    for (int i = 1 ; i < 26 ; i++)
    if (Remove == i)
    c.clear ();
    c.println ("You Picked Case " + Remove + " That had a value of " + Case [i]);
    Case [i] = 0;
    c.println ();
    c.print ("Case Numbers Picked: ");
    for (int i = 1 ; i < 26 ; i++)
    if (Case [i] == 0)
    c.print (" " + i);
    c.println ();
    // CALCULATES AND MAKES OFFER
    for (int i = 1 ; i < 26 ; i++)
    Offer += Case [i];
    Offer = Offer / 2;
    c.clear ();
    c.println ("The Offer is: " + Offer);
    c.println ("DO YOU ACCPET (Y/N)");
    Deal = c.readChar ();
    if (Deal == 'Y' || Deal == 'y')
    c.clear ();
    c.println ("CONGRATS, YOU LEAVE WITH " + Offer + "DOLLARS");
    else if (Deal == 'N' || Deal == 'n')
    c.println ("NOW ITS TIME TO OPEN YOUR CASE, YOUR CASE CONTAINED " + (Offer * 2) + " DOLLARS");
    i would really appreciate it if you could show me how to tell the player when they have already chose a case and not let them choose it again and if possible have all the values display and eliminate the values as they the cases are opened my e-mail is [email protected] if you can e-mail there or add me on msn it would be really appreciated also for future reference thanks

    Why is everybody on this thread so violent.Nobody was violent.
    Just to address my first posts.
    1) The subject line is very annoying
    2) Asking for people to email you is not on
    3) The code is crap. It's unbearable lengthy and the more I looked at it the more I cringed. As you yourself noted in your reply more methods would be a good start. Even if hero were to get the program in it's current form to work then as a grade it gets no better than a D and possibly an F anyway.
    So while I think encouragement is fine and noble there are sometimes you have to call a spade a spade. The OP (_hero_) if he wants help here needs to be prepared to interact on the forum in a communally acceptable fashion (see 1 and 2) and to start from scratch with his code (see 3). While this may not be what the OP wanted to hear playing pollyanna about it is counter-productive.
    All I did was give my advice to the guy and now IM
    getting torn to pieces by prometheuzzzzzzz and
    marcrules.
    Look:
    1) I taught myself Java and I didn't learn the
    conventions properly (at all).
    2) I can't indent code directly in the java forum
    message editor.
    3) When I write my posts I often dont test them
    because they're pseudo-code so they dont need to be
    made in Eclipse or JCreator or w/e.There is a lot of whining going on here. Just take the advice given for what it is worth. Learn conventions. Start indenting. Stop using an IDE (for now).
    Above all stop taking it so personally. If you post code that is crap on this site more often then not someone will point it out. Subtly or un-subtly as the case may be.
    4) Stop being so violent towards people when they're
    asking for helpAgain see my previous points. Nobody was violent to anyone. Further the OP needs a wakeup call.
    >
    Does that explain why i code as i do?Not really.

  • Need Help on ERMS(Urgent Please)

    Hi CRM Experts,
    Please help me on following Queris.
    1)can we place incoming email into categories/queues/pools based on email address, keywords, and/or rules?
    2)allow email to be manually moved between one queue and another?
    3)ability to assign multiple age thresholds to categories as a way of providing service level goals?
    4)can agent able to manually route the Email to another user?
    5)ability to define how long the user can hold the email without activity before returning it to the Queue?
    6)can we allow agents to manually pull any email from the Queue(as long they have been granted access)?
    7)Ability to perform a "bulk-resolution" or develop a relationship between the emails so that only one instance needs to be resolved?
    Please provide me solutions for above mentioned.
    Points will be rewarded.
    Thanks in Advance
    Sree

    Hi and Welcome to the Forums!
    Wow -- I've never seen that screen. Not at all sure what it even means. But, here's a process that I once found for recovering a bricked device...I've never had to use it, so I can't vouch for it's correctness...but at this point, what have you got to lose?
    http://adlen45.activeboard.com/index.spark?forumID=123568&p=3&topicID=18834966
    Hope it helps.
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • I really need help, it's urgent, PLEASE!

    I got a Blackberry for Christmas, and of course I immediately tried to find out about applications. So, I installed "App World". When I started putting themes, applications, etc.. I received a message saying that I would exceed the space limit and that if that happened, I would have to pay € 0.50 per day. I did not realize this and have not given much attention, and I even deleted the message.This week I realized that I've lost more than € 20 in less than a month becauseof this! What can I do to STOP this?? PLEASE HELP ME! Thank you for your attention
    Solved!
    Go to Solution.

    lauraprovi wrote:
    What can I do to STOP this?? PLEASE HELP ME! Thank you for your attention
    The answer lies in your own hand... stop downloading piles of apps and themes.
    Those you've downloaded that consume mass quantities of data... delete them or at least close or exit those apps so they are not using data when closed.
    If you need more specific answer, please be specific about which apps you've down loaded and installed.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Hey , this is Satvir and my personal hotspot option is missing in my ipad settings please help it's urgent , please tell me what should I do

    my personal hotspot option is missing from the settings  , please help me out
    <Email Edited by Host>

    It's a really bad idea to post your email address - it's an invitation to spam - and I've asked the Hosts to remove it.

  • Help with project management, please?

    Hello all!
    It's been about a year since I've last visited this forum and I'm lost .. the format must have changed?
    Here's what I'm trying to remember (it was a simple task)
    I have a project that I would like to break into smaller segments for the sake of managing it.
    I recall having selected a portion of my project and either rendering it or exporting it to a file.
    There was also some "switch" that should be selected to maintain maximum resolution and no
    compression.
    When several portions are rendered/exported in this fashion, it becomes an easier task to
    pull the pieces into back into a time line for the sake a rendering the completed work to
    be burned onto a DVD.
    Does anyone remember how this process was done?  Was it "Render"?  "Export"?  What
    was the selection that maintains the hi-resolution?
    (I’m using Premiere Elements)
    Thank you!
    --Tom Nickel

    Hunt,
    Thank you copiously for the information!
    I had
    done this before, but I've forgotten how!
    Thanks again,
    --Tom Nickel
    Tom,
     
    Welcome to the "new & improved" Adobe forum. Don't
    worry, I've been around
    these for many more years, than my
    Profile indicates, and still cannot
    find my way around this new
    one.
     
    Now, the process that you
    describe is to create "mini-Projects," edit them
    >
    completely, and then Export to DV-AVI Type II files w/ 48KHz 16-bit
    PCM/WAV Audio. These can then be Imported into "master
    Project," and
    assembled into a final.
    >
     
    Just do your full editing, as things like
    Transitions will be part of the
    these DV-AVI's and to get rid
    of them, is a lot of work.
     
    Good luck,
     
    Hunt
    >

  • Need help in query-Urgent Please

    Hi I have the following requrement.
    select x from t.
    1
    2
    3
    4
    I have to insert all the distict combinations in two columns of another table. the oytpu shd be like below
    select * from b;
    1 2
    1 3
    1 4
    2 1
    2 3
    2 4
    3 1
    3 2
    3 4
    4 1
    4 2
    4 3
    I can write a query like below.
    create table b as select t1.x,t2.x from a t1, a t2 where t1.x<>t2.x;
    But the problem is my table Has 250 million records or even more than that.
    Pls suggest the most efficient way.

    SQL> WITH yourtable AS
      2   (
      3     SELECT 1 x FROM dual UNION ALL
      4     SELECT 2 x FROM dual UNION ALL
      5     SELECT 3 x FROM dual UNION ALL
      6     SELECT 4 x FROM dual
      7   )
      8  SELECT a.x
      9       , b.x
    10  FROM   yourtable a
    11     ,   yourtable b
    12  WHERE a.x != b.x
    13  ORDER BY 1, 2
    14  /
             X          X
             1          2
             1          3
             1          4
             2          1
             2          3
             2          4
             3          1
             3          2
             3          4
             4          1
             4          2
             4          3
    12 rows selected.
    SQL>

  • Urgent please/ Window size + avoid saving

    Hi I have 2 problems I hope you can help me with urgently
    please:
    1- I have the attached code in it there is a link(summary)
    which once clicked, a new HTML window will open this window is of
    the same size as the parent I need to make it smaller and appear in
    the center of the parent window. I have played withthe 800X600
    dimentios in the code but no use? Any idea
    2- In the the new window( which will appear once clicking the
    link summary), I need to make the 'save page as' and the 'send
    link' in the file menu of the browser dim (inactive) as I do not
    the user to save the content of this window ? any idea how to stop
    the user from saving the content knowing that the content is a HTML
    file that has a .swf file with its control buttons?
    Appreciate a fast help
    Thanks

    Hello,
    For 1, see this link:
    http://www.peachpit.com/articles/article.aspx?p=31661&seqNum=2
    The tutorial uses an image link to open the window but you
    can easily use
    text instead.
    For 2, during the tutorial in the link above you'll see how
    to not show the
    menu bar in the popup window when you get to using DW's Open
    Browser
    Behavior.
    It may deter the novice user, but anyone who wants to save
    the content can
    do so easily. Firefox can be set to show the menu regardless
    of the script
    telling it not to, or anyone can simply view the source code
    and copy the
    URL for the popup and paste it into a new window, complete
    with menus.
    Of course, there are also Firefox extensions that download
    any Flash
    displayed on a page including in a popup window.
    In other words, if you don't want people saving it, don't put
    it on the web.
    Take care,
    Tim
    "fsurrey" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hi I have 2 problems I hope you can help me with
    urgently please:
    >
    > 1- I have the attached code in it there is a
    link(summary) which once
    > clicked,
    > a new HTML window will open this window is of the same
    size as the parent
    > I
    > need to make it smaller and appear in the center of the
    parent window. I
    > have
    > played withthe 800X600 dimentios in the code but no use?
    Any idea
    >
    > 2- In the the new window( which will appear once
    clicking the link
    > summary),
    > I need to make the 'save page as' and the 'send link' in
    the file menu of
    > the
    > browser dim (inactive) as I do not the user to save the
    content of this
    > window
    > ? any idea how to stop the user from saving the content
    knowing that the
    > content is a HTML file that has a .swf file with its
    control buttons?
    >
    > Appreciate a fast help
    > Thanks
    >
    > <!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    > "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    > <html xmlns="
    http://www.w3.org/1999/xhtml"><head>
    >
    >
    >
    >
    > <meta http-equiv="Content-Type" content="text/html;
    > charset=iso-8859-1"><title>Tutorials_A
    View:Different Web
    > Designers</title>
    >
    > <style type="text/css">
    > <!--
    > .style25 {font-family: "Times New Roman", Times, serif;
    font-size: 14px;
    > color: #108A98;}
    > .style28 {color: #108A98}
    > .style31 {
    > color: #108A98;
    > font-weight: bold;
    > font-size: 14px;
    > }
    > .style52 {font-family: "Times New Roman", Times, serif;
    font-size: 14px;
    > color: #108A98; font-weight: bold; }
    > .style54 {font-family: "Times New Roman", Times, serif;
    font-size: 12px;
    > color: #108A98; font-weight: bold; }
    > .style57 {font-size: 12px}
    > .style59 {font-size: 14px}
    > a:link {
    > text-decoration: none;
    > }
    > a:visited {
    > text-decoration: none;
    > }
    > a:hover {
    > text-decoration: underline;
    > }
    > a:active {
    > text-decoration: none;
    > }
    > .style61 {font-family: "Times New Roman", Times, serif;
    font-size: 18px;
    > color: #108A98; font-weight: bold; }
    > .style62 {
    > font-size: 16px;
    > color: #108A98;
    > font-family: "Times New Roman", Times, serif;
    > font-weight: bold;
    > }
    > -->
    > </style>
    > </head><body>
    >
    > <div align="center">
    > <table width="611" border="0" cellpadding="0"
    cellspacing="0">
    > <!--DWLayoutTable-->
    > <tbody><tr>
    > <td colspan="2" valign="top"
    >
    height="115"><!--DWLayoutEmptyCell--> </td>
    > </tr>
    > <tr>
    > <td rowspan="2" valign="top"
    >
    width="161"><!--DWLayoutEmptyCell--> </td>
    > <td class="style31" valign="top" width="450"
    height="24"><a
    > href="../../My web site/my final web site/home.html"
    > class="style28"><u>Home</u></a>
    >
    <a
    > href="../../My web site/my final web site/links.html"
    > class="style28"><u>Links</u></a>
    >
               <a
    > href="../../My web site/my final web site/About.html"
    > class="style25"><u>About
    > us</u></a>
    >
                 <a
    > href="../../My web site/my final web site/links.html"
    > class="style25"><u>Join
    > us</u></a>
    >
                <a
    > href="../../My web site/my final web
    site/contactus.html"
    > class="style31"> <u>Contact
    us</u> </a></td>
    > </tr>
    > <tr>
    > <td valign="top" align="left"
    height="511"><table width="449"
    > border="0" height="437">
    > <tbody><tr>
    > <td valign="top" align="left" height="433"><p
    align="left"
    >
    class="style25">          &nbs
    > p;   <span
    class="style61">  </span> <br
    />
    >
    >
    <strong>          </strong></p
    >>
    > <p
    >
    class="style54">          &nbs
    >
    p;             
    >
                 &n
    > bsp;   </p>
    > <p class="style52"><span
    >
    class="style57">          &nbs
    >
    p;             
    >
                 &n
    > bsp;  </span><br />
    > <br />
    >
    >
                 &n
    >
    bsp;      <span
    >
    class="style57">          &nbs
    > p;     
      . <a href="try/try.htm"
    > target="_blank" class="style31"
    onclick="openNewWin('../../The
    > Tutorials/Summary/Summary/Summary.htm',800,600);return
    > false;">Summary</a></span></p>
    > <p
    >
    class="style25"><strong>         &n
    >
    bsp;         <span
    >
    class="style57">          &nbs
    >
    p;      
     </span></strong><br />
    >
    >
                 &n
    >
    bsp;          
    </p></td>
    > </tr>
    > </tbody></table></td>
    > </tr>
    > </tbody>
    > </table>
    > </div>
    >
    > </body></html>
    >

  • Please help me, HSC major project, urgent

    Hi,
    I am doing an interactive storybook for a HSC project. I am trying to code for it and it is telling me two error messages. These are 1120: Access of undefined property. I tried to insert a screenshot but it wont let me in this question. Maybe I message individual people the screenshot ?
    How do I fix this error message ?
    here is my code:
    stop();
    Page1_btn.addEventListener(MouseEvent.CLICK,turnpage2);
    function turnpage1 (evt:MouseEvent):void {
      screen_mov.gotoAndPlay ("Page2");
      page1_btn.visible = false;
    So the pages are numbered starting at 1, 2,3 3, 4, 5, ..............................
    Screen_mov is the movie clip for the project containing all the pages/ graphics
    and page1_btn is the button for page 1
    PLEASE HELP THIS IS URGENT !

    Hi,
    I am having further troubles. In my storybook on the first page all the buttons are appearing, I do not want this. How do I code to fix that, the only button I want on the first page is "page1_btn"
    will paste my coding into here, and could you please tell me what to do to fix this ?
    page2_btn.visible= false;
    p3_first_btn.visible= false;
    page1_btn.addEventListener(MouseEvent.CLICK,turnpage2);
    function turnpage2 (evt:MouseEvent):void {
      screen_movie.gotoAndPlay ("page2");
      page1_btn.visible = false;
    page2_btn.visible= true; 
    page2_btn.addEventListener(MouseEvent.CLICK,turnpage3);
    function turnpage3 (evt:MouseEvent):void {
    screen_movie.gotoAndPlay ("page3");
    page2_btn.visible= false;
    p3_first_btn.visible= true;
    p3_first_btn.addEventListener(MouseEvent.CLICK,turnpage3a);
    function turnpage3a (evt:MouseEvent):void {
    screen_movie.gotoAndPlay ("page3a");
    p3_first_btn.visible= false;
    And, also the reason why I am setting the buttons to visible= true; at the start and visible= false; at the end is because I can only have one button for each page.
    Please help someone,
    Regards,
    Adam

  • Kernel panics, message saying "You need to restart your computer.Hold down the Power..." I am in the middle of HSC very URGENT please help!! Mac keeps needing to restart!!

    Kernel panics, message saying "You need to restart your computer.Hold down the Power..." I am in the middle of HSC very URGENT please help!! Mac keeps needing to restart!!
    I looked in console and its saying that it may be because of Sophos Anti-Virus, i deleted and uninstalled all traces of Sophos but looked in console and this is some of the lines coming up:
    26/09/13 10:11:17.945 PM com.apple.launchd: (com.sophos.intercheck[6460]) posix_spawn("/Library/Sophos Anti-Virus/InterCheck.app/Contents/MacOS/InterCheck", ...): No such file or directory
    26/09/13 10:11:17.945 PM com.apple.launchd: (com.sophos.autoupdate[6461]) posix_spawn("/Library/Sophos Anti-Virus/SophosAutoUpdate.app/Contents/MacOS/SophosAutoUpdate", ...): No such file or directory
    26/09/13 10:11:17.945 PM com.apple.launchd: (com.sophos.notification[6462]) posix_spawn("/Library/Sophos Anti-Virus/SophosAntiVirus.app/Contents/MacOS/SophosAntiVirus", ...): No such file or directory
    26/09/13 10:11:17.946 PM com.apple.launchd: (com.sophos.intercheck[6460]) Exited with code: 1
    26/09/13 10:11:17.946 PM com.apple.launchd: (com.sophos.intercheck) Throttling respawn: Will start in 10 seconds
    26/09/13 10:11:17.946 PM com.apple.launchd: (com.sophos.autoupdate[6461]) Exited with code: 1
    26/09/13 10:11:17.946 PM com.apple.launchd: (com.sophos.autoupdate) Throttling respawn: Will start in 10 seconds
    26/09/13 10:11:17.946 PM com.apple.launchd: (com.sophos.notification[6462]) Exited with code: 1
    26/09/13 10:11:17.946 PM com.apple.launchd: (com.sophos.notification) Throttling respawn: Will start in 10 seconds
    26/09/13 10:11:18.291 PM Safari: self <TabContentView: 0x7f8d5dd1aa50>
    26/09/13 10:11:22.617 PM Safari: self <TabContentView: 0x7f8d5db7bb00>
    26/09/13 10:11:27.866 PM Safari: self <TabContentView: 0x7f8d5c331a70>
    26/09/13 10:12:19.939 PM com.apple.launchd.peruser.501: (com.sophos.uiserver[6487]) posix_spawn("/Library/Sophos Anti-Virus/SophosUIServer.app/Contents/MacOS/SophosUIServer", ...): No such file or directory
    26/09/13 10:12:19.939 PM com.apple.launchd.peruser.501: (com.sophos.uiserver[6487]) Exited with code: 1
    26/09/13 10:12:19.939 PM com.apple.launchd.peruser.501: (com.sophos.uiserver) Throttling respawn: Will start in 10 seconds"
    Looked all over computer and cant find anything of Sophos please help very urgent!

    That was all that there was in the most recent one, how long do you think it could take to fix?
    Here is the second most recent:
    Wed Sep 25 15:39:39 2013
    panic(cpu 0 caller 0xffffff80002c4794): Kernel trap at 0xffffff7f81757965, type 14=page fault, registers:
    CR0: 0x0000000080010033, CR2: 0xffffff81acc397fe, CR3: 0x000000001e2b5025, CR4: 0x00000000000606e0
    RAX: 0x000000001d31a000, RBX: 0x0000000000000000, RCX: 0x0000000000000000, RDX: 0x0000000000000000
    RSP: 0xffffff80b0dbb710, RBP: 0xffffff80b0dbb820, RSI: 0x0000000000000000, RDI: 0x0000000000000001
    R8:  0x000000000000000a, R9:  0x0000000000000378, R10: 0x0000000000000128, R11: 0x0000000000000378
    R12: 0xffffff800c626400, R13: 0x0000000000000000, R14: 0x0000000000000000, R15: 0xffffff81acc39802
    RFL: 0x0000000000010246, RIP: 0xffffff7f81757965, CS:  0x0000000000000008, SS:  0x0000000000000010
    CR2: 0xffffff81acc397fe, Error code: 0x0000000000000000, Faulting CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80b0dbb3c0 : 0xffffff8000220792
    0xffffff80b0dbb440 : 0xffffff80002c4794
    0xffffff80b0dbb5f0 : 0xffffff80002da55d
    0xffffff80b0dbb610 : 0xffffff7f81757965
    0xffffff80b0dbb820 : 0xffffff7f817667a0
    0xffffff80b0dbb840 : 0xffffff7f8173a58e
    0xffffff80b0dbb870 : 0xffffff7f8177fb6f
    0xffffff80b0dbb8a0 : 0xffffff7f81779632
    0xffffff80b0dbb8d0 : 0xffffff7f8177d7d5
    0xffffff80b0dbb900 : 0xffffff7f8177c6db
    0xffffff80b0dbb9e0 : 0xffffff7f817412b8
    0xffffff80b0dbba10 : 0xffffff7f81778684
    0xffffff80b0dbba30 : 0xffffff7f817449ce
    0xffffff80b0dbbb60 : 0xffffff7f81741a4c
    0xffffff80b0dbbbc0 : 0xffffff8000655f3e
    0xffffff80b0dbbbe0 : 0xffffff800065681a
    0xffffff80b0dbbc40 : 0xffffff8000656fbb
    0xffffff80b0dbbd80 : 0xffffff80002a3f08
    0xffffff80b0dbbe80 : 0xffffff8000223096
    0xffffff80b0dbbeb0 : 0xffffff80002148a9
    0xffffff80b0dbbf10 : 0xffffff800021bbd8
    0xffffff80b0dbbf70 : 0xffffff80002aef10
    0xffffff80b0dbbfb0 : 0xffffff80002daec3
          Kernel Extensions in backtrace:
             com.apple.driver.AppleIntelHD3000Graphics(7.3.2)[A2328231-E577-32FF-B20F-D08BDC FE9C51]@0xffffff7f81738000->0xffffff7f8179bfff
                dependency: com.apple.iokit.IOPCIFamily(2.7)[5C23D598-58B2-3204-BC03-BC3C0F00BD32]@0xffffff 7f80889000
                dependency: com.apple.iokit.IONDRVSupport(2.3.4)[7C8672C4-8B0D-3CCF-A79A-23C62E90F895]@0xff ffff7f80d2e000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.4)[D0A1F6BD-E66E-3DD8-9913-A3AB8746F422]@0 xffffff7f80cf5000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    11G63b
    Kernel version:
    Darwin Kernel Version 11.4.2: Thu Aug 23 16:25:48 PDT 2012; root:xnu-1699.32.7~1/RELEASE_X86_64
    Kernel UUID: FF3BB088-60A4-349C-92EA-CA649C698CE5
    System model name: MacBookPro8,1 (Mac-94245B3640C91C81)
    System uptime in nanoseconds: 1866666823698
    last loaded kext at 480357661446: com.apple.filesystems.smbfs          1.7.2 (addr 0xffffff7f80795000, size 241664)
    last unloaded kext at 303348424187: com.apple.driver.AppleUSBUHCI          5.1.0 (addr 0xffffff7f80af7000, size 65536)
    loaded kexts:
    com.sophos.kext.sav          8.0.14
    org.virtualbox.kext.VBoxNetAdp          4.2.16
    org.virtualbox.kext.VBoxNetFlt          4.2.16
    org.virtualbox.kext.VBoxUSB          4.2.16
    org.virtualbox.kext.VBoxDrv          4.2.16
    com.logmein.driver.LogMeInSoundDriver          1.0.2
    com.Greatdy.driver.SystemAudioCapture          1.0.0
    com.apple.filesystems.smbfs          1.7.2
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.iokit.IOBluetoothSerialManager          4.0.8f17
    com.apple.driver.AudioAUUC          1.59
    com.apple.driver.AppleHDA          2.2.5a5
    com.apple.driver.AppleMikeyDriver          2.2.5a5
    com.apple.driver.AGPM          100.12.75
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.SMCMotionSensor          3.0.2d6
    com.apple.driver.AppleSMCPDRC          5.0.0d8
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.2.3
    com.apple.driver.AppleSMCLMU          2.0.1d2
    com.apple.driver.ApplePolicyControl          3.1.33
    com.apple.driver.ACPI_SMC_PlatformPlugin          5.0.0d8
    com.apple.driver.AppleIntelHD3000Graphics          7.3.2
    com.apple.driver.AppleBacklight          170.2.2
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleUSBTCButtons          227.6
    com.apple.driver.BroadcomUSBBluetoothHCIController          4.0.8f17
    com.apple.driver.AppleUSBTCKeyboard          227.6
    com.apple.driver.AppleIRController          312
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          33
    com.apple.iokit.SCSITaskUserClient          3.2.1
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCISerialATAPI          2.0.3
    com.apple.iokit.IOAHCIBlockStorage          2.1.0
    com.apple.driver.AppleUSBHub          5.1.0
    com.apple.driver.AppleFWOHCI          4.9.0
    com.apple.driver.AirPort.Brcm4331          561.7.22
    com.apple.driver.AppleSDXC          1.2.2
    com.apple.iokit.AppleBCM5701Ethernet          3.2.4b8
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleAHCIPort          2.3.1
    com.apple.driver.AppleUSBEHCI          5.1.0
    com.apple.driver.AppleACPIButtons          1.5
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.5
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          195.0.0
    com.apple.nke.applicationfirewall          3.2.30
    com.apple.security.quarantine          1.4
    com.apple.security.TMSafetyNet          8
    com.apple.driver.AppleIntelCPUPowerManagement          195.0.0
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.driver.DspFuncLib          2.2.5a5
    com.apple.iokit.IOSurface          80.0.2
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.AppleHDAController          2.2.5a5
    com.apple.iokit.IOHDAFamily          2.2.5a5
    com.apple.iokit.IOAudioFamily          1.8.6fc18
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleGraphicsControl          3.1.33
    com.apple.driver.AppleSMC          3.1.3d10
    com.apple.driver.IOPlatformPluginLegacy          5.0.0d8
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.IOPlatformPluginFamily          5.1.1d6
    com.apple.iokit.IONDRVSupport          2.3.4
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.driver.AppleIntelSNBGraphicsFB          7.3.2
    com.apple.iokit.IOGraphicsFamily          2.3.4
    com.apple.kext.triggers          1.0
    com.apple.driver.AppleUSBBluetoothHCIController          4.0.8f17
    com.apple.iokit.IOBluetoothFamily          4.0.8f17
    com.apple.driver.AppleThunderboltDPInAdapter          1.8.5
    com.apple.driver.AppleThunderboltDPAdapterFamily          1.8.5
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.2.5
    com.apple.driver.AppleUSBMultitouch          230.5
    com.apple.iokit.IOUSBHIDDriver          5.0.0
    com.apple.driver.AppleUSBMergeNub          5.1.0
    com.apple.driver.AppleUSBComposite          5.0.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.2.1
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.2.1
    com.apple.driver.AppleThunderboltNHI          1.6.0
    com.apple.iokit.IOThunderboltFamily          2.0.3
    com.apple.iokit.IOUSBUserClient          5.0.0
    com.apple.iokit.IOFireWireFamily          4.4.8
    com.apple.iokit.IO80211Family          420.3
    com.apple.iokit.IOEthernetAVBController          1.0.1b1
    com.apple.iokit.IONetworkingFamily          2.1
    com.apple.iokit.IOAHCIFamily          2.0.8
    com.apple.iokit.IOUSBFamily          5.1.0
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.7.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          177.11
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          331.7
    com.apple.iokit.IOStorageFamily          1.7.2
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.5
    com.apple.iokit.IOPCIFamily          2.7
    com.apple.iokit.IOACPIFamily          1.4

  • Activation of new data in ODS results in errors. Urgent.please help...

    Dear experts,
    I have a problem while I load data from one ODS object into another one. I have some keyfigs which when loaded into the ODS are ok. (I mean the new data is ok) but the moment I activate the request, the keyfigures are turned automatically to zero. This peculiar performance is not observed in any of our development and certification systems. Another thing, is that the data load is an initial load and there exists nothing in the change log table as well before the load.
    Any thoughts are highly appreciated. Any SAP notes on this issue??? Please help... urgent...
    Kind Regards,
    Shravan

    Hello Prasad/Rohini,
    Thanks for helping me. Yes, I checked the update rules and they are ok. The problem is not with the update rules, I guess. I delete the data first in ODS 1 and from ODS2 I load the data into ODS1. The data load is an init update. After loading the data, before activating the request, The new data is all ok. The key figure data is all as that is guided by the corresponding update rules. The moment I activate the request, the active data is all wrong. My Question is why the table containing new data is correct and after not after activating???
    Since it is an initial update, I do not think change log should come into picture???
    Any ideas???
    Kind Regards,
    Shravan

  • Urgent please help, this program should work

    Urgent please help.
    I need to solve or I will be in big trouble.
    This program works at my home computer which is not networked.
    The hard disk was put onto another computer at another location whihc is networked. Here my program worked on Monday 14 october but since for the last two days it is not working without me changing any code. Why do I receive this error message???
    Error: 500
    Location: /myJSPs/jsp/portal-project2/processviewfiles_dir.jsp
    Internal Servlet Error:
    javax.servlet.ServletException
    at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:460)
    at jsp.portal_0002dproject2.processviewfiles_dir_1._jspService(processviewfiles_dir_1.java:162)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java)
    at org.apache.tomcat.facade.ServletHandler.doService(ServletHandler.java:574)
    at org.apache.tomcat.core.Handler.invoke(Handler.java:322)
    at org.apache.tomcat.core.Handler.service(Handler.java:235)
    at org.apache.tomcat.facade.ServletHandler.service(ServletHandler.java:485)
    at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:917)
    at org.apache.tomcat.core.ContextManager.service(ContextManager.java:833)
    at org.apache.tomcat.modules.server.Http10Interceptor.processConnection(Http10Interceptor.java:176)
    at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:494)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:516)
    at java.lang.Thread.run(Thread.java:536)
    Root cause:
    java.lang.NullPointerException
    at jsp.portal_0002dproject2.processviewfiles_dir_1._jspService(processviewfiles_dir_1.java:132)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java)
    at org.apache.tomcat.facade.ServletHandler.doService(ServletHandler.java:574)
    at org.apache.tomcat.core.Handler.invoke(Handler.java:322)
    at org.apache.tomcat.core.Handler.service(Handler.java:235)
    at org.apache.tomcat.facade.ServletHandler.service(ServletHandler.java:485)
    at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:917)
    at org.apache.tomcat.core.ContextManager.service(ContextManager.java:833)
    at org.apache.tomcat.modules.server.Http10Interceptor.processConnection(Http10Interceptor.java:176)
    at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:494)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:516)
    at java.lang.Thread.run(Thread.java:536)

    foolishmatt,
    The code is quit large.
    to understand the program I think all the code needs to be examined.
    I would need to send to you in an email.
    Here is my e-mail
    [email protected]
    if you contact me than I can send the code to you.
    Thank you in advance.

  • Urgent, Please help me in this problem.I am getting problem while installation

    I am using Windows 8 in my system. I am trying to install Sql Server in system . Everything is fine, but finally  when i click on install button i am getting the following error .
    please help me quickly. I well be thankful to you.

    Triple post meanwhile:
    http://social.msdn.microsoft.com/Forums/en-US/7fafa499-ca1e-42f7-a117-73df924d9847/urgent-please-help-me-in-this-problemi-am-getting-problem-while-installation?forum=sqlsetupandupgrade
    http://social.msdn.microsoft.com/Forums/en-US/a1c7978c-2f84-495f-a8b6-9e9fe46654d7/getting-problem-while-installing-sql-server-2012?forum=sqlsetupandupgrade
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Have a big problem with report. Very urgent please help

    I have a report rep1. When I run the report via batch thru command rwclient to create a file it failed. I got the follwoing error message:
    REP-0177: Error while running in remote server
    Job 1413 is terminated due to connection timeout.
    It does not even try for few seconds before gives this message. I ran some other batch reports whihc took 15 minutes and they were fine.
    So, I stopped running the bad report for the day thinking the report is still not dead. I ran the same rep1 next day I still get the same error message. But this time when I ran I looked at the appserver showjobs (which lists the reports that were running and that already ran). The job number is different But still it fails in 3 seconds with the job number 1413 and connection time out. Can any one tell what might be the problem.
    Any number of times I run this job I get the same job number with same error (all this is only if I run it as batch using rwclient). If I run this as online by calling it from a form it returns the results without any problems.
    Please help. Very urgent.
    Thanks in advance.
    Asha

    You might want to delete the report server .dat file and restart the server and try
    his also could be one of the issues we had seen and fixed in 9.0.2.3. Please ensure you have the latest patch applied
    Thanks
    The Oracle Reports team

  • Encrypting and Decrypting Data(Its Very Urgent, Please Help.)

    Hi,
    Can anyone tell me some idea in the below mentioned details.
    Iam creating a Function for Encrypting and Decrypting Data Values using
    DBMS_OBFUSCATION_TOOLKIT with UTL_RAW.CAST_TO_RAW by using
    Key Value as normal.
    But the problem, is it possible to have the key value more than 8.
    Its showing me error when i give the key value less than 8 or more than 8.
    Can u tell me why it happens, is that the limit of the key value or is any other way to do that.
    Its Very Urgent, Please Help.
    Thanks,
    Murali.V

    Is this what you're looking for?
    Usage Notes
    If the input data or key given to the DES3DECRYPT procedure is empty, then the procedure raises the error ORA-28231 "Invalid input to Obfuscation toolkit."
    If the input data given to the DES3DECRYPT procedure is not a multiple of 8 bytes, the procedure raises the error ORA-28232 "Invalid input size for Obfuscation toolkit." ORA-28233 is NOT applicable for the DES3DECRYPT function.
    If the key length is missing or is less than 8 bytes, then the procedure raises the error ORA-28234 "Key length too short." Note that if larger keys are used, extra bytes are ignored. So a 9-byte key will not generate an exception.
    C.

Maybe you are looking for

  • Finder opens a new window with tabs in the last closed window loaded automatically

    As the title says, I've found this happens more than a few times for some change. Maybe every time, I didn't count. Say, I closed a window with 3 tabs opened, then next time when I click finder to open a new window, I will find the 3 tabs loaded in t

  • EREC: search for branches

    hi I have logged via RECRUITER role. Now I want to create my requisition and want add for it branch.In seacrh criteria i have selected my Company. Clicked to "Start Search" but nothing. I use IDES now. how can I assign company to my other companies?

  • N96 internet settings

    Hi all. I have just update my firmware on my n96 vers30 now. but now i can only acces the net via wirless. My gps settings have gone. Im on 3uk network is there anyway i can get these settings back? I dont pretend to know everything like some people

  • Searching through various stock and selecting it,

    Hi everyone i've been stuck at the following code which enable user to do a search function using a JcomboBox and there's already information in the boxes itself so let's say user can type in APPLE and there will be APPLE selected and once user click

  • Why is Final Cut Pro X running so slow?

    Hi! I have a Mid 2012 Macbook Pro (Version OS X Mountain Lion 10.8.3, Processor 2.5 GHz Intel Core i5, Memory 4GB 1600 MHz DDR3) and I use Final Cut Pro X on my computer, however after once I downloaded its software onto my harddrive, Final Cut Pro X