Excel xls loses window functions, create new xlxs workbook problem solved

Yosemite, has a bug with  the old Excel files xls.  Loses window function, can't shrink window.  Lower right corner disappears.  Solution is to copy your data and create a new xlxs file and the function returns.

Hi Allan_L,
Please try the methods that provided above. And this is the forum to discuss questions and feedback for Microsoft Excel, your issue is related to Excel DEV, if you have further question, I recommend you post the question to the MSDN forum for Excel
http://social.msdn.microsoft.com/Forums/en-US/home?forum=exceldev&filter=alltypes&sort=lastpostdesc
The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
George Zhao
TechNet Community Support
It's recommended to download and install
Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
programs.

Similar Messages

  • Windows Vista - 'Create New Folder' unavailable

    When I 'right-click' in an open area, the drop-down menu no longer includes 'create new folder'

    Hi,
    As mentioned by
    Luigi Bruno , this issue is mostly caused by registry entry corruption, please first backup the registry before you making any changes on registry, because any incorrect modification might cause serious damage.
    If you have a restore point, then you can also choos to return PC to a previous state at which everything is working fine (note that you wil lose some recent settings)
    http://windows.microsoft.com/en-in/windows-vista/turn-back-time-on-your-pc-undo-system-changes-with-system-restore
    Yolanda Zhu
    TechNet Community Support

  • Lose MouseEvent after creating new class. Why?

    I have a main class that generates three clickable textfields (lessons).  Clicking a specific lesson starts the appropriate lesson.  However, once the lesson starts, I am unable to detect any mouseevents.  I do not use any mouseevents in any of the lessons so I am baffled about what happened to my mouse eventlisteners.  Even though I can see the nextLesson button, nothing happens when clicked.  If I click it before starting my lesson, my trace indicates that I have clicked it.  Any ideas?  Do I need my lessons to somehow self-terminate when done and if so, how would I go about this.  I currently use the browsers back arrow to terminate the complete session.  Seems kludgey.

    Site: itonlytakes1.org
    Currently I only have one lesson published: Discover the first ten number labels.  A minor annoyance is after you click on the lesson text, you have to click on the window again BEFORE the lesson will detect a numeric keypress (don't understand this either).  After executing the forty experiments (around two minutes), a summary of the time it took to recognize (subitize) the dashes and the quantity of errors will display.  I have been unable to create buttons or execute any code that will let you exit this screen and return to the main program screen, hence the advice to use the browser's back arrow.  SO, I decided to create a higher level script that contains all the lessons instead of using HTML, but I have not published it because I can't get the mouseevent to occur after starting Labeling.  I'll attach my prototype main program, Discovery, and the first lesson, Labeling (which is currently executed when you click on "Discover the first ten number labels".)  Be kind as I only started using AS3 and O.O.P. in January.  Thirty years ago I programmed in Fortran IV, and I haven't even written a shell script for 15 years.
    *********** don't know why .as files aren't attachable **********
    *********Discovery.as********************************
    package subquan{
        import flash.display.Sprite;
        import flash.text.*;
        //import flash.ui.Keyboard;
        import flash.events.*;
        //import flash.utils.setInterval;
        //import flash.utils.clearInterval;
        //import flash.utils.getTimer;
        public class Discovery extends Sprite {
            var lesson:*;
            public function Discovery() {
                var labeling:TextField = new TextField;
                labeling.text = "Discover number labels";
                labeling.x = 20;
                labeling.y = 50;
                addChild(labeling);
                labeling.addEventListener(MouseEvent.CLICK, runLabeling);
                var container:TextField = new TextField;
                container.text = "Discover number labels";
                container.x = 20;
                container.y = 100;
                addChild(container);
                container.addEventListener(MouseEvent.CLICK, runContainer);
                var dimension:TextField = new TextField;
                dimension.text = "Discover number labels";
                dimension.x = 20;
                dimension.y = 150;
                addChild(dimension);
                dimension.addEventListener(MouseEvent.CLICK, runDimension);
                private function runLabeling(evt:MouseEvent):void {
                lesson = new Labeling();
                addChild(lesson);
                private function runContainer(evt:MouseEvent):void {
                trace("Containers clicked");
                private function runDimension(evt:MouseEvent):void {
                trace("Dimension clicked");
    ********************  Labeling.as ***************************************
    package subquan{
        import flash.display.Sprite;
        import flash.display.Shape;
        import flash.text.*;
        import flash.ui.Keyboard;
        import flash.events.*;
        import flash.utils.setInterval;
        import flash.utils.clearInterval;
        import flash.utils.getTimer;
        public class Labeling extends Sprite {
            public static  const UP:Boolean=true;
            public static  const DOWN:Boolean=false;
            public static  const OFF:Boolean=false;
            public static  const ON:Boolean=true;
            public var number:*;// Main Container for all
            public var questions:*;// Remaining questions container
            public var rightEdge:uint;// Set in .fla file through window->property and select top pointer in side menu.
            public var lowerEdge:uint;
            // Decimal point locates number on the stage. (Not always visible)
            public var decimalPointX:uint;
            public var decimalPointY:uint;
            public var dim:String;
            public var base:uint;// Maximum pairs (base, number) = (2, 127), (3, 2186), (4, 16383), ..., Math.pow(base, 7) - 1
            public var num:int;// Maximum number is seven(7) digits regardless of base.
            public var scale:uint;
            // Variables for smooth scaling
            public var smoothStep:Number;// Change in scale for each step
            public var normalization:Number;// Current level of normalization.  Usually at 0, stop, or 1
            private var normalizationStop:Number;// Intermediate stop between full and normalized.
            private var smoothIntervalID:int;// Used to clear smoothing interval
            private var atAStop:Boolean=true;// smooth scaling is completed
            // Shared text field shows message whether subquan is to scale or not.
            private var answered:Boolean=false;// Indicates whether correct answer received
            private var answerSoFar:String;
            private var answerSign:Boolean;
            private var subquanAnswer:String;
            private var subquanAnswerSign:Boolean;
            private var waitAfterAnswer:uint;
            private var grade:Boolean;
            private var range:uint;
            private var hintID:int;
            private var sleepID:int;
            private var sounds:*;// Instance name for DigiSounds
            // Normalization text
            private var ToScale:String = "Subquan to scale";
            private var NotToScale:String = "Subquan NOT to scale";
            private var Normalized:String="Subquan normalized";
            private var lesson:*;// LessonText object
            private var answerArray:Array;
            private var samples:uint;// Number of samples of each digit
            private var numberTimes:Array=new Array();//Array keeping tracking of times per digit
            private var checkTime:Number;//Used for computed the time to answer
            private var errors:Array=new Array();//Tracks the number of errors.  Used to compute average time to answer
            private var newLesson:Boolean;//Tracks the start of a new lesson
            private var iterations:uint;//Total number of answers required = base * samples
            public function Labeling() {
                newLesson = true;
                base = 10;
                samples = 4;
                iterations = base * samples;
                for (var i:uint=0; i<base; i++) {
                    numberTimes[i] = 0;
                    errors[i] = 0;
                var numbers:*=new Numbers();
                answerArray = numbers.getNumbers(samples, base);
                rightEdge=550;// Set in .fla file through window->property and select top pointer in side menu.
                lowerEdge=400;
                decimalPointX=rightEdge - 100;
                decimalPointY=lowerEdge - 50;
                range=1;// Power of 10.  Do not exceed 7!
                waitAfterAnswer = 3000;
                smoothStep = 1/24;// Change in scale for each step
                sounds=new DigiSounds  ;// Initialize array of number words and notes
                lesson = new LessonText(lowerEdge, rightEdge);// Initialize feedback texts
                addChild(lesson);
                lesson.intro.text = "DISCOVERY 1:\n\nYou can recognize, in less than one second, any\nlabel (or symbolic name) of the first ten digits\n\nDo not count\nEnter 0, 1, 2, 3, 4, 5, 6, 7, 8, or 9\nas fast as you can\n\nEnter any number to begin.";
                lesson.remainingLabel.text = "Remaining experiments";
                addEventListener(KeyboardEvent.KEY_DOWN,keyDownFunc);
            private function newNumber():void {
                if (number) {
                    stage.removeChild(number);
                if (answerArray.length>0) {
                    num = answerArray.pop();
                    setNormalization(1);
                    // TEMPLATE: Quantity(num:Number, newBase:Number, normalization:Number=1, scale:Number=1, dim:String="null")
                    number=new Quantity(num,base,normalization,1, "null", OFF);
                    stage.addChild(number);
                    checkTime=getTimer();// Set time when number was displayed
                    number.x=decimalPointX;
                    number.y=decimalPointY;
                    subquanAnswer=String(number.getSubquanNumber());
                    subquanAnswerSign=number.getSubquanSign();
                    sounds.playNumber(subquanAnswerSign,number.getSubquanNumber());
                    lesson.answer.text="";
                    answerSoFar="";
                    answerSign=true;
                    lesson.grade.text="";
                    grade=false;
                    lesson.hint.text="";
                    clearInterval(hintID);
                    hintID=setInterval(giveHint,5000);
                    answered=false;
                } else {
                    lesson.grade.text="";
                    lesson.answer.text = "";
                    lesson.scaleText.text = "";
                    lesson.remainingLabel.text = "";
                    var doneText:String="";
                    var avgTimes:Number=0;
                    var totalErrors:uint=0;
                    for (var i:uint=0; i<base; i++) {
                        doneText = doneText + "\nfor " + i + " was " + Math.floor(numberTimes[i]/samples) + " with " + errors[i] + " errors";
                        avgTimes += numberTimes[i];
                        totalErrors+= errors[i];
                    var average:Number = Math.floor(avgTimes/base/samples);
                    var penalty:Number = Math.floor(totalErrors*Math.min(average, 2000)/base/samples);
                    var score:Number = average + penalty;
                    var comment:String = "";
                    doneText = doneText + "\nFor all including penalty was " + score + " msecs";
                    doneText = doneText + "\nTotal errors " + totalErrors + ", penalty: " + penalty + " msecs";
                    if (totalErrors == 0 && score < 1000) {
                        comment = "Excellent";
                    } else {
                        if (totalErrors/base/samples <= 0.05 && score < 1000) {
                            comment = "Well Done";
                        } else {
                            comment = "Practice reduces time and errors";
                    lesson.intro.text = comment + "\n\nAverage Times (in 1/1000th of a second)" + doneText;
            private function randomDim():String {
                var dimArray:Array=new Array;
                dimArray=["null","x","y","z"];
                return dimArray[Math.floor(Math.random() * 4)];
            private function wakeUp():void {
                clearInterval(sleepID);
                newNumber();
            private function giveHint():void {
                lesson.hint.text="Try " + subquanAnswer;
            public function setNormalization(n:Number):void {
                normalization = n;
                normalizationStop = n;
                atAStop=true;
                switch (n) {
                    case 0 :
                        lesson.scaleText.text=ToScale;
                        break;
                    case 1 :
                        lesson.scaleText.text=Normalized;
                        break;
                    default :
                        lesson.scaleText.text=NotToScale;
            public function smoothScale(target:Number):void {
                if (normalization > target) {
                    if (normalization - smoothStep <= target) {// At target, stop scaling
                        normalization=target;
                        atAStop=true;
                        clearInterval(smoothIntervalID);
                    } else {
                        normalization-= smoothStep;
                } else {
                    if (normalization + smoothStep >= target) {
                        normalization=target;
                        atAStop=true;
                        clearInterval(smoothIntervalID);
                    } else {
                        normalization+= smoothStep;
                number.scaleDigits(normalization);
            // IMPORTANT: Don't forget to press Ctrl + Enter to run n code and then on that preview screen,
            //      go to the menu and select Control then Disable Keyboard Shortcuts.
            private function keyDownFunc(event:KeyboardEvent):void {
                var key:uint=event.keyCode;
                var mathKey:String=null;
                switch (key) {
                    case 8 ://backspace key
                    case 46 ://delete key
                        trace("I am here");
                        //code to exit goes here
                        break;
                    case 13 :// Enter/retrun key.  Clear entry to start over.  SEE IMPORTANT NOTE
                        answerSoFar="";
                        answerSign=true;
                        lesson.clearAnswer;
                        lesson.clearGrade;
                        break;
                    case 37 :// Left arrow - change normalization stop
                        if (normalization - smoothStep <= 0) {// Set normalizationStop to fullscale
                            setNormalization(0);
                        } else {
                            setNormalization(normalization - smoothStep);
                        number.scaleDigits(normalizationStop);
                        break;
                    case 38 :// Up arrow
                        if (normalization == 1) {
                            atAStop=false;
                            lesson.scaleText.text=NotToScale;
                            clearInterval(smoothIntervalID);
                            smoothIntervalID=setInterval(smoothScale,10,normalizationStop);
                        if (normalization == normalizationStop) {
                            atAStop=false;
                            lesson.scaleText.text=ToScale;
                            clearInterval(smoothIntervalID);
                            smoothIntervalID=setInterval(smoothScale,10,0);
                        break;
                    case 39 :// Right arrow - change normalization stop
                        if (normalization + smoothStep >= 1) {// Set normalizationStop to normalized
                            setNormalization(1);
                        } else {
                            setNormalization(normalization + smoothStep);
                        number.scaleDigits(normalizationStop);
                        break;
                    case 40 :// Down arrow
                        if (normalization == 0) {
                            atAStop=false;
                            lesson.scaleText.text=NotToScale;
                            clearInterval(smoothIntervalID);
                            smoothIntervalID=setInterval(smoothScale,10,normalizationStop);
                        if (normalization == normalizationStop) {
                            atAStop=false;
                            clearInterval(smoothIntervalID);
                            smoothIntervalID=setInterval(smoothScale,10,1);
                            lesson.scaleText.text=Normalized;
                        break;
                    case 109 :// '-' on keypad pressed
                    case 189 :// '-' key pressed
                        if (! answerSign ) {
                            answerSoFar="";
                            answerSign=true;
                            lesson.answer.text="";
                        } else {
                            answerSoFar="-";
                            answerSign=false;
                            lesson.answer.text=answerSoFar;
                        lesson.clearGrade();
                        break;
                    default :
                        if (48 <= key && key < 58) {
                            mathKey=String(key - 48);
                        if (96 <= key && key < 106) {
                            mathKey=String(key - 96);
                        if (mathKey) {
                            if (newLesson) {
                                newLesson = false;
                                lesson.intro.text="";
                                newNumber();
                            } else {
                                if (! answered) {
                                    if (answerSoFar.length < subquanAnswer.length) {// Don't already have correct or incorrect answer
                                        answerSoFar+= mathKey;
                                        lesson.answer.text=answerSoFar;
                                    } else {// Have answer but want to change numbers
                                        answerSign=true;
                                        answerSoFar=mathKey;
                                        lesson.answer.text=answerSoFar;
                                        lesson.grade.text="";
                                    if (answerSoFar.length == subquanAnswer.length) {
                                        if (answerSoFar == subquanAnswer && answerSign == subquanAnswerSign) {// Correct Answer
                                            numberTimes[num]+= getTimer() - checkTime;
                                            lesson.hint.text="";
                                            sounds.playAnswer();
                                            answered=true;// Prevent accidental overwrite of sleepID from rapid key presses
                                            clearInterval(hintID);
                                            clearInterval(sleepID);
                                            sleepID=setInterval(wakeUp,2000);
                                            lesson.grade.text=" CORRECT";
                                            lesson.grade.setTextFormat(lesson.correctAnswerFormat);
                                            if (questions) {
                                                stage.removeChild(questions);
                                            // TEMPLATE: Quantity(num:Number, newBase:Number, normalization:Number=1, scale:Number=1, dim:String="null")
                                            iterations -= 1;
                                            if (iterations) {
                                                questions=new Quantity(iterations,10,1,0.25,"x");
                                                stage.addChild(questions);
                                                questions.x = rightEdge - 30;
                                                questions.y = 80;
                                        } else {
                                            errors[num] += 1;
                                            lesson.grade.text=" INCORRECT";
                                            lesson.grade.setTextFormat(lesson.incorrectAnswerFormat);
                                } else {
                                    trace("Lesson1.keyDownFunc: Unnecessary number key entered");
                        } else {
                            trace("Lesson1.keyDownFunc: Unused keycode " + key + " is " + String.fromCharCode(key));

  • Can't boot windows after creating new MS-DOS (FAT) partition

    I created a new MS-DOS (FAT) partition on Yosemite, and now I am unable to access my windows bootcamp partition.
    - I can attempt to boot into windows from Yosemite however after a long while, I am prompted with "no bootable device".
    - The option to boot windows from the startup manager is no longer visible.

    It still shows the bootcamp partition with windows.
    EDIT: Creating the new FAT partition did seem to create another partition which is visible when looking at the partition layout; the other partition is 1.04gb; format "Free Space". Apparently that's from bootcamp - hadn't noticed before.
    I took some screens to show what I mean ("WINDOWS EXT" is the new partition I created):
    - https://dl.dropboxusercontent.com/u/23413810/Apple/new%20fat.png
    - https://dl.dropboxusercontent.com/u/23413810/Apple/new%20fat%20details.png
    - https://dl.dropboxusercontent.com/u/23413810/Apple/created%20alongside%20fat.png
    - https://dl.dropboxusercontent.com/u/23413810/Apple/windows%20bootcamp.png
    - https://dl.dropboxusercontent.com/u/23413810/Apple/windows%20bootcamp%20details. png

  • Creating new Source system problem

    Hi there,
    System: BW 3.5 client 010, want  to connect to R/3 4.6c Sandbox client 0101
    we just refreshed our BW 3.5  sandbox with current production data. Now we want to create the source system via RSA1 to point to R/3 Sandbox. When we try to create this we get this new error. I am not sure why it is
    Error:
    Logical system BIX010 exists already
    Message no. R3222
    Diagnosis
    The SAP Business Information Warehouse BIX010 is already connected to the source system. A multiple connection is not possible.
    For some reason, it is reading as BIX010(talking to the system itself) - BW Sandbox systems, it should be doing the source system creation for SBX010 not BIX010 (talking to the system itself)
    I tried to create the system manually and automatically, still no luck.
    I cannot see SBX010 source system in teh RSA1, I am afraid it might be in the database table and not showing up in the transaction RSA1, does anyone know the table that it has this information, so I can se16 and look at the entries?
    Does anyone knows where to look for?
    Thanks in Advance
    Kumar

    Goto SM50 and check for ABAP connections. Look for SBX010. If you don'T find it here you have to create it. Check also BIX010 if it'S connected to the right system.
    Regards,
    Juergen

  • CRM 2007 when create new track have problem

    Hi, buddies:
    I am on CRM 2007 (CRM 6.0 SP01), and from Development and Extension Guide - SAP E-commerce 6.0, seems like I should chooese CRM JAVA Customer Project 5.0(CUSTCRMPRJ), and under this SC, you can see a lot of componets which is lower release (it is automatically load from SLD, and some of them are 5.0), so if I check-in these SCA files which is on release 6.0, would it be a problem?
    Cheers,
    Eric

    Hello ,
    We are faing similar problem when while Creating Track for CRM2007... I tried to Add SC all the SCs are either for CRM version 5, 5.1 or 7...We are unable top find it anything for CRM 6.0...
    Can you please help

  • Moved HD to new computer - some problems [SOLVED]

    I got a newer PC to use for Arch after the system board failed on my old one.  I just took the hard drive out of my old system and moved it to the new one.  Almost everything worked after booting up and running alsaconf to detect the different sound chip on the new motherboard. But I am having a few problems.
    When I open smc (super-mario brothers clone) it opens full screen.  When I try to go to windowed it crashes the program and leaves my xfce messed up so I have to kill and restart X.  There is a similar lockup with bumprace where it hangs then I have to restart X from the console.  When I try to start frozen-bubble it just hangs before getting to the menu screen.  I need to do a kill -9 on its process to get things working again.  However, all games aren't broken since maelstrom runs perfectly.  I'm puzzled why some are broken while others work fine.
    When frozen-bubble hangs and I do an alt-ctrl-f1 here is what I see:
    [SDL Init] GetModeLine - scrn: 0 clock: 157500
    GetModeLine hdsp: 1280 hbeg: 1344 hend: 1504 httl: 1728
    GetModeLine vdsp: 1024 vbet: 1025 vend: 1028 vttl: 1072 flags: 5
    bomberclone has the same kind of lockup when I start it, and the console shows the exact same thing except it doesn't have the [SDL Init] at the start of the first line.  I'm not sure if these have anything to do with the problem, but that is where the console is at when the programs hang.
    Firefox seems to be working fine.  And I can do stuff in terminal windows as I would expect with no trouble so far.  So the box is operational and all, but I am a little bothered by the fact that a bunch of stuff that worked fine before is now broken, and after a couple days of working on it I can't figure it out.
    I have a GeForce2 TI 64MB card in this machine, while the old one had a GeForce2 MX with 32MB in it.  However, I am using the nv driver instead of the current nvidia driver since both of those cards are so old nvidia considers them legacy and doesn't support them with the current driver.  Thus I don't think it is a video driver problem, but I could be wrong.  Maybe there is some config setting I need to change.   I did update the video ram to 65536 in xorg.conf.
    I did try a pacman -Syu after moving the HD to the new system, but that didn't seem to change anything.  Is there anything else I missed doing that I should have done to get arch working correctly on the new system?
    Thanks much for any advice you can give me.
    Ralph

    Thanks for the suggestion.  To test what you were talking about I exited xfce and ran startx from the console.  It brought me up in a gray screen with some xterms open.  I think that is twm, but honestly I'm not sure.  I ran bomberclone, frozen-bubble, and smc from the xterm as you suggested.  Bomberclone and frozen-bubble did the exact same thing - even the messages I saw on the console when doing alt-ctl-f1 were the same.  Smc didn't start up at all this time, while in xfce it started up with the wrong resolution and messed up xfce when I quit the game.  So that was a bit different.  But basically it seems like xfce isn't the problem since they still didn't work right without it.
    I read through the link to the other thread you gave.  I am not using udev at all - should I try installing that and see if it solves this issue?  I know I need to do that eventually, but I thought I should fix this problem first.  Maybe I should do it now though.
    I didn't see anything other than what I think are normal boot messages in /var/log/kernel.  Here is the last batch of stuff in case you see something I missed.
    Thanks again for taking the time to help. 
    Jun 24 13:37:09 arch kernel: klogd 1.4.1, log source = /proc/kmsg started.
    Jun 24 13:37:09 arch kernel: Cannot find map file.
    Jun 24 13:37:09 arch kernel: No module symbols loaded - kernel modules not enabled.
    Jun 24 13:37:09 arch kernel: Linux version 2.6.3 (root@mars) (gcc version 3.3.3) #1 SMP W
    ed Feb 18 00:08:24 PST 2004
    Jun 24 13:37:09 arch kernel: BIOS-provided physical RAM map:
    Jun 24 13:37:09 arch kernel:  BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
    Jun 24 13:37:09 arch kernel:  BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
    Jun 24 13:37:09 arch kernel:  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
    Jun 24 13:37:09 arch kernel:  BIOS-e820: 0000000000100000 - 000000002fff0000 (usable)
    Jun 24 13:37:09 arch kernel:  BIOS-e820: 000000002fff0000 - 000000002fff8000 (ACPI data)
    Jun 24 13:37:09 arch kernel:  BIOS-e820: 000000002fff8000 - 0000000030000000 (ACPI NVS)
    Jun 24 13:37:09 arch kernel:  BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    Jun 24 13:37:09 arch kernel:  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    Jun 24 13:37:09 arch kernel:  BIOS-e820: 00000000ffee0000 - 00000000fff00000 (reserved)
    Jun 24 13:37:09 arch kernel:  BIOS-e820: 00000000fffc0000 - 0000000100000000 (reserved)
    Jun 24 13:37:09 arch kernel: user-defined physical RAM map:
    Jun 24 13:37:09 arch kernel:  user: 0000000000000000 - 000000000009fc00 (usable)
    Jun 24 13:37:09 arch kernel:  user: 000000000009fc00 - 00000000000a0000 (reserved)
    Jun 24 13:37:09 arch kernel:  user: 00000000000f0000 - 0000000000100000 (reserved)
    Jun 24 13:37:09 arch kernel:  user: 0000000000100000 - 000000002fff0000 (usable)
    Jun 24 13:37:09 arch kernel: 767MB LOWMEM available.
    Jun 24 13:37:09 arch kernel: On node 0 totalpages: 196592
    Jun 24 13:37:09 arch kernel:   DMA zone: 4096 pages, LIFO batch:1
    Jun 24 13:37:09 arch kernel:   Normal zone: 192496 pages, LIFO batch:16
    Jun 24 13:37:09 arch kernel:   HighMem zone: 0 pages, LIFO batch:1
    Jun 24 13:37:09 arch kernel: DMI 2.3 present.
    Jun 24 13:37:09 arch kernel: ACPI: RSDP (v000 AMI                                       )
    @ 0x000fa300
    Jun 24 13:37:09 arch kernel: ACPI: RSDT (v001 AMIINT SiS735XX 0x00001000 MSFT 0x0100000b)
    @ 0x2fff0000
    Jun 24 13:37:09 arch kernel: ACPI: FADT (v001 AMIINT SiS735XX 0x00001000 MSFT 0x0100000b)
    @ 0x2fff0030
    Jun 24 13:37:09 arch kernel: ACPI: DSDT (v001    SiS      735 0x00000100 MSFT 0x0100000d)
    @ 0x00000000
    Jun 24 13:37:09 arch kernel: Built 1 zonelists
    Jun 24 13:37:09 arch kernel: Kernel command line: root=/dev/discs/disc0/part3 ro mem=7863
    68K
    Jun 24 13:37:09 arch kernel: Local APIC disabled by BIOS -- reenabling.
    Jun 24 13:37:09 arch kernel: Found and enabled local APIC!
    Jun 24 13:37:09 arch kernel: Initializing CPU#0
    Jun 24 13:37:09 arch kernel: PID hash table entries: 4096 (order 12: 32768 bytes)
    Jun 24 13:37:09 arch kernel: Detected 1394.326 MHz processor.
    Jun 24 13:37:09 arch kernel: Using tsc for high-res timesource
    Jun 24 13:37:09 arch kernel: Console: colour VGA+ 80x25
    Jun 24 13:37:09 arch kernel: Memory: 772204k/786368k available (3768k kernel code, 13416k
    reserved, 1150k data, 240k init, 0k highmem)
    Jun 24 13:37:09 arch kernel: Checking if this processor honours the WP bit even in superv
    isor mode... Ok.
    Jun 24 13:37:09 arch kernel: Calibrating delay loop... 2760.70 BogoMIPS
    Jun 24 13:37:09 arch kernel: Dentry cache hash table entries: 131072 (order: 7, 524288 by
    tes)
    Jun 24 13:37:09 arch kernel: Inode-cache hash table entries: 65536 (order: 6, 262144 byte
    s)
    Jun 24 13:37:09 arch kernel: Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
    Jun 24 13:37:09 arch kernel: CPU:     After generic identify, caps: 0383fbff c1cbfbff 000
    00000 00000000
    Jun 24 13:37:09 arch kernel: CPU:     After vendor identify, caps: 0383fbff c1cbfbff 0000
    0000 00000000
    Jun 24 13:37:09 arch kernel: CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/
    line)
    Jun 24 13:37:09 arch kernel: CPU: L2 Cache: 256K (64 bytes/line)
    Jun 24 13:37:09 arch kernel: CPU:     After all inits, caps: 0383fbff c1cbfbff 00000000 0
    0000020
    Jun 24 13:37:09 arch kernel: Intel machine check architecture supported.
    Jun 24 13:37:09 arch kernel: Intel machine check reporting enabled on CPU#0.
    Jun 24 13:37:09 arch kernel: Enabling fast FPU save and restore... done.
    Jun 24 13:37:09 arch kernel: Enabling unmasked SIMD FPU exception support... done.
    Jun 24 13:37:09 arch kernel: Checking 'hlt' instruction... OK.
    Jun 24 13:37:09 arch kernel: POSIX conformance testing by UNIFIX
    Jun 24 13:37:09 arch kernel: CPU0: AMD Athlon(tm) XP 1600+ stepping 02
    Jun 24 13:37:09 arch kernel: per-CPU timeslice cutoff: 731.25 usecs.
    Jun 24 13:37:09 arch kernel: task migration cache decay timeout: 1 msecs.
    Jun 24 13:37:09 arch kernel: SMP motherboard not detected.
    Jun 24 13:37:09 arch kernel: enabled ExtINT on CPU#0
    Jun 24 13:37:09 arch kernel: ESR value before enabling vector: 00000000
    Jun 24 13:37:09 arch kernel: ESR value after enabling vector: 00000000
    Jun 24 13:37:09 arch kernel: Using local APIC timer interrupts.
    Jun 24 13:37:09 arch kernel: calibrating APIC timer ...
    Jun 24 13:37:09 arch kernel: ..... CPU clock speed is 1393.0804 MHz.
    Jun 24 13:37:09 arch kernel: ..... host bus clock speed is 265.0486 MHz.
    Jun 24 13:37:09 arch kernel: Starting migration thread for cpu 0
    Jun 24 13:37:09 arch kernel: Brought up 0 CPUs
    Jun 24 13:37:09 arch kernel: NET: Registered protocol family 16
    Jun 24 13:37:09 arch kernel: PCI: PCI BIOS revision 2.10 entry at 0xfdb01, last bus=1
    Jun 24 13:37:09 arch kernel: PCI: Using configuration type 1
    Jun 24 13:37:09 arch kernel: mtrr: v2.0 (20020519)
    Jun 24 13:37:09 arch kernel: ACPI: Subsystem revision 20040116
    Jun 24 13:37:09 arch kernel: ACPI: IRQ9 SCI: Edge set to Level Trigger.
    Jun 24 13:37:09 arch kernel: ACPI: Interpreter enabled
    Jun 24 13:37:09 arch kernel: ACPI: Using PIC for interrupt routing
    Jun 24 13:37:09 arch kernel: ACPI: PCI Root Bridge [PCI0] (00:00)
    Jun 24 13:37:09 arch kernel: PCI: Probing PCI hardware (bus 00)
    Jun 24 13:37:09 arch kernel: ACPI: PCI Interrupt Routing Table [_SB_.PCI0._PRT]
    Jun 24 13:37:09 arch kernel: ACPI: Power Resource [URP1] (off)
    Jun 24 13:37:09 arch kernel: ACPI: Power Resource [URP2] (off)
    Jun 24 13:37:09 arch kernel: ACPI: Power Resource [FDDP] (off)
    Jun 24 13:37:09 arch kernel: ACPI: Power Resource [LPTP] (off)
    Jun 24 13:37:09 arch kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 *5 7 10 11 12 14 1
    5)
    Jun 24 13:37:09 arch kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 10 11 12 14 15
    Jun 24 13:37:09 arch kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 10 *11 12 14 1
    5)
    Jun 24 13:37:09 arch kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 10 *11 12 14 1
    5)
    Jun 24 13:37:09 arch kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 10 11 12 14 15
    Jun 24 13:37:09 arch kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 10 11 12 14 15
    Jun 24 13:37:09 arch kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 7 10 11 12 14 1
    5)
    Jun 24 13:37:09 arch kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 *5 7 10 11 12 14 1
    5)
    Jun 24 13:37:09 arch kernel: Linux Plug and Play Support v0.97 (c) Adam Belay
    Jun 24 13:37:09 arch kernel: SCSI subsystem initialized
    Jun 24 13:37:09 arch kernel: Linux Kernel Card Services
    Jun 24 13:37:09 arch kernel:   options:  [pci] [cardbus] [pm]
    Jun 24 13:37:09 arch kernel: drivers/usb/core/usb.c: registered new driver usbfs
    Jun 24 13:37:09 arch kernel: drivers/usb/core/usb.c: registered new driver hub
    Jun 24 13:37:09 arch kernel: ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11
    Jun 24 13:37:09 arch kernel: ACPI: PCI Interrupt Link [LNKH] enabled at IRQ 5
    Jun 24 13:37:09 arch kernel: ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11
    Jun 24 13:37:09 arch kernel: ACPI: PCI Interrupt Link [LNKG] enabled at IRQ 5
    Jun 24 13:37:09 arch kernel: ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 5
    Jun 24 13:37:09 arch kernel: PCI: Using ACPI for IRQ routing
    Jun 24 13:37:09 arch kernel: PCI: if you experience problems, try using option 'pci=noacp
    i' or even 'acpi=off'
    Jun 24 13:37:09 arch kernel: Machine check exception polling timer started.
    Jun 24 13:37:09 arch kernel: apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac)
    Jun 24 13:37:09 arch kernel: apm: overridden by ACPI.
    Jun 24 13:37:09 arch kernel: ikconfig 0.7 with /proc/config*
    Jun 24 13:37:09 arch kernel: VFS: Disk quotas dquot_6.5.1
    Jun 24 13:37:09 arch kernel: devfs: v1.22 (20021013) Richard Gooch ([email protected])
    Jun 24 13:37:09 arch kernel: devfs: boot_options: 0x1
    Jun 24 13:37:09 arch kernel: Installing knfsd (copyright (C) 1996 [email protected]).
    Jun 24 13:37:09 arch kernel: udf: registering filesystem
    Jun 24 13:37:09 arch kernel: SGI XFS with ACLs, security attrs, no debug enabled
    Jun 24 13:37:09 arch kernel: SGI XFS Quota Management subsystem
    Jun 24 13:37:09 arch kernel: Initializing Cryptographic API
    Jun 24 13:37:09 arch kernel: ACPI: Power Button (FF) [PWRF]
    Jun 24 13:37:09 arch kernel: ACPI: Sleep Button (CM) [SLPB]
    Jun 24 13:37:09 arch kernel: ACPI: Processor [CPU1] (supports C1)
    Jun 24 13:37:09 arch kernel: isapnp: Scanning for PnP cards...
    Jun 24 13:37:09 arch kernel: spurious 8259A interrupt: IRQ7.
    Jun 24 13:37:09 arch kernel: isapnp: No Plug & Play device found
    Jun 24 13:37:09 arch kernel: pty: 256 Unix98 ptys configured
    Jun 24 13:37:09 arch kernel: Linux agpgart interface v0.100 (c) Dave Jones
    Jun 24 13:37:09 arch kernel: Serial: 8250/16550 driver $Revision: 1.90 $ 8 ports, IRQ sha
    ring disabled
    Jun 24 13:37:09 arch kernel: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    Jun 24 13:37:09 arch kernel: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
    Jun 24 13:37:09 arch kernel: Using anticipatory io scheduler
    Jun 24 13:37:10 arch kernel: Floppy drive(s): fd0 is 1.44M
    Jun 24 13:37:10 arch kernel: FDC 0 is a post-1991 82077
    Jun 24 13:37:10 arch kernel: RAMDISK driver initialized: 16 RAM disks of 4096K size 1024
    blocksize
    Jun 24 13:37:10 arch kernel: loop: loaded (max 8 devices)
    Jun 24 13:37:10 arch kernel: Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
    Jun 24 13:37:10 arch kernel: ide: Assuming 33MHz system bus speed for PIO modes; override
    with idebus=xx
    Jun 24 13:37:10 arch kernel: SIS5513: IDE controller at PCI slot 0000:00:02.5
    Jun 24 13:37:10 arch kernel: SIS5513: chipset revision 208
    Jun 24 13:37:10 arch kernel: SIS5513: not 100%% native mode: will probe irqs later
    Jun 24 13:37:10 arch kernel: SIS5513: SiS735 ATA 100 (2nd gen) controller
    Jun 24 13:37:10 arch kernel:     ide0: BM-DMA at 0xff00-0xff07, BIOS settings: hda:DMA, h
    db:DMA
    Jun 24 13:37:10 arch kernel:     ide1: BM-DMA at 0xff08-0xff0f, BIOS settings: hdc:DMA, h
    dd:DMA
    Jun 24 13:37:10 arch kernel: hda: WDC WD300BB-00AUA1, ATA DISK drive
    Jun 24 13:37:10 arch kernel: ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
    Jun 24 13:37:10 arch kernel: hdc: 36X CD-ROM, ATAPJun 24 13:37:10 arch kernel: ide1 at 0x170-0x177,0x376 on irq 15
    Jun 24 13:37:10 arch kernel: hda: max request size: 128KiB
    Jun 24 13:37:10 arch kernel: hda: 58633344 sectors (30020 MB) w/2048KiB Cache, CHS=58168/
    16/63, UDMA(100)
    Jun 24 13:37:10 arch kernel:  /dev/ide/host0/bus0/target0/lun0: p1 p2 p3
    Jun 24 13:37:10 arch kernel: hdc: ATAPI 24X CD-ROM drive, 128kB Cache, UDMA(33)
    Jun 24 13:37:10 arch kernel: Uniform CD-ROM driver Revision: 3.20
    Jun 24 13:37:10 arch kernel: Intel ISA PCIC probe: not found.
    Jun 24 13:37:10 arch kernel: Databook TCIC-2 PCMCIA probe: not found.
    Jun 24 13:37:10 arch kernel: drivers/usb/host/uhci-hcd.c: USB Universal Host Controller I
    nterface driver v2.1
    Jun 24 13:37:10 arch kernel: drivers/usb/core/usb.c: registered new driver hiddev
    Jun 24 13:37:10 arch kernel: drivers/usb/core/usb.c: registered new driver hid
    Jun 24 13:37:10 arch kernel: drivers/usb/input/hid-core.c: v2.0:USB HID core driver
    Jun 24 13:37:10 arch kernel: mice: PS/2 mouse device common for all mice
    Jun 24 13:37:10 arch kernel: input: PC Speaker
    Jun 24 13:37:10 arch kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    Jun 24 13:37:10 arch kernel: input: PS/2 Generic Mouse on isa0060/serio1
    Jun 24 13:37:10 arch kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Jun 24 13:37:10 arch kernel: input: AT Translated Set 2 keyboard on isa0060/serio0
    Jun 24 13:37:10 arch kernel: md: linear personality registered as nr 1
    Jun 24 13:37:10 arch kernel: md: raid0 personality registered as nr 2
    Jun 24 13:37:10 arch kernel: md: raid1 personality registered as nr 3
    Jun 24 13:37:10 arch kernel: md: raid5 personality registered as nr 4
    Jun 24 13:37:10 arch kernel: raid5: measuring checksumming speed
    Jun 24 13:37:10 arch kernel:    8regs     :  2016.000 MB/sec
    Jun 24 13:37:10 arch kernel:    8regs_prefetch:  1916.000 MB/sec
    Jun 24 13:37:10 arch kernel:    32regs    :  1608.000 MB/sec
    Jun 24 13:37:10 arch kernel:    32regs_prefetch:  1300.000 MB/sec
    Jun 24 13:37:10 arch kernel:    pIII_sse  :  1764.000 MB/sec
    Jun 24 13:37:10 arch kernel:    pII_mmx   :  3716.000 MB/sec
    Jun 24 13:37:10 arch kernel:    p5_mmx    :  4980.000 MB/sec
    Jun 24 13:37:10 arch kernel: raid5: using function: pIII_sse (1764.000 MB/sec)
    Jun 24 13:37:10 arch kernel: md: multipath personality registered as nr 7
    Jun 24 13:37:10 arch kernel: md: md driver 0.90.0 MAX_MD_DEVS=256, MD_SB_DISKS=27
    Jun 24 13:37:10 arch kernel: device-mapper: 4.0.0-ioctl (2003-06-04) initialised: [email protected]
    istina.com
    Jun 24 13:37:10 arch kernel: NET: Registered protocol family 2
    Jun 24 13:37:10 arch kernel: IP: routing cache hash table of 8192 buckets, 64Kbytes
    Jun 24 13:37:10 arch kernel: TCP: Hash tables configured (established 262144 bind 65536)
    Jun 24 13:37:10 arch kernel: NET: Registered protocol family 1
    Jun 24 13:37:10 arch kernel: NET: Registered protocol family 10
    Jun 24 13:37:10 arch kernel: IPv6 over IPv4 tunneling driver
    Jun 24 13:37:10 arch kernel: NET: Registered protocol family 17
    Jun 24 13:37:10 arch kernel: ACPI: (supports S0 S1 S4 S5)
    Jun 24 13:37:10 arch kernel: md: Autodetecting RAID arrays.
    Jun 24 13:37:10 arch kernel: md: autorun ...
    Jun 24 13:37:10 arch kernel: md: ... autorun DONE.
    Jun 24 13:37:10 arch kernel: kjournald starting.  Commit interval 5 seconds
    Jun 24 13:37:10 arch kernel: EXT3-fs: mounted filesystem with ordered data mode.
    Jun 24 13:37:10 arch kernel: VFS: Mounted root (ext3 filesystem) readonly.
    Jun 24 13:37:10 arch kernel: Mounted devfs on /dev
    Jun 24 13:37:10 arch kernel: Freeing unused kernel memory: 240k freed
    Jun 24 13:37:10 arch kernel: Adding 262576k swap on /dev/discs/disc0/part2.  Priority:-1
    extents:1
    Jun 24 13:37:10 arch kernel: EXT3 FS on hda3, internal journal
    Jun 24 13:37:10 arch kernel: Real Time Clock Driver v1.12
    Jun 24 13:37:10 arch kernel: sis900.c: v1.08.07 11/02/2003
    Jun 24 13:37:10 arch kernel: eth0: Realtek RTL8201 PHY transceiver found at address 1.
    Jun 24 13:37:10 arch kernel: eth0: Using transceiver found at address 1 as default
    Jun 24 13:37:10 arch kernel: eth0: SiS 900 PCI Fast Ethernet at 0xcc00, IRQ 5, 00:d0:09:e
    c:66:13.
    Jun 24 13:37:10 arch kernel: intel8x0_measure_ac97_clock: measured 49499 usecs
    Jun 24 13:37:10 arch kernel: intel8x0: clocking to 48000
    Jun 24 13:37:10 arch kernel: Disabled Privacy Extensions on device c0572980(lo)
    Jun 24 13:37:10 arch kernel: eth0: Media Link On 100mbps full-duplex
    Jun 24 13:37:18 arch kernel: eth0: no IPv6 routers present
    I CD/DVD-ROM drive

  • Call function creatung new task

    Hi friends,
    I am running f110 in background...I have a Z function module which runs in update task....Insoide the z function module i have another rfc enabled function module where the updating of the docs is taking place....i am not able to get into the code of third fm through debugging...I have covered max scenarios of debugiing session external update system but none is fruitfull.
    also,i have put infinite loop to see in sm50 ...there also i dont have rights...
    could somebody tell me ow i get into the code through debugging
    kanishak

    Hi Kanishak,
    if you call the function creating NEW TASK, you won't get to debugger easily: The function is enqueued in a TRFC queue which you could stop - but as you are not allowed SM50 you won't be allowed TRFC  queue administration.
    If you are allowed to use transaction SAAB, you can create and activate a checkpoint group. Use statement LOG-POINT to record contents of some program fields. Then you can see what is happening in background of background.
    Regards,
    Clemens

  • Error while creating new user in Oracle 11i EBS

    I am getting following error while creating new user. How solve this issue?
    “Unable to load java class % specified profile option SIGNON_PASSWORD_CUSTOM. Please verify that the class exists and that it implements the java interface oracle.apps.fnd.security.PasswordValidation”.

    Following is the text from Note for Custom Password Validation logic:
    Customers who wish to use their own password validation logic may do
      so by writing their own Java classes that implement the
      oracle.apps.fnd.security.PasswordValidation Java interface.  The
      interface requires 3 methods to be implemented:
      1) public boolean validate(String user, String password)
        - This method takes a username and password, and then returns true
      or false, indicating whether the user's password is valid or invalid,
      respectively.
      2) public String getErrorStackMessageName()
        - This method returns the name of the message to display when the
      user's password is deemed invalid (i.e., the validate() method returns
      false).
      3) public String getErrorStackApplicationName()
        - This method returns the application shortname for the
      aforementioned error message.
      After writing the Java class to perform customized password
      validation, the customer must then set the value of the profile option
      SIGNON_PASSWORD_CUSTOM to be the full name of the class.  If, for
      example, the name of the Java class is
      oracle.apps.fnd.security.AppsPasswordValidation, then the value of the
      SIGNON_PASSWORD_CUSTOM profile option must be
      oracle.apps.fnd.security.AppsPasswordValidation.  Note that AOL/J
      will attempt to load this class dynamically.  Hence it is necessary to
      make the class accessible by AOL/J.  This means that in Forms, the
      class must first be loaded into the database using the loadjava
      command.
    You will need to apply the following patches for 11.5.1:
       1344802
       1363919
       1472974
       1351004
       1377615
    You will need to apply the following patches for 11.5.2:
       1377615

  • How To Add Additional Fields When Creating New Contact From w/in Mac Mail?

    Hi there. When in Mac Mail and clicking on contact information provided within an email, we are able to either (1) CREATE NEW CONTACT or (2) ADD TO EXISTING CONTACT (by clicking on the arrow next to a phone number, address, etc.). If I choose "Create New Contact," how can I add additional fields BEFORE clicking on "Add to Address Book" button in lower right corner? Let's say, for example, I know this new contacts URL or company. (Currently, I am creating the new contact from within Mac Mail and then going to Address Book and finding the contact, then editing, the adding the additional fields, then saving, and then going back to Mac Mail. This all takes time.)
    Note: When creating a new iCal event from within Mac Mail, we can click on Option/Alt key when selecting drop-down arrow...and this will allow us to add additional information. The same feature isn't available for address book???

    I have the exact same question and problem. If there was a way to automatically open the AB entry after "creating new contact" this would solve it.
    Thanks for any suggestion

  • Displaying new BI workbooks in portal

    Hi All,
    Here is the complete scenario:
    I have uploaded all existing BI roles onto portal using Role Upload. I have
    created new BI workbooks in the backend and save it to a BI role. In order for these new workbooks to get reflected on the portal, I have to use the Role Upload option again. This is a very tedious process. Is there any way that I can automate this process, wherein all new workbooks created in backend get automatically reflected in portal.
    Thanks,
    Tom

    Hi,
    Please refer the below links for BI Integration in Portal
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/b0a5216a-349c-2a10-9baf-9d4797349f6a&overridelayout=true
    http://help.sap.com/saphelp_nw04/helpdata/en/a3/7b583c2439e66fe10000000a114084/content.htm
    http://www.sdn.sap.com/irj/sdn/nw-datamanagement?rid=/library/uuid/a5067965-0901-0010-6f8a-bbf0b7424283
    Hope it helps you,
    Thanks & Regards,
    Ravi.

  • SQL Developer import from Excel or CSV not creating new table

    I am sure I have done this with previous version of SQL Developer. I am now running 1.5.4 with patches update from 5/27/2009. I am running on Windows XP. When I start the import wizard I get to the point were the varify button appears. I click Verify. Everything is successful. The next button is grayed out. The send to worksheet is not checked. I press the finish button and the new table is not created.
    I don't get any error message. I refresh my table list and the new table is not created. I can create new tables using SQL Developer so I don't think it can be a privelege problem. I know I did this a few weeks ago. I am not sure what version of SQL Developer I was running. But I have updated to the latest and greatest since then.

    I wanted to import and use my table data from MS Excel 2010 in SQL developer Version 3.1.05.
    I was told that SQL does not import .xls data. For that reason, I was searching for a script which Import data from excel to SQL developer. I tried many different forums DBS blogs. Then eventually I found the solution inside the SQL developer itself.
    In your Editor window, There would be options like,
    1. Columns | Data | Constraints |Grants | Sta...... "so on"
    2. In second row, you can find a drop box with certain table options. Select the last option "Import Data"
    THERE YOU GO.
    do accordingly to your need and you will get the data as well its scripts.
    I hope this would help you all. Thanks. :-)

  • Excel Split Window function

    Have imported an Excel speadsheet and am trying to freeze column titles so that they remain as you scroll down what is a large spreadsheet.
    Could do in Excel with "split window", but can't see any way of doing this in numbers.
    Any ideas gratefully received

    THIS IS NOT A "TRUE" SOLUTION TO THIS PROBLEM....but,
    I am a teacher and I use my computer to take care of my attendance. I had been using NeoOffice and it has the split-window feature...Numbers doesn't. Normally, I have had the dates string along from left to right from say Aug---Dec. This meant that i had to use the split window to keep track of whose name I was using. I decided to try and turn my spreadsheet around. Each week I add 5 more days to the left side of the table, nest to the names. Thus, I can keep track of the name and not lose the date. It is not the best solution, but it is an easy workaround. Provided your spreadsheet isn't huge already. The school year for me has just started so I only had two weeks of data to cut-and-paste to the "backwards" spreadsheet.
    Grades posed a similar problem. The grading template provided by Apple didn't cut it for my system. Besides, if you use their templates, as provided, the split-window problem quickly rears its ugly head. I had created a NeoOffice spreadsheet that contained Homework, Quizes, and Test information. This was not really workable in Numbers. So, I created a "sheet" with three tables each. One for homework, quizes, and tests respectively. This is working out quite well. I am also adding the new assignements to the left, not on the right as was my custom, next to the names of the students. This seems to be working quite well. Check with me towads the end of the semester to see if Numbers is still working for me....hahaha. Until Apple resolves this split-window problem I will continue to be cautious using Numbers. But, to their credit the multiple tables on one sheet works much better here than anything else I have tried. Plus, I really like the simplicity of Numbers.
    Good Luck.

  • Excel as a data source - Error when trying to create new univerise

    Hello,
    Running BO 4 Server (On Server Machine) and Client tools 4 (on my local laptop) . I have tried the following..
    Succesfully
    1. With the information tool  Created a project
    2.  Created a connection to  a excel file on a network drive as a source
    2. Published connection, created short cuts
    3. Created data foundation
    4. Creeated Business layers
    5. Linked all tables inserted summary etc (data can be viewed in the viewer)
    I publish everything above to the repository and everthing works perfectly.
    I have created the ODBC links to the excel file both on my local laptop and server using the 32 bit admin tool (ODBC) in windows.
    Current Issue
    When i log into the BI Launch pad and open web intellgence, i try to create new and use the univerise i have published. I receieve the following error.
    The dataSource cannot be generated for the specified dataSource name "zEmptyBusiness_Layer". (WIS 00000)
    com.businessobjects.sdk.core.server.CommunicationException$UnexpectedServerException: The dataSource cannot be generated for the specified dataSource name "zEmptyBusiness_Layer".
         at com.businessobjects.sdk.core.exception.ExceptionBuilder.make(ExceptionBuilder.java:144)
         at com.businessobjects.sdk.core.exception.ExceptionBuilder.make(ExceptionBuilder.java:101)
         at com.businessobjects.sdk.core.server.common.CommonRequestHandler.afterProcessing(CommonRequestHandler.java:127)
         at com.businessobjects.sdk.core.server.internal.AbstractServer.processIt(AbstractServer.java:178)
         at com.businessobjects.sdk.core.server.internal.AbstractServer.process(AbstractServer.java:133)
         at com.businessobjects.sdk.core.server.internal.InstanceServer.process(InstanceServer.java:94)
         at com.sap.sl.sdk.services.util.ServerRequestProcessor.processServerRequest(ServerRequestProcessor.java:49)
         at com.sap.sl.sdk.datasource.strategy.BuiltInDataSourceStrategyImpl.addDataProvider(BuiltInDataSourceStrategyImpl.java:99)
         at com.sap.sl.sdk.workspace.service.WorkspaceServiceImpl.addDataProvider(WorkspaceServiceImpl.java:77)
         at com.sap.sl.sdk.workspace.service.WorkspaceServiceImpl.addDataProvider(WorkspaceServiceImpl.java:60)
         at com.sap.webi.ui.context.managers.DataManager.addDataProviderFromDataSourceInfo(DataManager.java:382)
         at com.sap.webi.ui.tasks.workflows.AddDataProviderUITask.doIt(AddDataProviderUITask.java:106)
         at com.sap.webi.ui.tasks.workflows.AddDataProviderUITask.doIt(AddDataProviderUITask.java:19)
         at com.sap.webi.toolkit.ui.tasks.WebITask.doInBackground(WebITask.java:113)
         at javax.swing.SwingWorker$1.call(Unknown Source)
         at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
         at java.util.concurrent.FutureTask.run(Unknown Source)
         at javax.swing.SwingWorker.run(Unknown Source)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: com.businessobjects.sdk.core.server.ServerException: The dataSource cannot be generated for the specified dataSource name "zEmptyBusiness_Layer".
         at com.businessobjects.sdk.core.server.common.CommonRequestHandler.newServerException(CommonRequestHandler.java:260)
         at com.businessobjects.sdk.core.server.common.CommonRequestHandler.createAllServerExceptions(CommonRequestHandler.java:238)
         at com.businessobjects.sdk.core.server.common.CommonRequestHandler.afterProcessing(CommonRequestHandler.java:121)
         ... 18 more
    any help at all would be much appreciated

    Hi ,
    Go to : Control Panel - > Add / Remove Programs (or "Programs and Features" on win7) 
    looks for : SAP BusinessObjects BI Platform 4.0 Client Tool   <- that's the base install
    now look for an entry called   SAP BusinessObjects BI Platform 4.0 Client Tools  SP2  Patch2.8
    these are not automatic updates, it would require an installer be launched on your PC.
    Regards,
    H

  • I am looking for a spreadsheet app that I can create new spreadsheets. So far nothing looks promising, any suggestions or do I have to go to windows?

    I am looking for a spreadsheet app that I can create new spreadsheets. So far nothing looks promising, any suggestions or do I have to go to windows?

    Hi Tx Tar Heel,
    I've been using Office2HD: https://itunes.apple.com/us/app/office2-hd/id364361728?mt=8
    Its cheaper than Numbers and it also works for Word and PowerPoint files too. I like the Dropbox integration. I can start on my Office docs (Word, Excel, PowerPoint) in the office and then edit those files with Office2HD when I'm out of the office. Files saves right back to Dropbox so that when I get back to the office the files are already updated. Not bad for a $7.99 app!
    Hope this helps!
    ~Joe

Maybe you are looking for