Using HAL to extract and then load metadata

hi!
We are designing a process in which HAL is used to extract a dimension from Essbase and then loaded to another application using a load rule.
We are struggling with our attributes extraction, we have multiple attributes to an entity and when we extract it from Essbase it creates a string with a comma delimiter. Example
- Entity1, Store, +, "Attribute1,Attribute2,Attribute3",UDA1
Any ideas of how to remove the "? I have tried using formulas like Mid(String,1,Len(String)-1) - but it ignores the "
Thanks

You could run a macro in Excel's VBA editor that would extract each member of the dim and put each one in a column in a spreadsheet. The macro is ->
Sub mainSub()
x = EssVConnect("Sheet1", "admin", "password", "server", "appname", "dbname")
Set rng = Range("A1")
vt = EssVGetMemberInfo("Sheet1", "dimName", 2, False)
If IsArray(vt) Then
cbItems = UBound(vt) + 1
For i = 0 To UBound(vt)
rng.Value = vt(i)
Set rng = rng.Offset(1, 0)
Next
End If
End Sub
Of course you would need to have the EssVGetMemberInfo function declared, but it is a nice neet way to extract the members into separate cells in an Excel worksheet. And then it could be imported to a db cube.

Similar Messages

  • Hi, I was using my iPod Touch and then all of a sudden, the screen went black. So I held the the on and menu button to reboot it and so it shut of and came back on and been on the loading screen for an hour. What can I do to fix it?

    Hi, I was using my iPod Touch and then all of a sudden, the screen went black. So I held the on/off button and menu button to reboot it. So it turned off then back on but it has been stuck on the loading page for an hour. What's wrong with it?

    - Let the battery fully drain. After charging for at least an hour try here:
    iOS: Not responding or does not turn on

  • How can I get JavaScript to detect if flash is installed and then load a different URL?

    Hi, I've made two versions of the same site, one in flash and one in HTML, but I want the browser to detect what version of flash is installed, if any and then load the appropriate version of my site. I used to have it so that it displays a HTML message within the same window dependant on the whether the user has the right flash version or not and that used to work perfectly, so I think it must be to do with the changes I made to the if and else statements within the checkFlash() function.
    Here's how I've made it so far:
    <head>
         <script language="javascript"> AC_FL_RunContent = 0; </script>
         <script language="javascript"> DetectFlashVer = 0; </script>
         <script src="scripts/AC_RunActiveContent.js" language="javascript"></script>
         <script language="JavaScript" type="text/javascript">
              var requiredMajorVersion = 9;
              var requiredMinorVersion = 0;
              var requiredRevision = 24;
              var flashContent;
              function checkFlash() {
                   var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
                        if (hasRightVersion) {
                             window.open("http://www.yahoo.com");
                        else {
                             window.open("http://www.google.com");
         </script>
    </head>
    <body onLoad="checkFlash()">
    </body>
    but the checkFlash() function isn't working for some reason, please help, much appreciated.

    terryfoster wrote:
    Thanks Nancy O. Your post answered a few questions alas not the one I was after.
    I have a div with overflow hidden.
    Within this I wanted my content to slide in from the left to a positoin on the screen.
    I found the effect I am after on a site - www.hullwebsites.com but I cannot afford to buy a control which is licenced on a per use basis.
    So I am trying to come somewhere close with code of my own or a solution where I pay once for a single developer licence.
    Terry
    Sounds like you need a simple jQuery effect:
    <!DOCTYPE HTML PUBLIC>
    <html>
    <head>
    <meta http-equiv="charset=UTF-8">
    <title>Untitled Document</title>
    <script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
    <script>
    $(document).ready(function(){
    var slide = $("#slideIn");
    slide.animate({left:'60px'}).delay(2000);
    slide.animate({left:'-1000px'});
    </script>
    <style>
    #slideIn {
    position: absolute;
    width: 400px;
    top: 50px;
    padding: 20px;
    left: -1000px;
    background-color:#CCC;
    text-align: center;
    </style>
    </head>
    <body>
    <div id="slideIn">
    Hello!
    </div>
    </body>
    </html>

  • I want to loan my ipad to my husband for the summer. If I back it up, restore to factory settings and then load it is if it is his will i be able to get all my apps back?

    I want to loan my ipad to my husband for the summer. If I back up my ipad, reset my ipad to its factory settings and then load it on his imac will I be able to get my apps back later?

    You can backup your iPad to your computer then after that restore it to its factory default. Your husband will be able to use it like a brand new iPad and when he is done then you can plug it back into your computer and restore it to your backup. Everything should be there for you.

  • I have been using itunes all day and then it wanted me to install a newer version.  When I did it said I can't because it's missing mdsvr80 or something so i downloaded that now it has another error.  How do I get itunes back the way it was or to work?

    I have been using itunes all day and then it wanted me to install a newer version.  When I did it said I can't because it's missing mdsvr80 or something so i downloaded that now it has another error.  How do I get itunes back the way it was or to work?

    See this User Tip by turingtest2
    https://discussions.apple.com/docs/DOC-6562

  • Just finished using iTunes, closed out and then tried to get back in.  Got this message "he iTunes library .itl file is locked, on a locked disk, or you do not have write permission for this file."  How can I get back into iTunes ?

    I just finished using iTunes, closed out and then tried to get ack in.  Got this message "The iTunes library .9tl file is locked, on a locked disk, or you do not have write permission for this file."   How can I get back ino iTunes ?

    I actually figured it out...I had to go to the iTunes Library Extras.itdb file and give myself permission to have full control.  THEN, I could go and estore a previos version.  Once I had done this, I got the same message for iTunes Library Genius.itdb . . . I did the same thing with it and Voila'!!
    Hope this helps...
    SVT

  • What are the steps to make it seamless for a customer to use the install program and then use the installed program?

    I wrote an install program (.exe) that is downloaded from a website.  When run, it 1) leads a customer to browse to a directory, and 2) copies files (.exe, .dll, etc.) from a website to that directory.  When I run, the installed program works.
    What are the steps to make it seamless for a customer to use the install program and then use the installed program? 
    bhs67

    This site https://msdn.microsoft.com/en-us/library/vstudio/2kt85ked%28v=vs.110%29.aspx provides a basic description of the Visual Studio Windows Installer. 
    Near the bottom of the page is "You can unlock all the features of InstallShield by paying to upgrade to the full version of InstallShield."  Where do I find info that describes the differences between the "free" and the "full"
    versions?
    bhs67
    Hello,
    The default feature does support the task for your requirement, so there is no need to pay for the other features unless you want to use some feature which is not free.
    In addition, as this thread
    InstallShield LE not available with VS 2012 RTM? shared, even through there is a link to InstallShield LE in the New Project dialog under Deployment solutions, but it belongs to third-party that I would recommend you consider posting this issue
    at the following forum to get supports about InstallShield.
    http://community.flexerasoftware.com/forumdisplay.php?133-InstallShield
    Regards.
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I was using my iphone 4s and then the app started to not work and then my phone blocked and then when i go on home most of my apps disappeared including my settings so i cant restore with out disabling find my iphone on settings

    I was using my iphone 4s and then the app started to not work and then my phone blocked and then when i go on home most of my apps disappeared including my settings so i cant restore with out disabling find my iphone on settings please help me asap thankyou so much

    Log in to icloud.com on a web browser with your Apple ID and disable FMiP there.

  • I built an ad using layers saved it and then converted it to a jpeg. Now when I go into elements 11 to do anything else it will not allow to copy and paste to create a new layer. What am I missing?

    I built an ad using layers saved it and then converted it to a jpeg. Now when I go into elements 11 to do anything else it will not allow to copy and paste to create a new layer. What am I missing?

    You know that you lost the layers when you saved it as a jpeg, right? But you're saying you can't add layers to the jpeg now when it's open in the editor? Go to Image>mode and be sure it's RGB, for starters. Are all the commands in the Layer menu grayed out?

  • I edit movies onMac OS X using Final Cut Express and down load to desk top in .mov format. How do I load finished movie to i pad 2? i tunes will not transfer it.

    I edit movies onMac OS X using Final Cut Express and down load to desk top in .mov format. How do I load finished movie to i pad 2? i tunes will not transfer it. Thanks, stevefromnorthfreo

    Try outputting it as a MP4 or M4V
    If Final Cut won't output it, Mpegstreamclip will convert it. So will Quicktime if you have the pro version.

  • Did anyone else notice the new Iain Banks Audiobook Use of Weapons appear and then quickly disappear from the store a few days ago, or did I imagine the whole thing?

    Did anyone else notice the new Iain Banks Audiobook 'Use of Weapons' appear and then quickly disappear from the store a few days ago, or did I imagine the whole thing?

    Did anyone else notice the new Iain Banks Audiobook 'Use of Weapons' appear and then quickly disappear from the store a few days ago, or did I imagine the whole thing?

  • Hey plz help me out!!  i am using macbook pro 10.5.8..... and was using photobooth...and then after some time i opened it and there was no green light on cam, and it displayed nothing! plz tell me how to fix it! i want to see my face again!!! plz help me

    hey plz help me out!!  i am using macbook pro 10.5.8..... and was using photobooth...and then after some time i opened it and there was no green light on cam, and it displayed nothing! plz tell me how to fix it! i want to see my face again!!! plz help me

    iSight troubleshooting
    http://support.apple.com/kb/HT2090

  • HT2476 i just installed an update my version is now MAC OS X 10.7.5 and now imovie is no longer working. it just uses heaps of CPU and then stops responding. please help

    i just installed an update my version is now MAC OS X 10.7.5 and now imovie is no longer working. it just uses heaps of CPU and then stops responding. please help.
    I cannot find any fixes online and i don't know what to do

    here is the message. i tried deleting all my video files in iphoto and it still does not work.
    Date/Time:  
    2014-01-29 22:30:55 +1100
    OS Version: 
    10.7.5 (Build 11G63)
    Architecture:
    x86_64
    Report Version:  9
    Command:    
    iMovie
    Path:       
    /Applications/iMovie.app/Contents/MacOS/iMovie
    Version:    
    9.0.3 (1633)
    Build Version:   1
    Project Name:
    iMovieApp
    Source Version:  16330000
    App Item ID:
    408981434
    App External ID: 3879328
    Parent:     
    launchd [124]
    PID:        
    858
    Event:      
    hang
    Duration:   
    1.13s
    Steps:      
    12 (100ms sampling interval)
    Pageins:    
    0
    Pageouts:   
    0
    Process:    
    iMovie [858]
    Path:       
    /Applications/iMovie.app/Contents/MacOS/iMovie
    Architecture:
    i386
    UID:        
    501
      Thread 0x3d39 
      User stack:
    12 ??? (in iMovie) [0x2a6e]
    12 ??? (in iMovie) [0x31b3]
    12 NSApplicationMain + 1054 (in AppKit) [0x97478ac5]
    12 -[NSApplication run] + 911 (in AppKit) [0x971e7ac1]
    12 ??? (in iMovie) [0x44e47]
    12 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113 (in AppKit) [0x971eb752]
    12 _DPSNextEvent + 678 (in AppKit) [0x971ebee8]
    12 BlockUntilNextEventMatchingListInMode + 88 (in HIToolbox) [0x935b671a]
    12 ReceiveNextEventCommon + 168 (in HIToolbox) [0x935b67d6]
    12 RunCurrentEventLoopInMode + 318 (in HIToolbox) [0x935af543]
    12 CFRunLoopRunInMode + 120 (in CoreFoundation) [0x932f3088]
    12 CFRunLoopRunSpecific + 332 (in CoreFoundation) [0x932f31dc]
    12 __CFRunLoopRun + 1888 (in CoreFoundation) [0x932f3cd0]
    12 __CFRunLoopDoTimer + 743 (in CoreFoundation) [0x93314c37]
    12 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 22 (in CoreFoundation) [0x933152a6]
    12 __NSFireDelayedPerform + 615 (in Foundation) [0x9bc19792]
    12 ??? (in iMovie) [0x101a28]
    12 ??? (in iMovie) [0x1055e2]
    12 -[NSTableView selectRowIndexes:byExtendingSelection:] + 160 (in AppKit) [0x9735ba98]
    12 -[NSTableView _doSelectIndexes:byExtendingSelection:indexType:funnelThroughSingleIndexVersion :] + 3073 (in AppKit) [0x9735c6a3]
    12 -[NSTableView _enableSelectionPostingAndPost] + 428 (in AppKit) [0x97332b61]
    12 -[NSTableView _sendSelectionChangedNotificationForRows:columns:] + 174 (in AppKit) [0x9735d75c]
    12 -[NSNotificationCenter postNotificationName:object:] + 55 (in Foundation) [0x9bc25272]
    12 -[NSNotificationCenter postNotificationName:object:userInfo:] + 92 (in Foundation) [0x9bc0ffde]
    12 _CFXNotificationPost + 2776 (in CoreFoundation) [0x93308688]
    12 ___CFXNotificationPost_block_invoke_1 + 275 (in CoreFoundation) [0x9333d903]
    12 __-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_1 + 49 (in Foundation) [0x9bc24df1]
    12 ??? (in iMovie) [0x1052a2]
    12 ??? (in iMovie) [0xac244]
    12 ??? (in iMovie) [0xbd5b3]
    12 ??? (in iMovie) [0xa3f6f]
    12 ??? (in iMovie) [0xb2352]
    12 ??? (in iMovie) [0xbd2a0]
    12 ??? (in iMovie) [0xa3fbc]
    12 ??? (in iMovie) [0xa2b61]
    12 ??? (in iMovie) [0xbeecb]
    12 ??? (in iMovie) [0xa2e99]
    12 ??? (in iMovie) [0xa3586]
    12 ??? (in iMovie) [0xa1795]
    12 ??? (in iMovie) [0xa2939]
    12 ??? (in iMovie) [0xa3c71]
    12 ??? (in iMovie) [0x17e6d3]
    12 InsertMovieSegment + 50 (in QuickTime) [0x95414749]
    12 InsertMovieSegment_priv + 273 (in QuickTime) [0x952c53f6]
    12 PrivateInsertMovieSegment_priv + 2131 (in QuickTime) [0x952c4e0c]
    12 insertIntoExistingTrack + 47 (in QuickTime) [0x952c3ea0]
    12 PrivateInsertTrackSegment_priv + 361 (in QuickTime) [0x952f8c50]
    12 CopyTrackMedia_priv + 600 (in QuickTime) [0x952f89a4]
    12 MediaToMediaCopy_priv + 18723 (in QuickTime) [0x952f7ca1]
    12 MediaSTAddSampleReferencesS64 + 87 (in QuickTime) [0x95428dca]
    12 CallComponentDispatch + 29 (in CarbonCore) [0x9565845e]
    11 CallComponent + 223 (in CarbonCore) [0x95658415]
    11 Video2ComponentDispatch + 95 (in QuickTimeComponents) [0x9285d736]
    11 CallComponentFunctionWithStorageProcInfo + 30 (in CarbonCore) [0x956e247d]
    10 _ZL38CallComponentFunctionCommonWithStoragePPcP19ComponentParametersPFlvEm + 45 (in CarbonCore) [0x956e243d]
    10 callComponentStorage_442444444 + 90 (in CarbonCore) [0x956341b3]
    6 ??? (in QuickTimeComponents) [0x9285efeb]
    5 ??? (in QuickTimeComponents) [0x92e2033d]
    5 CallComponentDispatch + 29 (in CarbonCore) [0x9565845e]
    5 CallComponent + 223 (in CarbonCore) [0x95658415]
    5 STMediaComponentDispatch + 64 (in QuickTimeComponents) [0x92880a27]
    5 CallComponentFunctionWithStorageProcInfo + 30 (in CarbonCore) [0x956e247d]
    5 _ZL38CallComponentFunctionCommonWithStoragePPcP19ComponentParametersPFlvEm + 45 (in CarbonCore) [0x956e243d]
    5 callComponentStorage_442444444 + 90 (in CarbonCore) [0x956341b3]
    2 ??? (in QuickTimeComponents) [0x9289fbdf]
    2 CSMemSetHandleSize + 254 (in CarbonCore) [0x95617678]
    2 realloc + 138 (in libsystem_c.dylib) [0x9a8826d1]
    1 szone_size + 291 (in libsystem_c.dylib) [0x9a841df4]
    1 szone_size + 103 (in libsystem_c.dylib) [0x9a841d38]
    1 ??? (in QuickTimeComponents) [0x9289f941]
    1 ??? (in QuickTimeComponents) [0x92e1f78d]
    1 CallComponentDispatch + 29 (in CarbonCore) [0x9565845e]
    1 CallComponent + 223 (in CarbonCore) [0x95658415]
    1 Video2ComponentDispatch + 112 (in QuickTimeComponents) [0x9285d747]
    1 ??? (in QuickTimeComponents) [0x9289ed89]
    1 ??? (in QuickTimeComponents) [0x9289eb5d]
    1 CSMemGetHandleSize + 140 (in CarbonCore) [0x95617776]
    1 malloc_size + 50 (in libsystem_c.dylib) [0x9a880cfc]
    1 ??? (in QuickTimeComponents) [0x92e20340]
    2 ??? (in QuickTimeComponents) [0x9285f003]
    2 ??? (in QuickTimeComponents) [0x92e20865]
    2 CallComponentDispatch + 29 (in CarbonCore) [0x9565845e]
    1 CallComponent + 88 (in CarbonCore) [0x9565838e]
    1 CallComponent + 223 (in CarbonCore) [0x95658415]
    1 Video2ComponentDispatch + 43 (in QuickTimeComponents) [0x9285d702]
    1 DelegateComponentCall + 24 (in CarbonCore) [0x9565843c]
    1 CallComponent + 90 (in CarbonCore) [0x95658390]
    2 ??? (in QuickTimeComponents) [0x9285f00e]
    2 GetMediaDuration + 11 (in QuickTime) [0x95414a5b]
    1 ZeroOutMoviesError + 3 (in QuickTime) [0x952c12ea]
    1 ZeroOutMoviesError + 11 (in QuickTime) [0x952c12f2]
    1 MoviesGetPerThreadStorage + 68 (in QuickTime) [0x95215694]
    1 QTGetPerThreadStorage + 53 (in QuickTime) [0x952156d3]
    1 pthread_once + 0 (in libsystem_c.dylib) [0x9a82c43b]
    1 Video2ComponentDispatch + 0 (in QuickTimeComponents) [0x9285d6d7]
      Kernel stack:
    12 hndl_allintrs + 290 (in mach_kernel) [0xffffff80002da712]
    12 interrupt + 192 (in mach_kernel) [0xffffff80002c48d0]
    12 lapic_interrupt + 121 (in mach_kernel) [0xffffff80002c9ab9]
    12 cpu_signal_handler + 172 (in mach_kernel) [0xffffff80002cb9ac]
    12 sync_iss_to_iks + 118 (in mach_kernel) [0xffffff80002c3c76]
      Thread <multiple> DispatchQueue 1919904114
      User stack:
    36 start_wqthread + 30 (in libsystem_c.dylib) [0x9a8306fe]
    36 _pthread_wqthread + 346 (in libsystem_c.dylib) [0x9a82eb24]
    36 _dispatch_worker_thread2 + 231 (in libdispatch.dylib) [0x9b69501c]
    36 _dispatch_call_block_and_release + 15 (in libdispatch.dylib) [0x9b693fbd]
    36 ____NSOQSchedule_block_invoke_2 + 135 (in Foundation) [0x9bc6dffa]
    36 -[NSOperation start] + 67 (in Foundation) [0x9bc59ea7]
    36 -[__NSOperationInternal start] + 1177 (in Foundation) [0x9bc5a347]
    36 -[NSInvocationOperation main] + 267 (in Foundation) [0x9bd3f61a]
    36 -[NSInvocation invoke] + 137 (in CoreFoundation) [0x933559d9]
    36 __invoking___ + 29 (in CoreFoundation) [0x93355a9d]
    36 -[ILMediaManager _loadDataThreaded] + 514 (in iLifeMediaBrowser) [0x9174e183]
    24 -[ILMediaManager _performLoadData] + 599 (in iLifeMediaBrowser) [0x9174e591]
    24 -[ILMediaManager setRootMediaGroup:] + 336 (in iLifeMediaBrowser) [0x9174d445]
    24 -[ILMediaManager setRootMediaGroupInternal:] + 101 (in iLifeMediaBrowser) [0x9174d580]
    24 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 160 (in Foundation) [0x9bc61286]
    24 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 1236 (in Foundation) [0x9bc617f0]
    24 -[NSCondition wait] + 304 (in Foundation) [0x9bc6ebe8]
    24 pthread_cond_wait$UNIX2003 + 71 (in libsystem_c.dylib) [0x9a7e142c]
    24 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9ac0d83e]
    12 -[ILMediaManager _performLoadData] + 216 (in iLifeMediaBrowser) [0x9174e412]
    12 ??? (in iLMBiTunesPlugin) [0xbbe7b6d]
    12 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 160 (in Foundation) [0x9bc61286]
    12 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 1236 (in Foundation) [0x9bc617f0]
    12 -[NSCondition wait] + 304 (in Foundation) [0x9bc6ebe8]
    12 pthread_cond_wait$UNIX2003 + 71 (in libsystem_c.dylib) [0x9a7e142c]
    12 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9ac0d83e]
      Kernel stack:
    36 psynch_cvcontinue + 0 (in mach_kernel) [0xffffff800059e920]
      Thread 0x3d3f  
    DispatchQueue 1701273966
      User stack:
    12 _dispatch_mgr_thread + 53 (in libdispatch.dylib) [0x9b694853]
    12 __select_nocancel + 10 (in libsystem_kernel.dylib) [0x9ac0db5e]
      Kernel stack:
    12 wakeup + 992 (in mach_kernel) [0xffffff8000555e90]
      Thread 0x3dc1 
      User stack:
    12 start_wqthread + 30 (in libsystem_c.dylib) [0x9a8306fe]
    12 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x9ac0e02e]
      Kernel stack:
    12 workqueue_mark_exiting + 1408 (in mach_kernel) [0xffffff80005a50b0]
      Thread 0x3dc6 
      User stack:
    12 thread_start + 34 (in libsystem_c.dylib) [0x9a8306de]
    12 _pthread_start + 335 (in libsystem_c.dylib) [0x9a82ced9]
    12 __NSThread__main__ + 1606 (in Foundation) [0x9bc6cded]
    12 +[NSThread exit] + 18 (in Foundation) [0x9bc6ce3c]
    12 pthread_exit + 33 (in libsystem_c.dylib) [0x9a82e9a0]
    12 _pthread_exit + 146 (in libsystem_c.dylib) [0x9a82e64c]
    12 _pthread_tsd_cleanup + 176 (in libsystem_c.dylib) [0x9a875e67]
    12 __CFTSDFinalize + 94 (in CoreFoundation) [0x93307a9e]
    12 __NSFinalizeThreadData + 1419 (in Foundation) [0x9bc0f50a]
    12 _objc_rootRelease + 47 (in libobjc.A.dylib) [0x920e654e]
    12 ??? (in iMovie) [0x1529f1]
    12 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 160 (in Foundation) [0x9bc61286]
    12 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 1236 (in Foundation) [0x9bc617f0]
    12 -[NSCondition wait] + 304 (in Foundation) [0x9bc6ebe8]
    12 pthread_cond_wait$UNIX2003 + 71 (in libsystem_c.dylib) [0x9a7e142c]
    12 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9ac0d83e]
      Kernel stack:
    12 psynch_cvcontinue + 0 (in mach_kernel) [0xffffff800059e920]
      Thread 0x3dc8 
      User stack:
    12 thread_start + 34 (in libsystem_c.dylib) [0x9a8306de]
    12 _pthread_start + 335 (in libsystem_c.dylib) [0x9a82ced9]
    12 __NSThread__main__ + 1582 (in Foundation) [0x9bc6cdd5]
    12 -[NSThread main] + 45 (in Foundation) [0x9bc6ce25]
    12 ??? (in iMovie) [0xe4ce0]
    12 usleep$UNIX2003 + 60 (in libsystem_c.dylib) [0x9a7e1558]
    12 __semwait_signal + 10 (in libsystem_kernel.dylib) [0x9ac0dbb2]
      Kernel stack:
    12 semaphore_wait_continue + 0 (in mach_kernel) [0xffffff8000234650]
      Thread 0x3dca 
      User stack:
    12 thread_start + 34 (in libsystem_c.dylib) [0x9a8306de]
    12 _pthread_start + 335 (in libsystem_c.dylib) [0x9a82ced9]
    12 __select + 10 (in libsystem_kernel.dylib) [0x9ac0db42]
      Kernel stack:
    12 wakeup + 992 (in mach_kernel) [0xffffff8000555e90]
      Thread 0x3ddd 
      User stack:
    12 thread_start + 34 (in libsystem_c.dylib) [0x9a8306de]
    12 _pthread_start + 335 (in libsystem_c.dylib) [0x9a82ced9]
    12 ??? (in QuickTimeComponents) [0x9284d0ca]
    12 TSWaitOnSemaphoreRelative + 24 (in CarbonCore) [0x9562ef2e]
    12 TSWaitOnSemaphoreCommon + 490 (in CarbonCore) [0x9562f11d]
    12 TSWaitOnConditionTimedRelative + 178 (in CarbonCore) [0x9562f3a7]
    12 pthread_cond_timedwait_relative_np + 47 (in libsystem_c.dylib) [0x9a830f7b]
    12 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9ac0d83e]
      Kernel stack:
    12 psynch_cvcontinue + 0 (in mach_kernel) [0xffffff800059e920]
      Binary Images:
    0x1000 -   0x441feb  com.apple.iMovieApp 9.0.3 (1633) <799E1109-3D82-8582-3932-B2F57CCFE27A> /Applications/iMovie.app/Contents/MacOS/iMovie
       0xbbe1000 -  0xbbe9ff2  com.apple.iLMBiTunesPlugin 2.6.4 (288.4.6) <3BC0F592-8A14-3738-B959-10E108BAB976> /Library/Application Support/iLifeMediaBrowser/*/iLMBiTunesPlugin
      0x9170b000 - 0x9178aff7  com.apple.iLifeMediaBrowser 2.6.4 (502.4.5) <5C10CC72-586E-3497-9873-A0ACFB6156C3> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
      0x920de000 - 0x921b4aab  libobjc.A.dylib ??? (???) <2E272DCA-38A0-3530-BBF4-47AE678D20D4> /usr/lib/libobjc.A.dylib
      0x92260000 - 0x92fb1fff  com.apple.QuickTimeComponents.component 7.7.1 (2348) <BBFA6BA1-DF2F-32EA-9064-CE54EE7894C5> /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
      0x932b8000 - 0x9348ffe7  com.apple.CoreFoundation 6.7.2 (635.21) <4D1D2BAF-1332-32DF-A81B-7E79D4F0A6CB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
      0x935ad000 - 0x938f3ff3  com.apple.HIToolbox 1.9 (???) <E5EA9EEF-3CCA-36A0-8688-DA2E64E2256C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
      0x95214000 - 0x95499fe3  com.apple.QuickTime 7.7.1 (2348) <DAA61DE5-ED45-3AAE-8030-351D2C636FF2> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
      0x955f1000 - 0x958f3fff  com.apple.CoreServices.CarbonCore 960.25 (960.25) <C613B0DA-B401-3DC7-B626-6E20D4DDC8A8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
      0x971e2000 - 0x97c77ff6  com.apple.AppKit 6.7.5 (1138.51) <B9D3DCA0-9765-354E-9730-75A45A97DDFD> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
      0x9a7d0000 - 0x9a89bfff  libsystem_c.dylib ??? (???) <52421B00-79C8-3727-94DE-62F6820B9C31> /usr/lib/system/libsystem_c.dylib
      0x9abf5000 - 0x9ac13ff7  libsystem_kernel.dylib ??? (???) <79179F83-457A-3539-A76B-E960D2108109> /usr/lib/system/libsystem_kernel.dylib
      0x9b693000 - 0x9b6a1fff  libdispatch.dylib ??? (???) <1B857064-288D-3919-B81A-38E9F4D19B54> /usr/lib/system/libdispatch.dylib
      0x9bc0d000 - 0x9bf17ff3  com.apple.Foundation 6.7.2 (833.25) <4C52ED74-A1FD-3087-A2E1-035AB3CF9610> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    Process:    
    Activity Monitor [213]
    Path:       
    /Applications/Utilities/Activity Monitor.app/Contents/MacOS/Activity Monitor
    Architecture:
    x86_64
    UID:        
    501
      Thread 0x656   
    DispatchQueue 1
      User stack:
    12 ??? (in Activity Monitor) [0x108c5977c]
    12 NSApplicationMain + 867 (in AppKit) [0x7fff92d5ceac]
    8 -[NSApplication run] + 470 (in AppKit) [0x7fff92ae09b9]
    8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135 (in AppKit) [0x7fff92ae407d]
    8 _DPSNextEvent + 659 (in AppKit) [0x7fff92ae4779]
    8 BlockUntilNextEventMatchingListInMode + 62 (in HIToolbox) [0x7fff889e53fa]
    8 ReceiveNextEventCommon + 355 (in HIToolbox) [0x7fff889e556d]
    8 RunCurrentEventLoopInMode + 277 (in HIToolbox) [0x7fff889de2bf]
    8 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8b534486]
    8 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8b534c74]
    8 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8b52c50c]
    8 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8831c67a]
    4 -[NSApplication run] + 555 (in AppKit) [0x7fff92ae0a0e]
    4 -[NSApplication sendEvent:] + 5593 (in AppKit) [0x7fff92b4a3a5]
    4 -[NSWindow sendEvent:] + 6306 (in AppKit) [0x7fff92bb0c98]
    3 -[NSToolbarItemViewer mouseDown:] + 4995 (in AppKit) [0x7fff92c85627]
    3 -[NSToolbarButton sendAction] + 68 (in AppKit) [0x7fff93132f3e]
    3 -[NSToolbarButton sendAction:to:] + 82 (in AppKit) [0x7fff93132ef0]
    3 -[NSObject performSelector:withObject:] + 61 (in CoreFoundation) [0x7fff8b58f70d]
    3 ??? (in Activity Monitor) [0x108c6f541]
    3 NSBeginAlertSheet + 155 (in AppKit) [0x7fff92d8e333]
    3 _NXDoLocalRunAlertSheet + 548 (in AppKit) [0x7fff92d8e0df]
    3 -[NSApplication beginSheet:modalForWindow:modalDelegate:didEndSelector:contextInfo:] + 134 (in AppKit) [0x7fff92d9819e]
    3 -[NSApplication _commonBeginModalSessionForWindow:relativeToWindow:modalDelegate:didEndSelector :contextInfo:] + 831 (in AppKit) [0x7fff92d97904]
    3 -[NSApplication _orderFrontModalWindow:relativeToWindow:] + 662 (in AppKit) [0x7fff92d97e3b]
    3 -[NSWindow _doOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 807 (in AppKit) [0x7fff92bddcf8]
    3 -[NSWindow _reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 1679 (in AppKit) [0x7fff92bde470]
    3 -[NSWindow(NSSheets) _orderFrontRelativeToWindow:] + 192 (in AppKit) [0x7fff930416e5]
    3 -[NSMoveHelper(NSSheets) _moveParent:andOpenSheet:] + 1606 (in AppKit) [0x7fff9303ff48]
    3 -[NSMoveHelper _doAnimation] + 1399 (in AppKit) [0x7fff93184178]
    3 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8b534486]
    3 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8b534c74]
    3 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8b52c50c]
    3 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8831c67a]
    1 -[NSControl mouseDown:] + 786 (in AppKit) [0x7fff92be57f6]
    1 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 489 (in AppKit) [0x7fff92c66b74]
    1 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1493 (in AppKit) [0x7fff92be69e3]
    1 -[NSWindow nextEventMatchingMask:] + 89 (in AppKit) [0x7fff92be6e03]
    1 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135 (in AppKit) [0x7fff92ae407d]
    1 _DPSNextEvent + 659 (in AppKit) [0x7fff92ae4779]
    1 BlockUntilNextEventMatchingListInMode + 62 (in HIToolbox) [0x7fff889e53fa]
    1 ReceiveNextEventCommon + 355 (in HIToolbox) [0x7fff889e556d]
    1 RunCurrentEventLoopInMode + 277 (in HIToolbox) [0x7fff889de2bf]
    1 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8b534486]
    1 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8b534c74]
    1 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8b52c50c]
    1 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8831c67a]
      Kernel stack:
    12 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff8000215930]
      Thread 0x65f   
    DispatchQueue 2
      User stack:
    12 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8df09316]
    12 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8831e7e6]
      Kernel stack:
    12 kqueue_scan + 416 (in mach_kernel) [0xffffff800053b4d0]
      Thread 0x3eb4 
      User stack:
    12 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff87656b85]
    12 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff8831e192]
      Kernel stack:
    12 workqueue_mark_exiting + 1408 (in mach_kernel) [0xffffff80005a50b0]
      Thread 0x3ec2 
      User stack:
    9 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff87656b85]
    9 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff8831e192]
      Kernel stack:
    9 workqueue_mark_exiting + 1408 (in mach_kernel) [0xffffff80005a50b0]
      Thread 0x3ec3 
      User stack:
    9 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff87656b85]
    9 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff8831e192]
      Kernel stack:
    9 workqueue_mark_exiting + 1408 (in mach_kernel) [0xffffff80005a50b0]
      Thread 0x3ec4 
      User stack:
    9 thread_start + 13 (in libsystem_c.dylib) [0x7fff87656b75]
    9 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff876538bf]
    9 __NSThread__main__ + 1575 (in Foundation) [0x7fff87faa6a2]
    9 -[NSThread main] + 68 (in Foundation) [0x7fff87faa72a]
    7 -[NSUIHeartBeat _heartBeatThread:] + 1727 (in AppKit) [0x7fff92d1911b]
    7 usleep + 53 (in libsystem_c.dylib) [0x7fff87609bb5]
    7 __semwait_signal + 10 (in libsystem_kernel.dylib) [0x7fff8831de42]
    2 -[NSUIHeartBeat _heartBeatThread:] + 741 (in AppKit) [0x7fff92d18d41]
    2 -[NSWindow(NSWindow_Theme) heartBeat:] + 291 (in AppKit) [0x7fff93184ec7]
    2 -[NSButtonCell(NSDefaultButtonIndicatorPrivate) heartBeat:] + 1859 (in AppKit) [0x7fff92df4afb]
    2 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 2373 (in AppKit) [0x7fff92cb172c]
    2 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 2373 (in AppKit) [0x7fff92cb172c]
    1 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 1435 (in AppKit) [0x7fff92cb1382]
    1 -[NSControl drawRect:] + 398 (in AppKit) [0x7fff92b64703]
    1 -[NSButtonCell drawWithFrame:inView:] + 488 (in AppKit) [0x7fff92b9e9cf]
    1 -[NSButtonCell drawBezelWithFrame:inView:] + 363 (in AppKit) [0x7fff92bd66bf]
    1 CUIDraw + 225 (in CoreUI) [0x7fff8ed2c904]
    1 CGRectIsEmpty + 0 (in CoreGraphics) [0x7fff8cedb75f]
    1 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 1066 (in AppKit) [0x7fff92cb1211]
    1 -[NSFocusStack focusView:inWindow:] + 295 (in AppKit) [0x7fff92b2ca57]
    1 objc_addExceptionHandler + 471 (in libobjc.A.dylib) [0x7fff8fac6419]
    1 read_address + 323 (in libobjc.A.dylib) [0x7fff8fac68e1]
      Kernel stack:
    7 semaphore_wait_continue + 0 (in mach_kernel) [0xffffff8000234650]
    2 hndl_allintrs + 290 (in mach_kernel) [0xffffff80002da712]
    2 interrupt + 192 (in mach_kernel) [0xffffff80002c48d0]
    2 lapic_interrupt + 121 (in mach_kernel) [0xffffff80002c9ab9]
    2 cpu_signal_handler + 172 (in mach_kernel) [0xffffff80002cb9ac]
    2 sync_iss_to_iks + 118 (in mach_kernel) [0xffffff80002c3c76]
      Binary Images:
    0x108c58000 -   
    0x108c85fff  com.apple.ActivityMonitor 10.7.4 (718) <8E691413-5892-3BE8-97D6-B62D873C903E> /Applications/Utilities/Activity Monitor.app/Contents/MacOS/Activity Monitor
    0x7fff87605000 -
    0x7fff876e2fef  libsystem_c.dylib ??? (???) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
    0x7fff87f50000 -
    0x7fff88269fff  com.apple.Foundation 6.7.2 (833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff88307000 -
    0x7fff88327fff  libsystem_kernel.dylib ??? (???) <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
    0x7fff889dc000 -
    0x7fff88d08fff  com.apple.HIToolbox 1.9 (???) <CCB32DEA-D0CA-35D1-8019-E599C8007AB6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff8b4fc000 -
    0x7fff8b6d0ff7  com.apple.CoreFoundation 6.7.2 (635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8ce4d000 -
    0x7fff8d7eba27  com.apple.CoreGraphics 1.600.0 (???) <576777EA-921B-3D94-98C3-40A9CF8EBD18> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff8df07000 -
    0x7fff8df15fff  libdispatch.dylib ??? (???) <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
    0x7fff8ed00000 -
    0x7fff8ed68ff7  com.apple.coreui 1.2.2 (165.11) <9316266A-39CA-3EC7-9C9E-726462CEFF4D> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff8fab5000 -
    0x7fff8fb99e5f  libobjc.A.dylib ??? (???) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
    0x7fff92adc000 -
    0x7fff936e2fff  com.apple.AppKit 6.7.5 (1138.51) <44417D02-6123-3FC3-A119-CE51BB4C3006> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    Process:    
    activitymonitord [215]
    Path:       
    /usr/libexec/activitymonitord
    Architecture:
    x86_64
    UID:        
    0
      Thread 0x665   
    DispatchQueue 1
      User stack:
    12 ??? (in activitymonitord) [0x1090d4ccc]
    12 ??? (in activitymonitord) [0x1090d649b]
    12 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8831e7e6]
      Kernel stack:
    12 kqueue_scan + 416 (in mach_kernel) [0xffffff800053b4d0]
      Binary Images:
    0x1090d4000 -   
    0x1090dcff7  activitymonitord ??? (???) <512E7906-3DBC-3F2B-932B-12AC84F03BDA> /usr/libexec/activitymonitord
    0x7fff88307000 -
    0x7fff88327fff  libsystem_kernel.dylib ??? (???) <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
    Process:    
    AppleSpell [189]
    Path:       
    /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:
    x86_64
    UID:        
    501
      Thread 0x4d3   
    DispatchQueue 1
      User stack:
    12 ??? (in AppleSpell) [0x1043e7a7c]
    12 ??? (in AppleSpell) [0x1043e7d2e]
    12 -[NSSpellServer run] + 74 (in Foundation) [0x7fff880acc76]
    12 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8b54419f]
    12 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8b534486]
    12 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8b534c74]
    12 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8b52c50c]

  • My ipod 5th gen crashed unexpectedly while i was using my facebook app and then i turned it off thinking it would restart and be alright but when i turned it on like ***?! some of the applications were gone and the setting and appstore and photos are gone

    my ipod 5th gen crashed unexpectedly while i was using my facebook app and then i turned it off thinking it would restart and be alright but when i turned it on like ***?! some of the applications were gone and the setting and appstore and photos and camera are gone like everything that is on it already .. please help me

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup. See:                                                
    iOS: How to back up                                                                                     
    - Restore to factory settings/new iOS device.             
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar                                      

  • TS1702 I can't install apps directly from my ipad. It says "can not connect to the iTunes Store". However I can load them on my i touch and then load the app Thursday wifi. Any ideal?

    I can't install apps directly from my ipad. It says "can not connect to the iTunes Store". However I can load them on my i touch and then load the app Thursday wifi. Any ideal?

    You will need to contact iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

Maybe you are looking for

  • Itunes 10.6.1.7 won't open

    There's no error message or anything. Whenever I try to run it it just gives me the loading cursor for a few seconds and then nothing. I don't know how to look for and fix the fault module in the problem report, so any help would be greatly appreciat

  • Documents in Third Party Processing.

    Hi        What are all the documents that get created in Third Party Sales Processing? I am confused as to whether we create a delivery for the purchase order following sales order or we do just goods receipt followed by invoice receipt. Don't we cre

  • Here's a page that does not display properly...

    It seems that the Webkit based browsers do not display pages like the following properly: http://www.motogp.com/en/motogp/motogp_riders.htm?menu=riders In this example, both Safari v3.1 (5525.13) and OmniWeb 5.7-v621 have issues. Safari seems not to

  • Help please , iv emailed bt but been ignored .....

    help please , iv emailed bt but been ignored , iv phone but the operator had know idea what he was talking about . hope this is in the write forum . last year i applied to be on bt basic , the cheap one for if your on income support etc , it was exce

  • PIR consumption issue

    We have been having intermittent problems with our R/3 implementation (4.7C)for a long time. PIRs get consumed without explanation (i.e. no sales orders coming it to consume the forecast, which is expressed as PIRs). We suspect it might have somethin