BW Archiving- Need help as soon as possible

Hi,
Can Archiving on ODS be implemented using an ABAP program? If the data is loaded on to flat files and if it is required to reload it back to ODS is ABAP a better choice. If any one has worked on this issue earlier please provide me the information as soon as possible. Any input on this issue will be of great help.
Thanks,
SP

Hi sudheer,
I have gone through few of your requests to SDN network . and found out thta you have worked on  "sap bw archiving ". So, I need a small help from you . need to clear out some of my doubts with sap bw archiving issues . So could you please send me your e-mail id . so that i can be in contact with you . As i am new to SDN .
Thanking you in advance . I would appreciate your help .
or Anyone who have experience with "SAP  BW archiving " could you please send me your mail id . Thanks for your help .
Cheers,
shailu.

Similar Messages

  • HT5622 Hey Hi ! I brought iPhone 5 in Kuwait and now I'm in India now.I noticed my FaceTime option is missing. No option no settings and no data related to FaceTime . I'm very much worried about it. Need help as soon as possible.

    Hey Hi ! I brought iPhone 5 in Kuwait and now I'm in India now.I noticed my FaceTime option is missing. No option no settings and no data related to FaceTime . I'm very much worried about it. Need help as soon as possible.

    Someone could have stolen it in Kuwait...happens all the time .
    Seriously...FaceTime is banned there...there is no way to add it back to your phone...if you wanted FaceTime, you should not have purchased your phone there.
    BTW: You don't have any warranty or support for this phone in India.
    You live & you learn

  • I need help as soon as possible please hs to with arrays.

    import java.util.Random;
    public class AviarySimulator
        // Instance variables
        private Aviary aviary;
        private int numberOfDays = 0;
        private Random r;
    public void simulateDay(int amtFeed)
            //a new Day
            numberOfDays++;
            System.out.println("**************************");
            System.out.println ("Day : " + numberOfDays);
            if(!aviary.isEmpty())
                    // Ask the cage to supply its budgie object
                    Budgie theBudgie = aviary.getBudgie();
                    /* Check there really is a Bird in the cage. null means that there is no
                     * bird object assigned to the myBudgie variable in class cage.
                    if(theBudgie != null)
                       // Code moved from below.  PR
                       // Budgie gets older because a day has gone by.                     
                       theBudgie.incAge();
                       // Budgie exercises every day PR
                       theBudgie.exercise(DAILY_EXERCISE);
                        // Feed the budgie
                        // To avoid feeding nothing, check that food is given PR
                        // Also rejects negative feed!
                        if(amtFeed > 0)
                            theBudgie.eat(amtFeed);
                            System.out.println("Just been fed " + amtFeed + " grams of bird seed");
                        // Check if the budgie is still alive
                       if(theBudgie.isDead())
                            System.out.println(theBudgie.getName() + " just died...sob");
                            System.out.println("Here lies " + theBudgie.getName() + " this budgie was much loved by its " +
                                                   theBudgie.getNumEggsLaid() + " eggy ofspring");
                            aviary.removeBudgie();
                        // If alive is it overweight?
                        else if(theBudgie.isObese())
                            System.out.println(theBudgie.getName() + " is obese it needs some exercise");
                            theBudgie.exercise(10);
                        else // Budgie is alive and not overweight
                            System.out.println(theBudgie.toString());
                           // The budgie gets a day older
                           // theBudgie.incAge(); // Moved to above PR
                            // The budgie may lay an egg                   
                            if(theBudgie.layEgg(r))
                                System.out.println(theBudgie.getName() + " has just laid an egg ");
                                System.out.println("The egg has been removed from the cage for artificial incubation \n"
                                                      + "and will be adopted out after hatching");
                else  // No budgie in the cage
                   System.out.println("The cage is empty");
         * Simulate several days without food.
         * @param numDays, the length of the simulation
        public void simulateDays(int numDays)
            for(int i = 0; i < numDays; i++)
                simulateDay(0); // PR
         * Simulate several days with food.
         * @param numDays, the length of the simulation
         * @param amtFeed, the amount of budgie food in grammes
        public void simulateDays(int numDays, int gmsSeed)
            for(int i = 0; i < numDays; i++)
                simulateDay(gmsSeed);
    }This code is supposed to be compatible with this code:
    public Budgie(String name, boolean female) // Added gender PR
            // Initialise instance variables
            age = 0;
            colour = "green"; // Default colour
            canTalk = false;  // Cannot talk yet, can only go "cheep"
                              // Quotes removed PR
            budgiesWords = "cheep";
            weight = 25; // In healthy weight range
            bIsFemale = female; // PR
            water = 10;
            // Record supplied name       
            this.name = name;
         * Teaches a budgie to talk
         * @param phrase - what the budgie can say
        public void teachToTalk(String phrase)
            // Ignore an empty string
            if(phrase != "")
                // Budgie can now talk
                canTalk = true;
                budgiesWords = phrase;
         * Increments a budgie's age by a day
        public void incAge()
            age++;
         * The budgie is dead if it is too old or too fat or starved or too thirsty.
        public boolean isDead()
            return (diedOfOldAge() || diedFromOverFeeding() || isStarved() || diedOfThirst());
         * The budgie is too old if it is older than the budgie's maximum age.
        public boolean diedOfOldAge()
            return (age > MAX_AGE);
         * The budgie is too thirsty if it is has less than 10mls of water.
        public boolean diedOfThirst()
            return (water < MIN_DRINK);
         * The budgie is too heavy to live if it is more than double a
         * budgie's sensible weight limit.
        public boolean diedFromOverFeeding()
            return (weight >= TOO_FAT*2);
         * The budgie is obese if it is more than a budgie's sensible
         *  weight limit.
        public boolean isObese()
            return (weight >= TOO_FAT);
         * The budgie is starved if it is less than a budgie's sensible
         *  minimum weight.
        public boolean isStarved()
            return (weight <= TOO_THIN);
         *  The budgie has been fed.  It will put on weight.
         *  @param gmsOfBirdFeed, the amount of food eaten in grammes
        public void eat(int gmsOfBirdFeed)
            // Convert to gms fat
            double fat = gmsOfBirdFeed/10.0;
            weight = weight + fat;
         *  The budgie has drunk.
         *  @param mlsofwater, the amount of water drunk in mls
        public void drink(int mlsOfWater)
            water = mlsOfWater;
         *  The budgie has done some exercise.  It will lose weight.
         *  @param minutesOfExercise, the time of the exercise
        public void exercise(int minutesOfExercise)
            double weightLoss = minutesOfExercise * 0.1; // For each minute lose 0.1 gms fat      
            weight -= weightLoss;
            System.out.println("Budgie exercising for " + minutesOfExercise + " minutes, has lost " + weightLoss + " grammes in weight." );
        *  The budgie may lay an egg.  Only adults can lay eggs.
        *  @param rnd, a random object
        public boolean layEgg(Random rnd)
           boolean bLaying = false; // default
           // Only hens can lay eggs // PR
           if(bIsFemale)
               int probability = rnd.nextInt(10);
               // Random chance that it will lay
               // Added that cannot lay if last egg laid yesterday PR
               if((probability >= 5) && (age > ADULT_AGE ) && (age - lastEgg != 1))
                    // Can only lay eggs if a grown-up
                    numEggsLaid++;
                    bLaying = true;
                    lastEgg = age; // Laid an egg today PR
           return bLaying;      
         *  The budgie talks - display its words.
        public void talk()
            System.out.println(budgiesWords);
         *  Change the colour of the budgie.
         *  @param newColour, new value of budgie's colour
        public void setColor(String newColour)
            colour = newColour;
         *  Return the colour of the budgie.
         *  @return budgie's colour
        public String getColour()
            return colour;
         *  Output the budgie's details.
         *  @return A string containing all details of the budgie
        public String toString()
            String msg = "Budgie " + name + " ";
            if(canTalk)
                msg += "can talk it says ";
            else
                msg += "can not talk it just makes the sound ";
            msg += "'" + budgiesWords + "'";
            msg += "\n";
            msg += " Its colour is : " + colour;
            msg += "\n Its age is : " + age + " days.";
           return msg;
         *  Return the number of eggs the budgie has laid.
         *  @return eggs laid by budgie
        public int getNumEggsLaid()
            return numEggsLaid;
         *  Return the budgie's age.
         *  @return age of budgie
        public int getAge()
            return age;
         *  Return the budgie's name.
         *  @return name of budgie
        public String getName()
            return name;
         *  Return the budgie's gender.
         *  @return true if budgie is female
        public boolean isFemale()
            return bIsFemale;
    But everytime I try to compile it highlight this bit in the simulator:Budgie theBudgie = aviary.getBudgie();With an error message:
    getBudgie in Aviary cannot be applied to ()
    Im sorry for the long post please help would be most apreciated.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    NO prob man thank for such a quick response
    import java.util.ArrayList;
    * A Aviary for budgies to live in.
    * A maximum of one budgie can live in aviary
    * @author (Jacqui Whalley)
    *  Modified by Phil Robbins
    * @version (v0.2)
    *  9-3-2006 Fixed bugs from stage 1.
    *           Added stage 2 code
    public class Aviary
        // Instance variables
        private ArrayList budgies; // The budgies that live in the aviary
       // private boolean empty;   // Removed PR
         * Constructor for objects of class aviary.
        public Aviary()
            //empty = true; // removed PR
            budgies = new ArrayList(); // Semi colon added PR 
         *  Add a budgie to the aviary.
         *  @param bird, the budgie to add to the aviary.
        public void addBudgie(Budgie bird)
            // Can only have one budgie
            budgies.add(bird);
         * Remove the budgie - eg if it has died.
        public void removeBudgie(int index)
            if (index <= budgies.size() && index > 0)
                // Can only remove if there is a budgie there
                budgies.remove(index);
            else
                System.out.println("Error");
         * Returns the Aviary's budgie (which my be null).
         * @return The budgie that lives in the Aviary
        public void getBudgie(int index)
            if (index <= budgies.size() && index > 0)
                // Can only remove if there is a budgie there
                System.out.println(budgies.get(index));
            else
                System.out.println("Error");
         * Returns true if the cage is Aviary.
         * @return the emptiness of the Aviary
        public boolean isEmpty()
            //return empty; // Removed PR
            return budgies.size() == 0;
         * List budgies and there details
        public void listBudgieDetails()
            for(int i = 0;i < budgies.size();i++)
                System.out.println(budgies.get(i));
    }

  • Wanted Main window only on Task bar ...Need help as soon as possible

    Hello All,
    We are creating one application.
    We have main window(JFrame) with four subwindows.
    By clicking buttons on main window the subwindows will be opened.
    By using Iconified method we are able to minimise all the subwindows when main window is minimised.
    But on the task bar all the windows are showed.
    But we want to show main window only on the task bar while minimising
    That means all the sub windows should come under main window.
    Will Deiconified satifies this condition while maximisation.
    Need some ones help.
    Thank You All.
    Rajiv.V

    Use show() and hide() on your subwindows instead of iconifying and deiconifying them. Minimizing a window should produce exactly the behavior you're seeing. Using the right tool will get you the right result.

  • I need help as soon as possible

    Can anyone please help me and explain how can I do this white effect on dark background? Can I do this in Illustrator or I must use Photoshop?
    Thank you.

    1.     Use a black rectangle to make your black background.
    2.     Create your mountain shape using the pen tool.
    3.     Make a ellipse in the shape of your white glow. Set its stacking order to be behind your mountain, but in front of your background (or use different layers).
    4     Set the fill of your ellipse to be a radial gradient from white to black.
    5.    Select your ellipse and go to Effect > Texture > Grain. Play with the sliders until you achieve the desired effect. You may need to bounce back and forth between your gradient settings and the texture settings to get it right.
    Tip* You can access the settings of the texture effect again after you apply them by going to your appearance palette and selecting it.

  • I need help as soon as possible. statement wont execute the if statement

    I can not seen to make my "if statement work" can someone guide me in the right direction.
    import java.util.Scanner;
    import java.lang.Math;
    public class bm
    * main
    public static void main(String[] args) throws Exception
    Scanner scanner1,scanner2,scanner3;
    String sGradeType,sGrade="",sUGrade;
    char cGrade;
    double dGrade;
    long drGrade;
    int iGrade=0;
    System.out.println("Type of Entry (Chars(C)/Digits(D)");
    scanner1 = new Scanner(System.in);
    scanner2 = new Scanner(System.in);
    sGradeType = scanner1.next();
    sGradeType = "D";
    if (sGradeType == "D")
    System.out.println("Enter Grade number");
    scanner2 = new Scanner(System.in);
    dGrade = scanner2.nextDouble();
    drGrade = Math.round(dGrade);
    iGrade = (int)dGrade;
    switch (iGrade)
    case 75 :
    sGrade = "A" ;
    break ;
    case 60 :
    sGrade = "B";
    break ;
    case 50 :
    sGrade = "C";
    break ;
    case 40 :
    sGrade = "D";
    break ;
    default :
    System.out.print("illegal Grade !") ;
    System.out.printf("Grade Value, %8.3f. Grade %s", dGrade, sGrade);
    } else if (sGradeType == "C")
    System.out.println("Enter Grade Letter");
    scanner3 = new Scanner(System.in);
    sGrade = scanner3.next();
    sUGrade = sGrade.toUpperCase();
    cGrade = sUGrade.charAt(0);
    switch (cGrade)
    case 'A' :
    iGrade = 75 ;
    break ;
    case 'B' :
    iGrade = 60;
    break ;
    case 'C' :
    iGrade = 50;
    break ;
    case 'D' :
    iGrade = 40;
    break ;
    default :
    System.out.print("illegal Grade !") ;
    System.out.printf("Grade Value, %d, Grade %s", iGrade, sGrade);
    } // end of method main
    }

    Oops! Hit the wrong button.
    OK.
    First up - welcome to the Sun forums.
    A few points.
    >
    I can not seen to make my "if statement work" can someone guide me in the right direction.>1) Maybe the if statement is just a little tired. Give it a good night's rest and it will probably do twice the work tomorrow.
    Or to put that a less funny way..
    Please describe what it was supposed to do, why you thought it would do that, and what it actually did.
    2) Which 'if' statement? There are two if statements in that code.
    3) String comparison should not be done using '==', instead use string1.equals(string2)
    4) Please use the code formatting tags when posting code, and indent code using the common conventions.
    This is what I mean..
    import java.util.Scanner;
    import java.lang.Math;
    public class bm
    * main
         public static void main(String[] args) throws Exception
              Scanner scanner1,scanner2,scanner3;
              String sGradeType,sGrade="",sUGrade;
              char cGrade;
              double dGrade;
              long drGrade;
              int iGrade=0;
              System.out.println("Type of Entry (Chars(C)/Digits(D)");
              scanner1 = new Scanner(System.in);
              scanner2 = new Scanner(System.in);
              sGradeType = scanner1.next();
              sGradeType = "D";
              if (sGradeType == "D")
                   System.out.println("Enter Grade number");
                   scanner2 = new Scanner(System.in);
                   dGrade = scanner2.nextDouble();
                   drGrade = Math.round(dGrade);
                   iGrade = (int)dGrade;
                   switch (iGrade)
                        case 75 :
                             sGrade = "A" ;
                             break ;
                        case 60 :
                             sGrade = "B";
                             break ;
                        case 50 :
                             sGrade = "C";
                             break ;
                        case 40 :
                             sGrade = "D";
                             break ;
                        default :
                             System.out.print("illegal Grade !") ;
                   System.out.printf("Grade Value, %8.3f. Grade %s", dGrade, sGrade);
              } else if (sGradeType == "C")
                   System.out.println("Enter Grade Letter");
                   scanner3 = new Scanner(System.in);
                   sGrade = scanner3.next();
                   sUGrade = sGrade.toUpperCase();
                   cGrade = sUGrade.charAt(0);
                   switch (cGrade)
                        case 'A' :
                             iGrade = 75 ;
                             break ;
                        case 'B' :
                             iGrade = 60;
                             break ;
                        case 'C' :
                             iGrade = 50;
                             break ;
                        case 'D' :
                             iGrade = 40;
                             break ;
                        default :
                             System.out.print("illegal Grade !") ;
                   System.out.printf("Grade Value, %d, Grade %s", iGrade, sGrade);
         } // end of method main
    } Edited by: AndrewThompson64 on Apr 12, 2009 10:47 PM

  • NEED HELP AS SOON AS POSSIBLE!

    my computer crashed just recently and i got my account back for itunes, but my library is empty. so i plugged my ipod in to put my songs from my ipod to my library, but it wont work. i went to my account page and it says "one machine is authorized to play music purchased with this account". how do i authorize another computer to play music?

    With iTunes open, look at the very top of the screen, just a bit to the left of center.

  • Rendering a composition with bicubic interpolation (I NEED HELP AS SOON AS POSSIBLE!!!!!) thanks!

    So I have this composition that I want to render. Some of the layers in that composition has bicubic interpolation enabled. When I rendered that composition, the layers with bicubic interpolation enabled went back to default, seen in the image file attached.
    For more information, I'm importing this into a premiere which I will then render again for YouTube. Would this happen again when I render from adobe premiere?

    The layers highlighted are the ones with bicubic interpolation enabled. It looks fine in the preview window and in premiere, since this whole after effects comp is a dynamicly linked comp between AE and Premiere. The problem is, when I render this comp in After Effects, those highlighted layers become blurry. Also, if you're wondering why I'm rendering this comp even though it's dynamically linked with premiere, it's because I do it to reduce time in rendering when I color correct/grade in premiere.

  • .save problem, need help as soon as possible !

    function dataGrabbed(event:Event):void
    var dataText = input_txt.text
    saver.addEventListener(Event.COMPLETE, dataSaved);
    saver.save("saver.php","data.xml",dataText);
    the above code is a code I am trying to use, but dataText as you can se is just a var, how do I tell ActionScript3 to put dataText into dataXML.options.info.uid ?
    saver.php content:
    <?php
    $content = $_POST['content'];
    $file = $_POST['fileName'];
    $content = stripslashes($content);
    $writeFile = fopen($file, "w");
    if(fwrite($writeFile, $content))
      echo $content;
    else
      echo "Error writing to file";
    fclose($writeFile);
    ?>

    use:
    var urlR:URLRequest = new URLRequest("saver.php");
    var ldr:URLLoader= new URLLoader();
    ldr.dataFormat = URLLoaderDataFormat.VARIABLES;
    var urlV:URLVariables = new URLVariables();
    urlV.content = input_txt.text;
    urlV.fileName = "data.xml";
    urlR.data = urlV;
    urlR.method = URLRequestMethod.POST;
    ldr.addEventListener(Event.COMPLETE, completeF);
    ldr.addEventListener(IOErrorEvent.IO_ERROR, IOErrorF);
    ldr.load(urlR);
    function completeF(e:Event):void {
    function IOErrorF(e:IOErrorEvent):void {

  • How to download a .txt file correctly. Please help as soon as possible!

    Hi everybody,
    I need to implement download that prompts the user to save a txt file.
    If I use "attachment" in response.setHeader, my IE 5.50 crashes after downloading 4 to 6 files consecutively.
    I tried to change the response.setHeader to "inline" and the response.setContentType to "application/zip" or "application/UNKNOWN", and although it works in IE 5.50, my IE 5.00 never prompts asking to save the file, it always opend the file into the browser window, and I need a prompt.
    I saw many questions related with this problem in this forum, but none that answered accurately to this problem.
    Please help as soon as possible, I dont have much time to do this.
    Thank you very much.

    Thank you gypsy617 for your reply, but it still does not work!
    I made all the changes to
    1)res.setContentType("application/x-download");
    2)res.setHeader("Content-Disposition", "attachment; filename=" + filename);
    3)OutputStream out = res.getOutputStream();
    4)returnFile(filename, out);
    5) and i sent the file content as bytes
    But the real problem is regarding the "attachment" option !!!
    In my application, in the same page, there are a lot of links that users can download, each one a link that calls a action. It works well for the first downloaded file, for the second, ..., and then, when we try to download the file number 4 or 5, IE says that there is a problem and it must close (and it asks us to send a report - something like "Exception Information Code:0xc0000005 Flags:0x00000000 Record:0x0000000000000000 Address:0x0000000077a7710a").
    I know that the problem is the "attachment" because if I choose "inline", IE never crashes. But i really need a Save As dialog, the txt files cannot be openned into the browser window, so i cant use inline.
    Any idea?
    Thank you.

  • I have installed Grease Monkey plugin using unsafeWindow.Engine.init() function. It says unsafeWindow.Engine undefined. Please help as soon as possible.

    I have installed Grease Monkey plugin using unsafeWindow.Engine.init() function. It says unsafeWindow.Engine undefined. Please help as soon as possible.

    I have installed Grease Monkey plugin using unsafeWindow.Engine.init() function. It says unsafeWindow.Engine undefined. Please help as soon as possible.

  • Hi Rstor work for the iPhone 5 remains 4 hours Standby Please please help as soon as possible and thank you

    Hi Rstor work for the iPhone 5 remains 4 hours Standby Please please help as soon as possible and thank you

    These are user-to-user forums, you are not talking to Apple here - I've asked the hosts to remove your phone number from your post.
    You can contact iTunes support via email via this page and ask them why the message is appearing : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • Can vmware run on Boot Camp?Please Help as soon as possible

    I recently installed vista ultimate through vmware, but is it possible in any way to boot this vista OS I installed through vmware fusion through boot camp?
    Please help as soon as someone finds a certain answer.
    Thanks

    Running Windows (Vista or XP) is somewhat slower in virtualization than in BootCamp. If this is an important issue for you - and particularly if you are going to be running programs that benefit from fast screen updates - then you want BootCamp. If you need BootCamp then install it and afterwards install VMWare Fusion and use the BootCamp installation rather than a virtualized disk.
    If you are satisfied with the performance of virtualization there is no benefit from having BootCamp installed in terms of running VMWare. This is a disadvantage though - you have to shut down, you cannot save an instance, at least with version 1. I haven't downloaded version 2 to see if this has changed. It is much faster to resume an instance than to restart Windows and then your applications.

  • My itunes will not open at all. it occasionally will open but when i plug my iphone into it the program freezes and crashes. please help as soon as possible

    my itunes will not open at all. it occasionally will open but when i plug my iphone into it the program freezes and crashes. please help as soon as possible

    i think i might have a solution... i have windows vista and after i installed to latest itunes update everytime i tried to open it it would freeze. I tried everything, including uninstalling itunes and all of its components and reinstalled it numerous times. So i went to the itunes folder in my folders, not on itunes, and i deleted my itunes library and playlists. After that it worked just fine, all of my music was deleted but luckily i had my files saved elsewhere.
    I hope this helped! I know its frustrating and APPLE/ITUNES NEED TO FIX THE PROBLEM!!!!

  • Need Indesign saving help as soon as possible. Please.

    So i've been working on an assignment for Uni and when i've gone to file and then save, nothing happens, the file window disappears as usual but not box opens up, i tried save as, save a copy and export with the same result. Thinking something must've been wrong with the File menu i've triedf the shortcuts with the same result. I've been working on this all morning and i really need to save the work rather than just lose it. If anyone has anything i can try please i really would appreciate it.
    Ashiie Imperfect

    Nothing happens when you try a Save As and you can continue to work? That's not good. ID should be waiting for you to pick a name and location for the save and should not respond until that has been finished. We used to see a lot of reports where ID would hang waiting, but no dialog was visible, but this sounds different.
    FIrst, what version of ID and is it patched to the latest release, and what OS?
    If the file is still open you MIGHT be able to save it in more or less the state it's in by pulling the plug (either literally or by force quitting [mac] or using task manager [windows] to shut down ID). there should be some sorrt of recovery file saved that will reopen aoutomatically if it is not corrupt next time ID launches. DO NOT SHUT DOWN the computer if you are n a university machine that uses a security feature that resets the computer to a known state at reboot -- you'll lose the recovery file. If you lose stuff you save to the hard drive overnite, that would be the type of machine you don't want to shut down.
    BIG WARNING: there is no guarantee the file will be preserved if you do the above, and it may be lost permanently. That said, if you can't save it now, and you close ID, it's also going to be lost, so the risky method may be better than nothing as a last resort.
    Things to try:
    Export the file to .inx or .idml (depending on your verion of ID) and save that on an external drive of some sort so you can open on another machine. Probably not possible if you can't do a save, but you never know.
    Before closing ID try to do a save As and minmize all the windows you can find. Maybe the dialog is hidden behind something else (from your description, though, this is unlikley as you don't indicate that ID is waiting).
    If this is Windows 7 or Vista,  right click on the desktop and choose Persoanlize, then click Display in the lower left corner and finally, set the font size to 100% (see InDesign tools and panels don't respond to mouse clicks (Windows 7/Vista). I would do this before killing ID and hope it works, but it might not help while ID is already open. It also may not apply. If it does apply, but doesn't work while ID is open you can try again after forcing ID to close.
    Replace the preferences. This cannot be done with ID open, so you have to make the leap of faith that something will be saved in recovery to try this. See Replace Your Preferences for directions.
    It occurs to me that it wouldn't hurt to make a copy, if you can, of the IinDesign Recovery folder on some external media before you do anything else. The recovery folder should be inthe same location as the InDesign SavedData file which is listed inthe link above. I have never tried this, but if you are able to copy the recovery folder you might be able to log onto another machine, start ID, close ID,  paste the content of the old recovery folder into the one on the new machine and restart ID. If you're lucky ID will see the old recovery data and open the file.
    Good luck.

Maybe you are looking for

  • Is there any way to read the data from an excel file w/o using a loop structure?

    I am retrieving a large amount of data (multiple sheets) from an excel file and would like to extract the entire range without retrieving individual cell values(too slow). I can write an range all at once but cannot read it.

  • Disable editing in JTable

    Hello, While building an application i found myself needed to make a doubleclick event. This is working however, not 100%. this is becouse the defoult doubleclick action (editing the table) isn't set off. i looked over the internet but found nothing

  • Jukebox zen extra reboot prob

    My 40 gB Jukebox Zen Extra reboots fairly frequently, no matter how gently I handle it. The simple act of putting it into my pocket can cause it to reboot. I see no reference to this problem in the FAQ. Has anyone else had this problem? I've only had

  • Can´t play avi files

    I used to play AVI files on my Mac and Mac Book Pro but recently anything change that I can't play the same or new AVI files. I used to play it on Power Point presentations but right now I can't play with Quick Time. I can do it with VLC and also in

  • Trex Http Service is Red

    Hi gurus, I installed Trex 7.0 on Windows 2003 Server 64 bit. I did alot of thing to turn the http service to red but useless. I searched for the error and in TrexNameServerAlert.trace I found the errors as below: "Wrong response from http server: ht