FCP gone mad!!! Can anyone diagnose the problem?

I have an Imac, 2.4 GHz Intel Core 2 Duo procss, 4GB of memory. I have never had any problems rendering any of my videos, or exporting them to whatever was on my wildest dreams. Until now.
I've been trying to export a 6 minute short film. Initially, I had already exported it "Using QT conversion", H264 for the web, HD. All went well. Then I watched the film and thought I still needed a filter on it.
So I dropped this newly rendered movie on a brand new timeline, and applied a Looks filter on it. Now it won't render. (the reason I didn't apply the filter to the original film is that there are several video tracks one on top of the other, so I thought I'd take a short cut)
What happens now is that I'll set up the in and out points, and export to the same settings as before, and it will even start exporting, for hours. Around the 5th hour or so I get a message saying "can't render this depth". The video even gets done! But when you watch it, all you get are these colorful blobs floating around the screen against a black background. Whaaaat???
Has anyone ever seen this? Is there a solution? What am I doing wrong?
Here's a grab of what I'm talking about:
[IMG]http://i233.photobucket.com/albums/ee134/tonyeua/Picture19.jpg[/IMG]

You're missing the point. What you edit and what you post online are entirely different things. First you edit with a proper codec, THEN you encode to a delivery codec and upload. If you want to re-edit, either go back to your original, make the changes, then re-encode, or convert the H.264 back to an editing codec, make the changes, and re-encode. You're trying to skip the step of using a proper editing codec. It's like trying to make soup without a pot.

Similar Messages

  • Hi, Can anyone encounter the problem that you couldn't update your apps from Mac book pro??

    Hi, Can anyone encounter the problem that you couldn't update your apps from Mac book pro??
    Currently, my mac can't update any of the software from App store as well as bulit in software like garageband.

    yeah...
    i did that but it didn't work.
    Every times, i click on the software updates, software updates dialog box is popping up and
    checking for new updates.
    After that, acknowledged me whether i want to update or not.
    once, i click on "install".
    it appears following message.
    "A network error has occurred. Check your Internet connection, and then try again."
    i totally can access to Internet as i can browser all the websites.
    Please help me, is it a "virus" or "malware" causing my mac?.
    i just changed a new mac recently and having this problem

  • Can anyone spot the problem with this coding??

    can anyone spot this problem with my program. it keeps saying
    "missing return statement } " with a little arrow beneath the bracket.
    many thanks
    public class Game extends GameInterface
         GameInterface gameInt = new GameInterface();
         String boardString;
         // final static char NOUGHT='O', CROSS='X';
         private int square = 0;
         Player player1 = new Player();
         Player player2 = new Player();
         String firstPlayer, secondPlayer;
         public Game() // Constructor
              boardString = "0123456789";
    public boolean initialise(boolean first)
                   gameInt.setPlayerNames(player1,player2);
              MyPrint.myPrintln("Player one name is " + player1.getName());
              MyPrint.myPrintln("Player two name is " + player2.getName());
              String P1 = player1.getName();
              String P2 = player2.getName();
    }

    It means you declare your method to return something, but you don't actually return anything.

  • Can anyone spot the problem?

    Hey i've been workin on an applet which accepts two boolean equations with 3 variables and returns an answer telling if they are logically equal. When it comes to the PLUS and MINUS cases the program works fine. However in the TIMES and DIVIDE cases it returns at least one wrong answer, despite the fact i'm using the logical AND gate. For example if i enter x*y the program returns
    answer 1 = O, when (x,y)=(0,0)
    answer 2 = 1, when (x,y)=(1,0)
    answer 3 = O, when (x,y)=(0,1)
    answer 4 = 1, when (x,y)=(1,1)
    were answer 2 is wrong using an AND gate.
    Here is the for loop which passes the values
                 for (int y = 0; y < 2; y++)
                   for (int x = 0; x < 2; x++)
                       int d = MyParser.answer(x, y);
                       int doub = MyParser2.answer(x, y);
                       String eq = "";
                       if (d == doub) {
                         equal++;
                         count++;
                         eq = "equal\t";
                       else {
                         count++;
                         eq = "not equal";
                       tb1.append("\nAnswer was " + d + "\t " + eq + " " +
                                  "\t answer 2 was " + doub);
                   }and here is the code for the parser
    package Applet1;
    public final class Parse
      public Parse (String equation)
        parse (equation);
       public int answer(int x,int y, int z)
         return this.value(x,y,z);
       public int answer(int x,int y)
         return this.value(x, y);
       public int answer(int x)
         return this.value(x);
       public int value(int x)
         return val(x, 0, 0);
       public int value(int x, int y)
         return val(x, y, 0);
       public int value(int x, int y, int z)
         return val(x, y, z);
       public String getEquation()
        return equation;
      private String equation;
      private byte[] code;
      private int[] stack;
      private int[] constant;
      private int pos = 0, constantCt = 0, codeSize = 0;
      private static final byte
      PLUS = -1,   MINUS = -2,   TIMES = -3,   DIVIDE = -4,
      UNARYMINUS = -5, VARIABLEX = -6, VARIABLEY = -7, VARIABLEZ = -8;
      private char next()
        if (pos >= equation.length())
        return 0;
        else
        return equation.charAt(pos);
      private void skip()
        while (Character.isWhitespace(next()))
        pos++;
      private int val(int variableX, int variableY, int variableZ)
       try
         int top = 0;
         for (int i=0; i < codeSize; i++)
           if (code[i] >= 0)
             stack [top++] = constant [code ];
    else if (code [i] >= UNARYMINUS)
    int y = stack[--top];
    int x = stack[--top];
    int w;
    int ans = (int) Double.NaN;
    switch (code[i])
    case PLUS: ans = x | y;
    break;
    case MINUS: ans = (x) & (~y);
    break;
    case TIMES: ans = x & y;
    break;
    case DIVIDE: ans = x & ~y;
    break;
    if (Double.isNaN(ans))
    return ans;
    stack [top++] = ans;
    else if (code[i] == VARIABLEX)
    stack [top++] = variableX;
    else if (code[i] == VARIABLEY)
    stack [top++] = variableY;
    else if (code[i] == VARIABLEZ)
    stack [top++] = variableZ;
    catch (Exception e)
    double b = Double.NaN;
    int i = (int) b;
    return i;
    double d2;
    if (Double.isInfinite(stack[0]))
    d2 = Double.NaN;
    int i2 = (int) d2;
    return i2;
    }else
    return stack[0];
    private void error (String message)
    throw new IllegalArgumentException
    ("Parse error: " + message + "\n");
    private int stackUse()
    int s = 0;
    int max = 0;
    for (int i = 0; i < codeSize; i++)
    if (code[i] >= 0 || code [i] == VARIABLEX || code[i] == VARIABLEY || code[i] == VARIABLEZ)
    s++;
    if (s > max)
    max = s;
    } else if (code[i] >= UNARYMINUS)
    s--;
    return max;
    private void parse (String equation)
    if (equation == null || equation.trim().equals(""))
    error ("No Data to be parsed");
    this.equation = equation;
    code = new byte[equation.length()];
    constant = new int [equation.length()];
    parseExpress();
    skip();
    int stackSize = stackUse();
    stack = new int[stackSize];
    byte[] c = new byte[codeSize];
    System.arraycopy(code,0,c,0,codeSize);
    code = c;
    int[] A = new int[constantCt];
    System.arraycopy(constant,0,A,0,constantCt);
    constant = A;
    private void parseExpress()
    boolean neg = false;
    skip();
    parseVaries();
    if (neg)
    code[codeSize++] = UNARYMINUS;
    skip();
    while (next() == '+' || next() == '-')
    char op = next();
    pos++;
    parseTerm();
    if (op =='+')
    code[codeSize++] = PLUS;
    else
    code[codeSize++] = MINUS;
    skip();
    private void parseTerm()
    parseFactor();
    skip();
    while (next() == '*' || next() == '/')
    char op = next();
    pos++;
    parseFactor();
    code[codeSize++] = (op == '*')? PLUS:MINUS;
    skip();
    private void parseFactor()
    parseVaries();
    skip();
    while (next() == '^')
    pos++;
    parseVaries();
    code[codeSize++] = UNARYMINUS;
    skip();
    private void parseVaries()
    skip();
    char ch = next();
    if (ch == 'x' || ch =='X')
    pos++;
    code[codeSize++] = VARIABLEX;
    else if (ch == 'y' || ch == 'Y')
    pos++;
    code[codeSize++] = VARIABLEY;
    else if (ch == 'z' || ch == 'Z')
    pos++;
    code[codeSize++] = VARIABLEZ;
    else if (ch == '(')
    pos++;
    parseExpress();
    skip();
    if (next () !=')')
    error("Right parenthesis needed");
    pos++;
    else if (ch == ')')
    error ("Need a left parenthesis");
    else if (ch == '+' || ch == '-' || ch == '*' || ch =='/' || ch =='^')
    error ("Operator" + ch + "\n found in unexpected position");
    else if (ch == 0)
    error ("Incorrect entry");
    else
    error ("Illegal character " + ch);
    Its not pretty i know and its missing a part to parse Digits and i'm using type casting for strange reasons, but it does work. Except for in these two cases, can anyone see why
    Thanks
    podger

    I'm not even entirely certain what you are trying to accomplish here.
    It looks wrong in any case.
    I can't see anything in the way of debugging, so heres my help for today:
    public void printCode(){
          System.out.println(equation + ":");
          for(int i=0; i<code.length; i++){
            switch(code){
    case PLUS: System.out.print("Plus "); break;
    case MINUS: System.out.print("Minus "); break;
    case TIMES: System.out.print("TIMES "); break;
    case DIVIDE: System.out.print("DIVIDE "); break;
    case UNARYMINUS: System.out.print("-"); break;
    case VARIABLEX: System.out.print("x "); break;
    case VARIABLEY: System.out.print("y ");break;
    case VARIABLEZ:System.out.print("z ");break;
    System.out.println();
    I suggest you parse a couple of expressions, and print out the code generated using this handy little method.
    Parse parse = new Parse("x+y");
    parse.printCode();       
    parse = new Parse("x*y");
    parse.printCode();(x+y) : x y Plus
    (x*y) : x
    I think you will find the problem in your parseExpress method (well one of your problems anyway)
    Also take a look at your ParseTerm function - I'm pretty sure that a * is meant to represent "TIMES" and not "PLUS"
    Did you ever thing about using switch statements rather than ifs?
    Good luck,
    evnafets

  • Crash Report - Can anyone explain the problem and solve?

    Date/Time:       2013-01-11 20:48:25 -0500
    OS Version:      10.8.2 (Build 12C60)
    Architecture:    x86_64
    Report Version:  11
    Command:         iTunes
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Version:         11.0.1 (11.0.1)
    Build Version:   1
    Project Name:    iTunes
    Source Version:  1101012001000000
    Parent:          launchd [138]
    PID:             1824
    Event:           hang
    Duration:        1.54s
    Steps:           16 (100ms sampling interval)
    Hardware model:  MacBook5,1
    Active cpus:     2
    Free pages:      259179 pages (+8876)
    Pageins:         31 pages
    Pageouts:        0 pages
    Process:         iTunes [1824]
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Architecture:    x86_64
    Parent:          launchd [138]
    UID:             501
    Task size:       34945 pages (+1)
    CPU Time:        0.048s
      Thread 0x120f4    DispatchQueue 1          priority 46       
      16 ??? (iTunes + 2040652) [0x10da7134c]
        16 ??? (iTunes + 2041027) [0x10da714c3]
          16 -[NSApplication run] + 517 (AppKit) [0x7fff889b0283]
            16 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128 (AppKit) [0x7fff889b8ed2]
              16 _DPSNextEvent + 685 (AppKit) [0x7fff889b9613]
                16 BlockUntilNextEventMatchingListInMode + 62 (HIToolbox) [0x7fff89daccd3]
                  16 ReceiveNextEventCommon + 356 (HIToolbox) [0x7fff89dace42]
                    16 RunCurrentEventLoopInMode + 209 (HIToolbox) [0x7fff89dad0a4]
                      16 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8a6a66b2]
                        16 __CFRunLoopRun + 1513 (CoreFoundation) [0x7fff8a6a7099]
                          16 __CFRunLoopDoTimer + 557 (CoreFoundation) [0x7fff8a6c18bd]
                            16 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20 (CoreFoundation) [0x7fff8a6c1da4]
                              16 ??? (iTunes + 1737628) [0x10da2739c]
                                16 ??? (iTunes + 1751620) [0x10da2aa44]
                                  16 ??? (iTunes + 1751810) [0x10da2ab02]
                                    16 ??? (iTunes + 7013669) [0x10df2f525]
                                      16 ??? (iTunes + 1751969) [0x10da2aba1]
                                        16 ??? (iTunes + 1752141) [0x10da2ac4d]
                                          16 ??? (iTunes + 1679227) [0x10da18f7b]
                                            16 ??? (iTunes + 5328035) [0x10dd93ca3]
                                              16 ??? (iTunes + 5442044) [0x10ddaf9fc]
                                                16 ??? (iTunes + 6897575) [0x10df12fa7]
                                                  16 ??? (iTunes + 6886548) [0x10df10494]
                                                    16 ??? (iTunes + 6885820) [0x10df101bc]
                                                      16 ??? (iTunes + 6877861) [0x10df0e2a5]
                                                        16 ??? (iTunes + 6879526) [0x10df0e926]
                                                          16 ??? (iTunes + 9436605) [0x10e17edbd]
                                                            16 ??? (iTunes + 9437030) [0x10e17ef66]
                                                              16 ??? (iTunes + 9434303) [0x10e17e4bf]
                                                                16 ??? (iTunes + 9434499) [0x10e17e583]
                                                                  16 AMDeviceStartSession + 125 (MobileDevice) [0x113f69847]
                                                                    16 send_session_start + 479 (MobileDevice) [0x113f64e7f]
                                                                      16 lockconn_enable_ssl + 16 (MobileDevice) [0x113f65b6f]
                                                                        16 lockssl_handshake + 674 (MobileDevice) [0x113f658f3]
                                                                          16 ssl3_connect + 669 (libssl.0.9.8.dylib) [0x7fff8e111ced]
                                                                            16 ssl3_get_server_certificate + 56 (libssl.0.9.8.dylib) [0x7fff8e112d78]
                                                                              16 ssl3_get_message + 386 (libssl.0.9.8.dylib) [0x7fff8e111572]
                                                                                16 ssl3_read_bytes + 2355 (libssl.0.9.8.dylib) [0x7fff8e119533]
                                                                                  16 ssl3_read_n + 361 (libssl.0.9.8.dylib) [0x7fff8e118489]
                                                                                    16 BIO_read + 168 (libcrypto.0.9.8.dylib) [0x7fff87ea2598]
                                                                                       16 read + 10 (libsystem_kernel.dylib) [0x7fff89b83ffa]
                                                                                        *16 hndl_unix_scall64 + 19 (mach_kernel) [0xffffff80002ced33]
                                                                                          *16 unix_syscall64 + 522 (mach_kernel) [0xffffff80005e182a]
                                                                                            *16 read_nocancel + 130 (mach_kernel) [0xffffff80005768e2]
                                                                                              *16 ??? (mach_kernel + 3631806) [0xffffff8000576abe]
                                                                                                *16 soreceive + 5579 (mach_kernel) [0xffffff8000599b4b]
                                                                                                  *16 sbwait + 175 (mach_kernel) [0xffffff800059cd5f]
                                                                                                    *16 msleep + 116 (mach_kernel) [0xffffff800056a344]
                                                                                                      *16 ??? (mach_kernel + 3579718) [0xffffff8000569f46]
                                                                                                        *16 lck_mtx_sleep_deadline + 87 (mach_kernel) [0xffffff8000226697]
                                                                                                          *16 thread_block_reason + 300 (mach_kernel) [0xffffff800022da0c]
                                                                                                            *16 ??? (mach_kernel + 190273) [0xffffff800022e741]
                                                                                                              *16 machine_switch_context + 366 (mach_kernel) [0xffffff80002b3d7e]
      Thread 0x12100    DispatchQueue 2          priority 48       
      16 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff863c99ee]
        16 kevent + 10 (libsystem_kernel.dylib) [0x7fff89b83d16]
         *16 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Thread 0x1210e    priority 46       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ??? (iTunes + 26322) [0x10d8856d2]
            16 ??? (iTunes + 1735562) [0x10da26b8a]
              16 CFRunLoopRun + 97 (CoreFoundation) [0x7fff8a6b5371]
                16 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8a6a66b2]
                  16 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8a6a6ee6]
                    16 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8a6a1803]
                      16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89b81686]
                       *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x12118    priority 46       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ??? [0x10f897212]
            16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89b81686]
             *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x1211a    priority 46       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 __select + 10 (libsystem_kernel.dylib) [0x7fff89b83322]
           *16 ??? (mach_kernel + 3581216) [0xffffff800056a520]
      Thread 0x1211c    priority 46       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ??? (iTunes + 26322) [0x10d8856d2]
            16 ??? (iTunes + 263529) [0x10d8bf569]
              16 CFRunLoopRun + 97 (CoreFoundation) [0x7fff8a6b5371]
                16 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8a6a66b2]
                  16 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8a6a6ee6]
                    16 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8a6a1803]
                      16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89b81686]
                       *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x12134    priority 46       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ??? (iTunes + 26322) [0x10d8856d2]
            16 ??? (iTunes + 1666317) [0x10da15d0d]
              16 ??? (iTunes + 1666501) [0x10da15dc5]
                16 ??? (iTunes + 263309) [0x10d8bf48d]
                  16 ??? (iTunes + 111128) [0x10d89a218]
                    16 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff89b830fa]
                     *16 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5d30]
      Thread 0x12135    priority 46       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ??? (iTunes + 1659554) [0x10da142a2]
            16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89b81686]
             *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x12138    priority 46       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ??? (iTunes + 26322) [0x10d8856d2]
            16 ??? (iTunes + 11091873) [0x10e312fa1]
              16 ??? (iTunes + 11092062) [0x10e31305e]
                16 __accept + 10 (libsystem_kernel.dylib) [0x7fff89b82996]
                 *16 hndl_unix_scall64 + 19 (mach_kernel) [0xffffff80002ced33]
                   *16 unix_syscall64 + 522 (mach_kernel) [0xffffff80005e182a]
                     *16 accept_nocancel + 442 (mach_kernel) [0xffffff800059faea]
                       *16 msleep + 116 (mach_kernel) [0xffffff800056a344]
                         *16 ??? (mach_kernel + 3579734) [0xffffff8000569f56]
                           *16 lck_mtx_sleep + 78 (mach_kernel) [0xffffff80002265fe]
                             *16 thread_block_reason + 300 (mach_kernel) [0xffffff800022da0c]
                               *16 ??? (mach_kernel + 190273) [0xffffff800022e741]
                                 *16 machine_switch_context + 366 (mach_kernel) [0xffffff80002b3d7e]
      Thread 0x12139    priority 46       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ??? (iTunes + 26322) [0x10d8856d2]
            16 ??? (iTunes + 11091873) [0x10e312fa1]
              16 ??? (iTunes + 11092062) [0x10e31305e]
                16 __accept + 10 (libsystem_kernel.dylib) [0x7fff89b82996]
                 *16 hndl_unix_scall64 + 19 (mach_kernel) [0xffffff80002ced33]
                   *16 unix_syscall64 + 522 (mach_kernel) [0xffffff80005e182a]
                     *16 accept_nocancel + 442 (mach_kernel) [0xffffff800059faea]
                       *16 msleep + 116 (mach_kernel) [0xffffff800056a344]
                         *16 ??? (mach_kernel + 3579734) [0xffffff8000569f56]
                           *16 lck_mtx_sleep + 78 (mach_kernel) [0xffffff80002265fe]
                             *16 thread_block_reason + 300 (mach_kernel) [0xffffff800022da0c]
                               *16 ??? (mach_kernel + 190273) [0xffffff800022e741]
                                 *16 machine_switch_context + 366 (mach_kernel) [0xffffff80002b3d7e]
      Thread 0x1213a    priority 46       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ??? (iTunes + 26322) [0x10d8856d2]
            16 ??? (iTunes + 1735562) [0x10da26b8a]
              16 CFRunLoopRun + 97 (CoreFoundation) [0x7fff8a6b5371]
                16 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8a6a66b2]
                  16 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8a6a6ee6]
                    16 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8a6a1803]
                      16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89b81686]
                       *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x1213d    priority 46       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ??? (iTunes + 26322) [0x10d8856d2]
            16 ??? (iTunes + 1735562) [0x10da26b8a]
              16 CFRunLoopRun + 97 (CoreFoundation) [0x7fff8a6b5371]
                16 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8a6a66b2]
                  16 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8a6a6ee6]
                    16 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8a6a1803]
                      16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89b81686]
                       *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x12144    priority 46       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ??? (iTunes + 26322) [0x10d8856d2]
            16 ??? (iTunes + 1735562) [0x10da26b8a]
              16 CFRunLoopRun + 97 (CoreFoundation) [0x7fff8a6b5371]
                16 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8a6a66b2]
                  16 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8a6a6ee6]
                    16 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8a6a1803]
                      16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89b81686]
                       *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x12165    priority 46       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ??? (iTunes + 26322) [0x10d8856d2]
            16 ??? (iTunes + 1735562) [0x10da26b8a]
              16 CFRunLoopRun + 97 (CoreFoundation) [0x7fff8a6b5371]
                16 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8a6a66b2]
                  16 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8a6a6ee6]
                    16 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8a6a1803]
                      16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89b81686]
                       *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x12198    priority 46       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ??? (iTunes + 26322) [0x10d8856d2]
            16 ??? (iTunes + 1735562) [0x10da26b8a]
              16 CFRunLoopRun + 97 (CoreFoundation) [0x7fff8a6b5371]
                16 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8a6a66b2]
                  16 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8a6a6ee6]
                    16 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8a6a1803]
                      16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89b81686]
                       *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x1224b    priority 46       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ??? (iTunes + 26322) [0x10d8856d2]
            16 ??? (iTunes + 333885) [0x10d8d083d]
              16 ??? (iTunes + 334295) [0x10d8d09d7]
                16 ??? (iTunes + 334400) [0x10d8d0a40]
                  16 ??? (iTunes + 334681) [0x10d8d0b59]
                    16 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff89b830fa]
                     *16 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5d30]
      Thread 0x12258    priority 55         cpu time   0.003s
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ??? (iTunes + 26322) [0x10d8856d2]
            16 ??? (iTunes + 108154) [0x10d89967a]
              16 ??? (iTunes + 108859) [0x10d89993b]
                16 ??? (iTunes + 111192) [0x10d89a258]
                  16 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff89b830fa]
                   *13 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5d30]
                   *3  hndl_unix_scall64 + 19 (mach_kernel) [0xffffff80002ced33]
                     *3  unix_syscall64 + 522 (mach_kernel) [0xffffff80005e182a]
                       *3  psynch_cvwait + 1340 (mach_kernel) [0xffffff80005b5c6c]
                         *3  thread_block_reason + 275 (mach_kernel) [0xffffff800022d9f3]
                           *3  ??? (mach_kernel + 187521) [0xffffff800022dc81]
                             *3  processor_idle + 227 (mach_kernel) [0xffffff800022f1c3]
                               *3  machine_idle + 282 (mach_kernel) [0xffffff80002b8c5a]
      Thread 0x12259    priority 53       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ??? (iTunes + 26322) [0x10d8856d2]
            16 ??? (iTunes + 333885) [0x10d8d083d]
              16 ??? (iTunes + 334295) [0x10d8d09d7]
                16 ??? (iTunes + 334400) [0x10d8d0a40]
                  16 ??? (iTunes + 334681) [0x10d8d0b59]
                    16 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff89b830fa]
                     *16 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5d30]
      Thread 0x1225a    priority 49         cpu time   0.032s
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ??? (iTunes + 26322) [0x10d8856d2]
            16 ??? (iTunes + 10858045) [0x10e2d9e3d]
              16 ??? (iTunes + 10859996) [0x10e2da5dc]
                16 ??? (iTunes + 11486992) [0x10e373710]
                  16 __semwait_signal + 10 (libsystem_kernel.dylib) [0x7fff89b83386]
                   *16 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233ec0]
      Thread 0x1225b    priority 49       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ??? (iTunes + 26322) [0x10d8856d2]
            16 ??? (iTunes + 10864213) [0x10e2db655]
              16 ??? (iTunes + 10864823) [0x10e2db8b7]
                16 ??? (iTunes + 10984651) [0x10e2f8ccb]
                  16 ??? (iTunes + 10983546) [0x10e2f887a]
                    16 __select + 10 (libsystem_kernel.dylib) [0x7fff89b83322]
                     *16 ??? (mach_kernel + 3581216) [0xffffff800056a520]
      Thread 0x1225c    priority 49       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ??? (iTunes + 26322) [0x10d8856d2]
            16 ??? (iTunes + 10865627) [0x10e2dbbdb]
              16 ??? (iTunes + 10866239) [0x10e2dbe3f]
                16 ??? (iTunes + 10983546) [0x10e2f887a]
                  16 __select + 10 (libsystem_kernel.dylib) [0x7fff89b83322]
                   *16 ??? (mach_kernel + 3581216) [0xffffff800056a520]
      Thread 0x1225d    priority 49       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ??? (iTunes + 26322) [0x10d8856d2]
            16 ??? (iTunes + 333885) [0x10d8d083d]
              16 ??? (iTunes + 334295) [0x10d8d09d7]
                16 ??? (iTunes + 334400) [0x10d8d0a40]
                  16 ??? (iTunes + 334681) [0x10d8d0b59]
                    16 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff89b830fa]
                     *16 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5d30]
      Thread 0x1225e    priority 49       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ??? (iTunes + 26322) [0x10d8856d2]
            16 ??? (iTunes + 333885) [0x10d8d083d]
              16 ??? (iTunes + 334295) [0x10d8d09d7]
                16 ??? (iTunes + 334400) [0x10d8d0a40]
                  16 ??? (iTunes + 334681) [0x10d8d0b59]
                    16 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff89b830fa]
                     *16 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5d30]
      Thread 0x1225f    priority 54         cpu time   0.011s
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ??? (iTunes + 26322) [0x10d8856d2]
            16 ??? (iTunes + 333885) [0x10d8d083d]
              16 ??? (iTunes + 334295) [0x10d8d09d7]
                16 ??? (iTunes + 334400) [0x10d8d0a40]
                  16 ??? (iTunes + 334681) [0x10d8d0b59]
                    16 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff89b830fa]
                     *16 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5d30]
      Thread 0x12298    priority 46       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ??? (iTunes + 1659608) [0x10da142d8]
            16 ??? (iTunes + 5425109) [0x10ddab7d5]
              16 ??? (iTunes + 5434399) [0x10ddadc1f]
                16 ??? (iTunes + 5327923) [0x10dd93c33]
                  16 ??? (iTunes + 1744535) [0x10da28e97]
                    16 ??? (iTunes + 1721155) [0x10da23343]
                      16 ??? (iTunes + 343928) [0x10d8d2f78]
                        16 ??? (iTunes + 1718190) [0x10da227ae]
                          16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89b81686]
                           *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x123e8    priority 46       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ??? (iTunes + 26322) [0x10d8856d2]
            16 ??? (iTunes + 3681174) [0x10dc01b96]
              16 ATHostConnectionReadMessage + 607 (AirTrafficHost) [0x11add98e2]
                16 ATProcessLinkCopyMessageFromChild + 162 (AirTrafficHost) [0x11adda917]
                  16 __select + 10 (libsystem_kernel.dylib) [0x7fff89b83322]
                   *16 ??? (mach_kernel + 3581216) [0xffffff800056a520]
      Thread 0x124d4    priority 46       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ??? (iTunes + 1659608) [0x10da142d8]
            16 ??? (iTunes + 5389705) [0x10dda2d89]
              16 ??? (iTunes + 1744535) [0x10da28e97]
                16 ??? (iTunes + 1721155) [0x10da23343]
                  16 ??? (iTunes + 343928) [0x10d8d2f78]
                    16 ??? (iTunes + 1718190) [0x10da227ae]
                      16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89b81686]
                       *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x124d5    priority 46       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ??? (iTunes + 26322) [0x10d8856d2]
            16 ??? (iTunes + 5395030) [0x10dda4256]
              16 ??? (iTunes + 5397085) [0x10dda4a5d]
                16 ??? (iTunes + 2900653) [0x10db432ad]
                  16 ??? (iTunes + 39087) [0x10d8888af]
                    16 ??? (iTunes + 5778820) [0x10de01d84]
                      16 ??? (iTunes + 5774178) [0x10de00b62]
                        16 ??? (iTunes + 5772517) [0x10de004e5]
                          16 ??? (iTunes + 5791052) [0x10de04d4c]
                            16 ??? (iTunes + 9435873) [0x10e17eae1]
                              16 ??? (iTunes + 9434055) [0x10e17e3c7]
                                16 __psynch_mutexwait + 10 (libsystem_kernel.dylib) [0x7fff89b83122]
                                 *16 psynch_mtxcontinue + 0 (mach_kernel) [0xffffff80005b46d0]
      Thread 0x125cb    priority 46       
    *16 ??? (mach_kernel + 3911792) [0xffffff80005bb070]
      Binary Images:
             0x10d87f000 -        0x10ec5eff7  com.apple.iTunes 11.0.1 (11.0.1) <7549F589-839F-3333-A22E-96E286948A74> /Applications/iTunes.app/Contents/MacOS/iTunes
             0x113f12000 -        0x113faffff  com.apple.mobiledevice 555.40 (555.40) <EBE1EADF-92BA-3D06-BF89-6B6E7D9AB2F3> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
             0x11add7000 -        0x11af58ff7  com.apple.AirTrafficHost 283 (283) <2CA9CDDC-1307-3608-8DBB-A868C61397C5> /System/Library/PrivateFrameworks/AirTrafficHost.framework/AirTrafficHost
          0x7fff84aa6000 -     0x7fff84b72fe7  libsystem_c.dylib <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
          0x7fff863c5000 -     0x7fff863daff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff87e7d000 -     0x7fff87f7ffff  libcrypto.0.9.8.dylib <74F165AD-4572-3B26-B0E2-A97477FE59D0> /usr/lib/libcrypto.0.9.8.dylib
          0x7fff88864000 -     0x7fff89491ff7  com.apple.AppKit 6.8 (1187.34) <1FF64844-EB62-3F96-AED7-6525B7CCEC23> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff89b71000 -     0x7fff89b8cff7  libsystem_kernel.dylib <C0535565-35D1-31A7-A744-63D9F10F12A4> /usr/lib/system/libsystem_kernel.dylib
          0x7fff89d4d000 -     0x7fff8a07dff7  com.apple.HIToolbox 2.0 <317F75F7-4B0F-35F5-89A7-F20BA60AC944> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff8a672000 -     0x7fff8a85bfff  com.apple.CoreFoundation 6.8 (744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8e101000 -     0x7fff8e138ff7  libssl.0.9.8.dylib <923945E6-C489-3406-903B-A362410753F8> /usr/lib/libssl.0.9.8.dylib
    *0xffffff8000200000 - 0xffffff800074033c  mach_kernel <69A5853F-375A-3EF4-9247-478FD0247333> /mach_kernel
    Process:         accountsd [187]
    Path:            /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
    Architecture:    x86_64
    Parent:          launchd [138]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       1344 pages
      Thread 0x582      DispatchQueue 1          priority 31       
      16 start + 1 (libdyld.dylib) [0x7fff8bd647e1]
        16 ??? (accountsd + 3048) [0x10ce3abe8]
          16 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8a6a66b2]
            16 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8a6a6ee6]
              16 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8a6a1803]
                16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89b81686]
                 *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x59d      DispatchQueue 2          priority 33       
      16 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff863c99ee]
        16 kevent + 10 (libsystem_kernel.dylib) [0x7fff89b83d16]
         *16 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Binary Images:
             0x10ce3a000 -        0x10ce3afff  accountsd <0982A50A-159D-3E63-A2EC-6447F3706436> /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
          0x7fff863c5000 -     0x7fff863daff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff89b71000 -     0x7fff89b8cff7  libsystem_kernel.dylib <C0535565-35D1-31A7-A744-63D9F10F12A4> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8a672000 -     0x7fff8a85bfff  com.apple.CoreFoundation 6.8 (744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8bd62000 -     0x7fff8bd65ff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff800074033c  mach_kernel <69A5853F-375A-3EF4-9247-478FD0247333> /mach_kernel
    Process:         AirPlayUIAgent [306]
    Path:            /System/Library/CoreServices/AirPlayUIAgent.app/Contents/MacOS/AirPlayUIAgent
    Architecture:    x86_64
    Parent:          launchd [138]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       4523 pages
      Thread 0x285b     DispatchQueue 1          priority 47       
      16 start + 1 (libdyld.dylib) [0x7fff8bd647e1]
        16 NSApplicationMain + 869 (AppKit) [0x7fff88954cb6]
          16 -[NSApplication run] + 517 (AppKit) [0x7fff889b0283]
            16 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128 (AppKit) [0x7fff889b8ed2]
              16 _DPSNextEvent + 685 (AppKit) [0x7fff889b9613]
                16 BlockUntilNextEventMatchingListInMode + 62 (HIToolbox) [0x7fff89daccd3]
                  16 ReceiveNextEventCommon + 356 (HIToolbox) [0x7fff89dace42]
                    16 RunCurrentEventLoopInMode + 209 (HIToolbox) [0x7fff89dad0a4]
                      16 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8a6a66b2]
                        16 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8a6a6ee6]
                          16 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8a6a1803]
                            16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89b81686]
                             *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x285f     DispatchQueue 2          priority 49       
      16 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff863c99ee]
        16 kevent + 10 (libsystem_kernel.dylib) [0x7fff89b83d16]
         *16 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Binary Images:
             0x10f875000 -        0x10f882ff7  com.apple.AirPlayUIAgent 1.4.5 (145.3) <32286CAA-F522-31D4-9800-42BE14F04184> /System/Library/CoreServices/AirPlayUIAgent.app/Contents/MacOS/AirPlayUIAgent
          0x7fff863c5000 -     0x7fff863daff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff88864000 -     0x7fff89491ff7  com.apple.AppKit 6.8 (1187.34) <1FF64844-EB62-3F96-AED7-6525B7CCEC23> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff89b71000 -     0x7fff89b8cff7  libsystem_kernel.dylib <C0535565-35D1-31A7-A744-63D9F10F12A4> /usr/lib/system/libsystem_kernel.dylib
          0x7fff89d4d000 -     0x7fff8a07dff7  com.apple.HIToolbox 2.0 <317F75F7-4B0F-35F5-89A7-F20BA60AC944> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff8a672000 -     0x7fff8a85bfff  com.apple.CoreFoundation 6.8 (744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8bd62000 -     0x7fff8bd65ff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff800074033c  mach_kernel <69A5853F-375A-3EF4-9247-478FD0247333> /mach_kernel
    Process:         AirPort Base Station Agent [200]
    Path:            /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
    Architecture:    x86_64
    Parent:          launchd [138]
    UID:             501
    Sudden Term:     Clean
    Task size:       549 pages
      Thread 0x63d      DispatchQueue 1          priority 31       
      16 start + 1 (libdyld.dylib) [0x7fff8bd647e1]
        16 ??? (AirPort Base Station Agent + 71957) [0x1092f9915]
          16 CFRunLoopRun + 97 (CoreFoundation) [0x7fff8a6b5371]
            16 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8a6a66b2]
              16 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8a6a6ee6]
                16 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8a6a1803]
                  16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89b81686]
                   *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x641      DispatchQueue 2          priority 33       
      16 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff863c99ee]
        16 kevent + 10 (libsystem_kernel.dylib) [0x7fff89b83d16]
         *16 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Thread 0x656      priority 31       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 __select + 10 (libsystem_kernel.dylib) [0x7fff89b83322]
           *16 ??? (mach_kernel + 3581216) [0xffffff800056a520]
      Thread 0x657      priority 31       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ??? (AirPort Base Station Agent + 72800) [0x1092f9c60]
            16 ??? (AirPort Base Station Agent + 10633) [0x1092ea989]
              16 ??? (AirPort Base Station Agent + 73571) [0x1092f9f63]
                16 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff89b830fa]
                 *16 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5d30]
      Binary Images:
             0x1092e8000 -        0x1092feff7  com.apple.AirPortBaseStationAgent 1.5.5 (155.7) <F3A0627B-7620-3A09-A390-3FEBA3DE9CCD> /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
          0x7fff84aa6000 -     0x7fff84b72fe7  libsystem_c.dylib <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
          0x7fff863c5000 -     0x7fff863daff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff89b71000 -     0x7fff89b8cff7  libsystem_kernel.dylib <C0535565-35D1-31A7-A744-63D9F10F12A4> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8a672000 -     0x7fff8a85bfff  com.apple.CoreFoundation 6.8 (744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8bd62000 -     0x7fff8bd65ff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff800074033c  mach_kernel <69A5853F-375A-3EF4-9247-478FD0247333> /mach_kernel
    Process:         aosnotifyd [111]
    Path:            /usr/sbin/aosnotifyd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       1302 pages
      Thread 0x326      DispatchQueue 1          priority 31       
      16 start + 1 (libdyld.dylib) [0x7fff8bd647e1]
        16 ??? (aosnotifyd + 36447) [0x10e316e5f]
          16 ??? (aosnotifyd + 35537) [0x10e316ad1]
            16 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x7fff8bf7f89e]
              16 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8a6a66b2]
                16 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8a6a6ee6]
                  16 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8a6a1803]
                    16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89b81686]
                     *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x336      DispatchQueue 2          priority 33       
      16 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff863c99ee]
        16 kevent + 10 (libsystem_kernel.dylib) [0x7fff89b83d16]
         *16 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Thread 0x125e9    priority 31       
      16 start_wqthread + 13 (libsystem_c.dylib) [0x7fff84aa7171]
        16 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff84abccb3]
          16 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff89b836d6]
           *16 ??? (mach_kernel + 3911280) [0xffffff80005bae70]
      Binary Images:
             0x10e30e000 -        0x10e355ff7  aosnotifyd <A9359981-2023-3781-93F1-89D423F0F712> /usr/sbin/aosnotifyd
          0x7fff84aa6000 -     0x7fff84b72fe7  libsystem_c.dylib <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
          0x7fff863c5000 -     0x7fff863daff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff89b71000 -     0x7fff89b8cff7  libsystem_kernel.dylib <C0535565-35D1-31A7-A744-63D9F10F12A4> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8a672000 -     0x7fff8a85bfff  com.apple.CoreFoundation 6.8 (744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8bd62000 -     0x7fff8bd65ff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
          0x7fff8bee5000 -     0x7fff8c241fff  com.apple.Foundation 6.8 (945.11) <A5D41956-A354-3ACC-9355-BE200072223B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    *0xffffff8000200000 - 0xffffff800074033c  mach_kernel <69A5853F-375A-3EF4-9247-478FD0247333> /mach_kernel
    Process:         App Store [615]
    Path:            /Applications/App Store.app/Contents/MacOS/App Store
    Architecture:    x86_64
    Parent:          launchd [138]
    UID:             501
    Task size:       51099 pages
      Thread 0xb3be     DispatchQueue 1          priority 46       
      16 ??? (App Store + 6164) [0x10ad53814]
        16 NSApplicationMain + 869 (AppKit) [0x7fff88954cb6]
          16 -[NSApplication run] + 517 (AppKit) [0x7fff889b0283]
            16 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128 (AppKit) [0x7fff889b8ed2]
              16 _DPSNextEvent + 685 (AppKit) [0x7fff889b9613]
                16 BlockUntilNextEventMatchingListInMode + 62 (HIToolbox) [0x7fff89daccd3]
                  16 ReceiveNextEventCommon + 356 (HIToolbox) [0x7fff89dace42]
                    16 RunCurrentEventLoopInMode + 209 (HIToolbox) [0x7fff89dad0a4]
                      16 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8a6a66b2]
                        16 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8a6a6ee6]
                          16 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8a6a1803]
                            16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89b81686]
                             *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0xb3ca     DispatchQueue 2          priority 48       
      16 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff863c99ee]
        16 kevent + 10 (libsystem_kernel.dylib) [0x7fff89b83d16]
         *16 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Thread 0xb3d7     priority 62       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 __NSThread__main__ + 1345 (Foundation) [0x7fff8bf7a612]
            16 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356 (Foundation) [0x7fff8bf1c586]
              16 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8a6a66b2]
                16 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8a6a6ee6]
                  16 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8a6a1803]
                    16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff89b81686]
                     *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0xb408     priority 46       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 __select + 10 (libsystem_kernel.dylib) [0x7fff89b83322]
           *16 ??? (mach_kernel + 3581216) [0xffffff800056a520]
      Thread 0xb418     priority 46       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x7fff90f6d36f]
            16 JSC::BlockAllocator::blockFreeingThreadMain() + 90 (JavaScriptCore) [0x7fff90f57d0a]
              16 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118 (JavaScriptCore) [0x7fff90d35d96]
                16 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff89b830fa]
                 *16 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5d30]
      Thread 0xb419     priority 46       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x7fff90f6d36f]
            16 JSC::MarkStackThreadSharedData::markingThreadMain() + 214 (JavaScriptCore) [0x7fff90eba606]
              16 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212 (JavaScriptCore) [0x7fff90eba724]
                16 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff89b830fa]
                 *16 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5d30]
      Thread 0xb42f     priority 46       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x7fff90f6d36f]
            16 WebCore::StorageThread::threadEntryPoint() + 154 (WebCore) [0x7fff86ee206a]
              16 ***::PassOwnPtr<WebCore::StorageTask> ***::MessageQueue<WebCore::StorageTask>::waitForMessageFilteredWithTimeout<bool (WebCore::StorageTask*)>(***::MessageQueueWaitResult&, bool (&)(WebCore::StorageTask*), double) + 81 (WebCore) [0x7fff8798f9b1]
                16 ***::ThreadCondition::timedWait(***::Mutex&, double) + 61 (JavaScriptCore) [0x7fff90d35d5d]
                  16 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff89b830fa]
                   *16 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5d30]
      Thread 0xb4eb     priority 46       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x7fff90f6d36f]
            16 JSC::BlockAllocator::blockFreeingThreadMain() + 90 (JavaScriptCore) [0x7fff90f57d0a]
              16 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118 (JavaScriptCore) [0x7fff90d35d96]
                16 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff89b830fa]
                 *16 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5d30]
      Thread 0xb4ec     priority 46       
      16 thread_start + 13 (libsystem_c.dylib) [0x7fff84aa7181]
        16 _pthread_start + 327 (libsystem_c.dylib) [0x7fff84aba742]
          16 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x7fff90f6d36f]
            16 JSC::MarkStackThreadSharedData::markingThreadMain() + 214 (JavaScriptCore) [0x7fff90eba606]
              16 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212 (JavaScriptCore) [0x7fff90eba724]
                16 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff89b830fa]
                 *16 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5d30]
      Binary Images:
             0x10ad52000 -        0x10add2fff  com.apple.appstore 1.2.1 (129.7) <31AAF1C2-2BE9-393B-ABFD-6D869F72E909> /Applications/App Store.app/Contents/MacOS/App Store
          0x7fff84aa6000 -     0x7fff84b72fe7  libsystem_c.dylib <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
          0x7fff863c5000 -     0x7fff863daff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff86ec3000 -     0x7fff87e7cfff  com.apple.WebCore 8536 (8536.26.14) <60029E1A-C1DB-3A1F-8528-4970058D8B3D> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
          0x7fff88864000 -     0x7fff89491ff7  com.apple.AppKit 6.8 (1187.34) <1FF64844-EB62-3F96-AED7-6525B7CCEC23> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff89b71000 -     0x7fff89b8cff7  libsystem_kernel.dylib <C0535565-35D1-31A7-A744-63D9F10F12A4> /usr/lib/system/libsystem_kernel.dylib
          0x7fff89d4d000 -     0x7fff8a07dff7  com.apple.HIToolbox 2.0 <317F75F7-4B0F-35F5-89A7-F20BA60AC944> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff8a672000 -     0x7fff8a85bfff  com.apple.CoreFoundation 6.8 (744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8bee5000 -     0x7fff8c241fff  com.apple.Foundation 6.8 (945.11) <A5D41956-A354-3ACC-9355-BE200072223B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation

    The problem is probably with one of your fonts.
    There was also a problem with postscript fonts in OSX 10.6.7 for which Apple issued a patch on their software update page.
    To find a problem font, try shutting down half your open fonts in Font Book, until the problem goes away. Then replace the problem font.
    Peter

  • Persisting kernel panic on my eMac, can't diagnose the problem.

    Believe it or not, I still own an old 2005 eMac. It's still a good piece of kit for ******* around on and I'd like to get a little more mileage out of it. My problem is every time I turn it on I get kernel panic. If I let the computer sit for a few months, it operates several minutes longer without incurring kernel panic. If I turn it back on an hour later, kernel panic occurs rather quickly. I've had some other problems too after it was suggested that I re-align the RAM: I got a fleshing light and no startup which I diagnosed to be something wrong with the RAM. A couple days later I started it up again and got a no-entry symbol instead of a grey apple symbol. A couple weeks after that I safe booted up fine and got a few minutes of use out of it before kernel panic hit again. My question is should I replace the RAM? Or it something much worse like a hard drive issue?

    Hi, have you blown the dust out of it lately?
    Do you know which exact Model it is?
    If you don't know the model, find the Serial# & use it on one of these sites, but don't post the Serial# here...
    http://www.chipmunk.nl/klantenservice/applemodel.html
    http://www.appleserialnumberinfo.com/Desktop/index.php
    How to find the serial number of your Apple hardware product...
    http://support.apple.com/kb/HT1349

  • ITunes crashes every time I try to open it. I have tried repair and re-installs of the program, to no avail. Can someone diagnose the problem?

    Problem signature:
      Problem Event Name:          APPCRASH
      Application Name:          iTunes.exe
      Application Version:          11.0.2.26
      Application Timestamp:          51253247
      Fault Module Name:          iTunes.dll
      Fault Module Version:          11.0.2.26
      Fault Module Timestamp:          51253239
      Exception Code:          c0000005
      Exception Offset:          00dd53b7
      OS Version:          6.1.7601.2.1.0.768.3
      Locale ID:          3081
      Additional Information 1:          0a9e
      Additional Information 2:          0a9e372d3b4ad19135b953a78882e789
      Additional Information 3:          0a9e
      Additional Information 4:          0a9e372d3b4ad19135b953a78882e789

    Post the first 50 lines only of the crash report
    Regards
    TD 

  • Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Reboot the machine holding Command and r keys down, you'll boot into Lion Recovery Partition
    In there will be Disk Utility, use that to select your Lion OS X Partition and Repair Permissions.
    After that is done reboot the machine and see if you can log in.
    If not repeat the above steps to get into Lion Recovery, get online and reinstall Lion again, it will overwrite the installed version and hopefully after that it wil work.
    Reboot and try again.
    If not follow my steps to create a Snow Leopard Data Recovery drive, then option boot from it and grab a copy of your files off the machine.
    Then reinstall all your programs onto the external drive like setting up a new machine, then use Disk Utility to erase the entire internal boot drive (select the drive media on the far left, not the partiton slightly indented) format Option: GUID , 1 partition OS X Extended and then use Carbon Copy Cloner to clone the external to the newly formatted internal drive. Once that is finished reboot and disconnect the external drive.
    Once you go that, boot into Snow Leopard and update to 10.6.8, use the AppStore and option click on Purchases and download Lion again and install.
    Lots of work, but there is no Lion disks.
    https://discussions.apple.com/message/16276201#16276201

  • I have just updated to Yosemite, but now I can't get the custom shortkeys to work. In Mavericks I had no problem whatsoever, but now even after googeling and restart no solution. Does anyone have the problem? All the other shortcuts work!

    I have just updated to Yosemite, but now I can't get the custom short-keys to work.
    In Mavericks I had no problem whatsoever, but now even after googeling and restart no solution.
    Does anyone have the problem? All the other shortcuts work!

    Hi Thomas,
    I can confirm the problem you are hitting. The XML test trace does not get recognized at all, and it defaults to Eclipse's basic Open File behaviour. I am not sure if it's because the format definition is missing, or if it's because something prevents the trace type from being recognized. I will open a bug about it.
    Thanks for identifying this issue!
    In the meantime, if you'd like to experiment with XML analyses, you can also take a look at the example at https://github.com/tracecompass/xml-analysis-example .
    Cheers,
    Alex

  • Hello! The question is this. In London, took the Iphone 5 as sim free, flew to Moscow put Simcoe, and he writes me that is locked to the operator O2. Can anyone encountered this problem? What to do? How to remove the Unlock?

    Hello! The question is this. In London, took the Iphone 5 as sim free, flew to Moscow put Simcoe, and he writes me that is locked to the operator O2. Can anyone encountered this problem? What to do? How to remove the Unlock?
    <Edited by Host>

    Look at your receipt. Does it say unlocked? It is possible to purchase both locked "sim free" and unlocked iPhones from Apple.
    ONLY the carrier an iPhone is locked to can legitimately unlock it.
    IF your receipt says that it was supposed to be unlocked, and it is not, call AppleCare. They should be able to straighten it out.

  • The trashcan is not showing up in the upper right-hand corner of my photos, so I can't delete them. Can anyone address this problem?

    The trashcan is not showing up in the right hand corner of my photos on my iPad. So I can't delete pictures. Can anyone solve this problem?

    Where did the photos come from ? Only photos taken with the iPad, copied onto it via the camera connection kit, or saved from emails/websites etc can be deleted directly on the iPad - photos that were synced from your computer are deleted by moving/removing/de-selecting them from where they were synced from on your computer and then re-syncing.

  • I'm trying to delete multiple pix in iPhoto that i stupidly made duplicates of without knowing, I've tried going into the applications folder and using image capture but i think I've missed a step , can anyone send the correct info / steps pls thanks

    I'm trying to delete multiple pix in iPhoto that i stupidly made duplicates of without knowing, I've tried going into the applications folder and using image capture but i think I've missed a step , can anyone send the correct info / steps pls thanks

    again image capture is not involved with deleting photos from iPhoto in any way ever
    the paid version of iPhoto Library Manager is very good for finding duplicates as is Duplicate Annihilator
    And I have no idea who told you this - or what it means - but re-read both of my opening statements
    I was told I could delete multpiles thru image capture by transferring my iPhoto library etc
    LN

  • I am new to FCP. I have a canon 60d camera and purchased fcpX. I was recommended to download mgep streamline and convert my files to prores422. I do not have an option for prores 422 in my download. How can I fix the problem.

    I am new to FCP. I have a canon 60d camera and purchased fcpX. I was recommended to download mgep streamline and convert my files to prores422. I do not have an option for prores 422 in my download. How can I fix the problem.Please help. There was another suggestion by vimeo.com to use applexdcam ex 1080p30. I do not have that either in my mpeg download.

    For future reference, you will most likely get more knowledgeable answers if you post in the FCP forum where the folks who use the product regularly hang out:
    https://discussions.apple.com/community/professional_applications/final_cut_pro_ x

  • I have set a passcode for my iphone and later I forgot it, and I tried it so many times but it was not correct now the iphone is disable it doesn't work in tune, can anyone solve this problem??

    I have set a passcode for my iphone and later I forgot it, and I tried it so many times but it was not correct now the iphone is disable it doesn't work in tune, can anyone solve this problem??

    You can solve this problem. Just follow these instructions:
    http://support.apple.com/kb/ht1212

  • The home button has stopped working on my iphone 5c. Did the same a few months ago and recovered 24hrs later. Can anyone explain this problem. Phone still in warranty. Had steam issue recently but this was after last home button episode.

    Have an iphone 5c 8g. The home button has stopped working. Did the same a few months ago and recovered 24hrs later. Can anyone explain this problem. Phone still in warranty. Had steam issue recently but this was after last home button episode and no evidence of damage.

    If you are playing in hockey arenas a lot or if you are bringing it into bathroom same time as shower it may not seem like much but overtime the steam can acquire and build up in the phones usb dock flex cable swell as the home button flex cable. Bring again into apple store and should be covered under warranty again. could also be a delay in a 8gb 5c software may just be very lag.

Maybe you are looking for

  • Value not flowing to CO-PA

    Hi, The requirement is to know the value of packing cost agaist sales from CO-PA. We did following configuration. Assigned cost component to value field. (We are maintaining standard costing) We are not getting any copa document while confirming the

  • How to find my program in smartform

    Hi Guys There is a Zsmartform developed also created Z driver program for that. that is not yet assigned in NACE . How can i know the that form is called by driver program . i want know  what is the driver program creted for that like finding in sap

  • Clearing Safari's cache - for website changes

    I'm modifying a website content. For example, I've just uploaded an image to replace an existing one. The new image is not displayed in Safari, even after: - Empty Caches - Restarting Safari Am I missing something? If I'm doing what I should be alrea

  • Material master - classification details

    Hello, we have material master with classification view- active now i wanted to down load all the materials - classification details (value maintained for the characteristics in classification view).. is there any table from which i can down load the

  • Displaying the field symbol result in ALV GRID

    hi.     I have a requirement to display the field symbol in ALV GRID. I am getting a error 'FIELD SYMBOL NOT YET BEEN ASSIGNED'  when i am calling the 'REUSE ALV GRID DISPLAY'. Can any one help me out..