TDMS open problem

I have a TMDS file but every time I try to open it it gives me the error 2500. I tried to solve it with TDMS Defragment.vi, but I don't know if I'm using it correctly or if it doesn't work.

You might want to try deleting the *.tdms_index file and then open the *.tdms file again.
If that fails, we might need some more info, e.g. how big is the file, what does it contain, what app was it recorded with.
Herbert

Similar Messages

  • Error 6 occurred at TDMS Open in TDMS

    Hi,
    I have a application that is using the TDMS VI's to generate a Logfile. 
    The application ran correctly for 12 days. (Each errors, and some parameters - every hours - was correctly written to my TDMS file).
    Then, the following error occured : 
    Error 6 occurred at TDMS Open in TDMS - Write data SubVI V1.2.vi->D2XX MultiTester V1.5.vi
    Possible reason(s):
    LabVIEW:  Generic file I/O error.
    =========================
    NI-488:  I/O operation aborted.
    I join my VI that manage the TDMS file. 
    The error seems to come from the VI "TDMS OPEN". The corresponding TDMS file is effectively at the specified path, and its content is OK (all expected infos are present). The file is called LogFile_0_1.TDMS. 
    Depending on the TDMS file size, the application automatically creates a new file. I tried to force that to get a new TDMS file (assuming that the active file was corrupted or blocked). A new TDMS file was created (LogFile_0_2.TDMS.) but only the first tab (root) was created. Then the same "Error 6 " was still present, exactly like before. 
    Do you think this problem can come from Windows?
    Or does it come from my application? What is not optimal, is that this "TDMS - Write data SubVI V1.2.vi" is called about every second, and the "TDMS OPEN" function is called unconditionally (even if no modification on the TDMS file are needed).
    How can we explain that this bug appears after about 12 days only? 
    I also join you the LogFile_0_1.TDMS that I converted to an Excel file, and the LogFile_0_2.TDMS that was not correctly created.
    Thank you in advance for your support.
    Michael 
    Solved!
    Go to Solution.
    Attachments:
    LogFile_0_1.xlsx ‏560 KB

    MarcoMauri wrote:
    My guess is that you forgot to close the TDMS file and each time your VI is called a reference is created.
    It could be that after a week the maximum possible number of references was reached, and you got the error.
    Regards,
    Marco
    Marco,
    That's not just a guess, that is a very real possibility.  And lets not forget the memory leaks from not closing references.
    ALWAYS close ANY references you create.  If you open a reference to a file, make sure you close it.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • TDMS Open error -2519 on CompactRIO

    I have a cRIO-9073 controller on which I am streaming analog input data at 40kHz from a 9215 module into a local TDMS file.  Data collection is triggered via a switch on a front panel -- turn the switch on and it starts recording the A/I data and streaming to disk, turn the switch off and I shut down the A/I and close the TDMS file.
    Everything seems to work fine but occasionally when I turn on the data collection switch I will get an error -2519 (LabVIEW could not load the TDMS file component) from the TDMS Open call.  If I turn off the data collection switch, then turn it back on, the next call to the TDMS Open function hangs and never returns.
    During this time I can see that other functions in my VIs are continuing to execute (other lights & values on my front panels continue to update), but I cannot stop the VI from within Labview on my windows development system -- hitting the stop button doesn't do anything.  It seems that the only solution is to reset power on the cRIO controller.
    Does anyone have any more details about this error -2519 or ever seen any problems with the TDMS Open function hanging?
    Thanks,
    AJ

    Just to add a bit more information, I was having a similar problem except the application (both Labview dev environment and the app executable) was crashing.  Searching Window's application log turned up this notice:
    Faulting application name: LabVIEW.exe, version: 10.0.0.4032, time stamp: 0x4c24f059
    Faulting module name: tdms.dll_unloaded, version: 0.0.0.0, time stamp: 0x4c91c585
    Exception code: 0xc0000005
    Fault offset: 0x3505eff8
    Faulting process id: 0x1e4c
    Faulting application start time: 0x01cbbdc6da377ab1
    Faulting application path: C:\Program Files\National Instruments\LabVIEW 2010\LabVIEW.exe
    Faulting module path: tdms.dll
    That exception code is an invalid memory access error.  Looks like tdms.dll was being unloaded in the brief time between closing a file and opening a new file but LV didn't quite keep up.  In any event, the workaround Herbert suggested stopped the crashes.

  • Can I define the filepath in "TDMS Open" through a dialog box instead of an explicit definition?

    I'm trying to access a TDMS datafile with "TDMS Open", but I can't ensure that it will always be in the same place.  I've got code that does what I want with the datafile, but I'd really like a dialog box that will generate the filepath.  I'd like to be able to navigate to where the file is, and when selected, define the filepath.
    I've seen this in other vis (if the filepath is left blank, it asks you for the file), but not here. Any thoughts on how to replicate it here?
    Solved!
    Go to Solution.

    File Dialog Express VI in the File I/O >> Advanced Files palette.

  • Image open problem in nokia 5230

    Dear All,
    I have nokia 5230 mobile & i am using from last 10 months but from past few days i am facing problem regarding image/songs open problem.  whenever i trying to open image my phone gets hang & it shows nothing in it but i have 100 pics in memory card, same problem is with songs whenever i put some songs in memry card but songs gallery after refreshing shows nothing.
    Please help me to resolve this issue.
    Vipul

    im not sure what to do about the images but the same happened with the songs. here is waht i did:
    1. make sure you have the latest firmware installed (fw. 50).
    2. when it is installed copy all tracks to pc and install nokia ovi music.
    3. delete the folder called 'music' on your memory card.
    4. open ovi music and add songs to playlists and copy to device. this will create a new folfre called 'music' and the error should be fixed
    if that fails you should try a program called lcg jukebox as this is a much better music player 

  • Desktop.open() Problem

    I recently put together an application that relied heavily on the Desktop.open( ) method and several other methods from the Desktop class. However, all of a sudden the Desktop.open() does not work. I believe I read some where that this was due to the ShellExecute function or dll or something like that.
    However, since my app is targetted at the Windows platform I resorted to using windows Explorer to launch the system default applications for files using a the code below
    public static void openFile(File file) {
      try {
        Runtime runtime = Runtime.getRuntime();
        runtime.exec( "explorer.exe \"" + file.getAbsolutePath() + "\"" );
      } catch(IOException) {
        ioe.printStackTrace();
        JOptionPane.showMessageDialog(null, "Could Not Open File Location: " + file.getAbsolutePath());
    }The code works as expected, but my problem is that I am loosing cross-platform functionality.
    Can any point my to solution to this Desktop.open( ) problem, or probably add the my list platform dependent launch procedures so at least the code works on Windows,Linux and Mac.
    ICE

    Thanks Andrew,
    I've do a more simple example of the problem. I create two files on "\\fiuu\proyectosShared", one called "test.txt" and the other one called "te st.txt". I execute your exact source for the who paths whith these results:
    File f = new File("//fiuu/proyectosShared/test.txt");
    System.out.println(f + "  exists: " + f.exists());
    dt.open(f);
    RESULT:
    \\fiuu\proyectosShared\test.txt  exists: true
    (notepads opens the file)The second test does'nt work:
    File f = new File("//fiuu/proyectosShared/te st.txt");
    System.out.println(f + "  exists: " + f.exists());
    dt.open(f);
    RESULT:
    \\fiuu\proyectosShared\te st.txt  exists: true
    Exception in thread "main" java.io.IOException: Failed to open file:////fiuu/proyectosShared/te%20st.txt. Error message: El sistema no puede hallar la ruta especificada.
         at sun.awt.windows.WDesktopPeer.ShellExecute(WDesktopPeer.java:59)
         at sun.awt.windows.WDesktopPeer.open(WDesktopPeer.java:36)
         at java.awt.Desktop.open(Desktop.java:254)
         at DesktopTest.main(DesktopTest.java:14)
    (translation of error message: System can't find specified path)I've also done some tests with Desktop.browse(file.toURI), and some others with no success.
    Something curious: try to execute Runtime.getRuntime().exec("explorer " + f.getAbsolutePath) for a file that has thow white spaces on his name....
    File f = new File("//fiuu/proyectosShared/te  st.txt");//with two white spaces
    System.out.println(f + "  exists: " + f.exists());
    Runtime.getRuntime().exec("explorer " + f.getAbsolutePath());
    \\fiuu\proyectosShared\te  st.txt  exists: trueSystem says:
    Explorador de Windows
    La ruta '\\fiuu\proyectosShared\te st.txt' no existe o no es un directorio.
    Aceptar  
    (spanish version of File not found alert message)Note that in alert message one white space of filename is lost!
    Thanks again
    Edited by: pakomail on Nov 24, 2008 6:12 AM

  • Oracle error - Open problem

    hi friends,
    on accessing the database i get this following error:
    Open Problem - ORA-01034: ORACLE not available ORA-27101: shared memory realm does not exist Execution Problemnull
    How can i resove it...

    Here's a wild idea.... check the Oracle site/documentation for suggestions ?

  • "TDMS Open.vi" won't open file if not administrator

    I have an app that I install and run from a subFolder of the program files folder, and there's a TDMS file that installs alongside it (it's a set of pattern match data that the app needs).  When the app calls "TDMS Open.vi" everything works fine if I'm logged on as an administrator, but I get an error 8 (file permission error).if I'm not.
    When I'm not an admin, I can run the exe that's in the same folder - why can't that exe then load the TDMS file?  What am I missing here?
    Copyright © 2004-2015 Christopher G. Relf. Some Rights Reserved. This posting is licensed under a Creative Commons Attribution 2.5 License.

    Ben wrote:
    crelf wrote:
    Why do I feel like I'm having an ACME Do-It-Yourself conversation?
    That's because you are used to LAVA.  We have trouble spelling TDMS or LVOOP on this forum.
    At least someone's watching   Thanks Ben!
    Copyright © 2004-2015 Christopher G. Relf. Some Rights Reserved. This posting is licensed under a Creative Commons Attribution 2.5 License.

  • FYI TDMS open and read on empty file gives no error's out

    I found that if you 'open' an empty (0 byte) file using TDMS open, you will not get any error messages when you open it, nor when you call functions such as "Get properties" or "List content", also no error when you close the TDMS file.
    If the file is non-empty, but not a valid TDMS file, TDMS open returns an error.
    I would have expected that I would get an error or a warning at least when trying to read a non-existant property or group, if not by the open function itself?!
    The 2013 snippet below creates a 1-byte or empty file in the local user temporary folder, closes the file, then attempts to open and read it as a TDMS file.  The temporary file is deleted afterwards.
    If the file is empty, NO errors or warnings occur at any point.  If the file is not empty, it fails on the TDMS open. (Note the sequence structure is because the path out of the tdms close is invalid if the tdms open failed.
    This could conceivably cause an issue if your program does not do additional fault checking to catch existing but empty files.  (Which of course shouldn't ever happen, but in some situations it could happen.)
    QFang
    CLD LabVIEW 7.1 to 2013

    Hooovahh
    I asked to list the channels in a named group.  If that named group did not exist, I would think that should at least be a warning,  but I could see how it should not be an error, it was just unexpected to me that reading a non existant group (in an empty file) did not indicate any issues at all.   To me, 'error out' should give a warning or an error if something unexpected happened, but I may just have stricter opinion on something that by nature is very philosophical and open for debate. (And there are always tradeoffs, overt checks and bounds in a function obviously leads to overhead, and TDMS is optimized for performance, so that may be one reason it is the way it is.)
    (This situation came up for me because when a file is first created, we datetime tag it and write a bunch of other meta-data to the file, then later (and over time) we add the spectrum goup + data.  [Edit] actually, in the old code, if the file existed, it was assumed to have been setup correctly. so if the group exists, the old code assumed all the meta data has already been written [end edit].. One of the many fixes possible, I'll rely on the 'found' boolean output of the parameter read instead of relying on the error/warning. If the datetime tag is found, the code will asume the file exists and has been filled with the meta data I expect.)
    Thoult ::  I wasn't sure, but in either case, my intent was to provide extra information, not 'knock you' for participating in the discussion, I hope thats not how I came accross.  English is a second language to me, so I sometimes come across 'wrong' from what I mean.
    QFang
    CLD LabVIEW 7.1 to 2013

  • TDMS streaming problems

    Hi forum,
    i have problems streaming a lot of data to a file. I am using  write to measurment file with tdms in the while loop but my pc is to slow to do this streaming (100Ks/s for 10s). 
    For optimizing i was thinking to open a tdms file outside the while loop stream it to file in the recording state and then read it to another file in the logging state, clear it and i could stream again.
    But can i delate data from the tdms format, or is there something easier to do?
    Thanks and best
    Martin

    Where is the data coming from?
    You definately should be opening the file before your loop and closing it after your loop.  You can then write as much as you want inside of the loop.  Nothing extra should be needed.
    But if this data is coming from a DAQmx task, use the DAQmx Configure Logging and it will stream the data to disk for you.  You just have to tell it where to put the file.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • BI 7.0 Infoset query open problem: query_tech_name_Fxx is not a valid char.

    Our BASIS transport our BW 3.5 queries to BI 7.0 system.  We can open all queries on the BI 7.0 box without problem except Infoset queries.  The Infoset is composed of two ODSs and when openning it BI 7.0 query designer, can not see any design element in the panes of Rows, Columns, Free Char. and etc., instead the error msg shows (in between two dashed lines below):
    Terminate: query_technical_name_Fxx is not a valid characteristic for InfoProvider [A122(BRAIN)]
    Diagnosis
    Customer enhancement RSR00002 or the implementation of BAdI RSR_OLAB_BADI delivers query_technical_name_Fxx as the characteristic to be calculated. 1. is, however, not a valid key figure for InfoProvider .
    System Response
    The information from query_technical_name_Fxx is ignored.
    Procedure
    Check the exit.
    Procedure for System Administration
    We've checked the enhancement RSR00002 and it's components and find they are all the same as our BW 3.5 system.  query_technical_name_Fxx is Company Code InfoObj. in one ODS and it's one of the key to join these two InfoSets.
    Any idea?
    Thanks

    hi Kevin,
    check if helps following oss note
    Note 983449 - Termin A122 1COLUMN no valid characteristic of infoprovider
    Symptom
    Termination A 122 Brain occurs when you test and generate a query. The system does not recognise the characteristic 1COLUMN.
    Other terms
    Query, condition, COB_PRO
    Reason and Prerequisites
    This problem is caused by a program error.
    Solution
    SAP NetWeaver 2004s BI
               Import Support Package 10 for SAP NetWeaver 2004s BI (BI Patch 10 or SAPKW70010) into your BI system. The Support Package is available once Note 914304 "SAPBINews BI 7.0 Support Package 10", which describes this Support Package in more detail, has been released for customers.
    In urgent cases, you can implement the correction instructions.
    You must first implement Notes 932065, 935140, 948389, 964580 and 969846, which provide information about transaction SNOTE. Otherwise, problems and syntax errors may occur when you deimplement some notes.

  • File Ext Openning problem!

    I have searched all over my mac high and low and can not figure out out to make the default file ext. open in the correct program example .doc, .eps, .psd, .pdf, .indd I can only right click and have it open in program if I double click all files open in preview. This problem occurred after I installed snow leopard, please help me

    Select a file, choose File -> Get Info, set the app you want in the Open With pop-up and click the Change All button.

  • Another Safari won't open problem

    Hello All,
    My Safari keeps crashing as soon as it opens.
    I really need your help bad..I have been reading through posts for the last 2 hours and have tried a few options, but I still can't get Safari to open. I am actually at work posting this because I can't access the internet at all from open due to this problem. BTW: My mail is working perfectly so I don't think it is a connection problem.
    I have tried thrashing the Safari.plist file as well as Cookies.plist and no success. I even reinstalled Tiger thinking this might solve the probelm, but still not working.
    Here is the crash log...I see this is requested in other post...Any help you can provide would be extremely appreciated. Thanks in advance.
    Date/Time: 2006-08-18 14:01:37.649 -0400
    OS Version: 10.4 (Build 8A428)
    Report Version: 3
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [58]
    Version: 2.0 (412)
    Build Version: 1
    Project Name: WebBrowser
    Source Version: 4120000
    PID: 239
    Thread: 2
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0:
    0 libSystem.B.dylib 0x9000a758 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000a69c mach_msg + 60
    2 com.apple.CoreFoundation 0x902a35b8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x902a2ebc CFRunLoopRunSpecific + 268
    4 com.apple.HIToolbox 0x91fd4fc0 RunCurrentEventLoopInMode
    + 264
    5 com.apple.HIToolbox 0x91fd4654 ReceiveNextEventCommon + 380
    6 com.apple.HIToolbox 0x91fd44c0
    BlockUntilNextEventMatchingListInMode + 96
    7 com.apple.AppKit 0x924bd384 _DPSNextEvent + 384
    8 com.apple.AppKit 0x924bd048 -[NSApplication
    nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    9 com.apple.Safari 0x00007058 0x1000 + 24664
    10 com.apple.AppKit 0x924b95ac -[NSApplication run] + 472
    11 com.apple.AppKit 0x925a9e04 NSApplicationMain + 452
    12 com.apple.Safari 0x00002700 0x1000 + 5888
    13 com.apple.Safari 0x00057190 0x1000 + 352656
    Thread 1:
    0 libSystem.B.dylib 0x9000a758 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000a69c mach_msg + 60
    2 com.apple.CoreFoundation 0x902a35b8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x902a2ebc CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x90b0a244 -[NSRunLoop
    runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x90b0a17c -[NSRunLoop run] + 76
    6 com.apple.WebKit 0x94070458 +[WebFileDatabase
    _syncLoop:] + 176
    7 com.apple.Foundation 0x90afb2b4 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002c3b4 pthreadbody + 96
    Thread 2 Crashed:
    0 libSystem.B.dylib 0x90124940 bcmp + 224
    1 com.apple.Foundation 0x90b12194 -[NSUnarchiver
    initForReadingWithData:] + 208
    2 com.apple.Foundation 0x90b2402c -[NSURLCache
    _diskCacheGet:] + 524
    3 com.apple.Foundation 0x90b23b34 -[NSURLCache
    cachedResponseForRequest:] + 132
    4 com.apple.Foundation 0x90b22f94 -[NSURLConnection
    (NSURLConnectionInternal) _performLoad] + 552
    5 com.apple.Foundation 0x90b22a00 _resourceLoaderPerform + 224
    6 com.apple.CoreFoundation 0x902a3f0c __CFRunLoopDoSources0 + 384
    7 com.apple.CoreFoundation 0x902a343c __CFRunLoopRun + 452
    8 com.apple.CoreFoundation 0x902a2ebc CFRunLoopRunSpecific + 268
    9 com.apple.Foundation 0x90b22760 +[NSURLConnection
    (NSURLConnectionInternal) _resourceLoadLoop:] + 264
    10 com.apple.Foundation 0x90afb2b4 forkThreadForFunction + 108
    11 libSystem.B.dylib 0x9002c3b4 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000a758 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000a69c mach_msg + 60
    2 com.apple.CoreFoundation 0x902a35b8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x902a2ebc CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x90b238a0 +[NSURLCache
    _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x90afb2b4 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002c3b4 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9001efcc select + 12
    1 com.apple.CoreFoundation 0x902b5e4c __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002c3b4 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002ca78
    semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9003125c pthreadcondwait + 508
    2 com.apple.Foundation 0x90b02420 -[NSConditionLock
    lockWhenCondition:] + 68
    3 com.apple.Syndication 0x9b0bdaf0 -[AsyncDB _run:] + 192
    4 com.apple.Foundation 0x90afb2b4 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002c3b4 pthreadbody + 96
    Thread 2 crashed with PPC Thread State:
    srr0: 0x90124940 srr1: 0x0200f030 vrsave: 0x00000000
    cr: 0x44028432 xer: 0x00000000 lr: 0x90b12194 ctr: 0x00000003
    r0: 0x00000618 r1: 0xf0182120 r2: 0x01853c00 r3: 0x00000000
    r4: 0x90c8e9e8 r5: 0x00000000 r6: 0xf0182064 r7: 0xfffff9f4
    r8: 0x00000003 r9: 0x0000000c r10: 0x05200dbf r11: 0xa0ad66a4
    r12: 0x90124860 r13: 0x00000000 r14: 0x00000001 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x7fffffff r21: 0x00000001 r22: 0x00000001 r23: 0x004bef00
    r24: 0x00000000 r25: 0xa0af2d6c r26: 0xa0af6c5c r27: 0xf01821c0
    r28: 0x00000000 r29: 0x0516e038 r30: 0x0516e030 r31: 0x90b120c4
    Binary Images Description:
    0x1000 - 0xd7fff com.apple.Safari 2.0 (412) /Applications/
    Safari.app/Contents/MacOS/Safari
    0x52d000 - 0x530fff com.mac.bwebster.iPLM ??? (3.0.1) /Users/
    delyq87/Library/InputManagers/iPLM/iPLM.bundle/Contents/MacOS/iPLM
    0x52c7000 - 0x52c9fff com.apple.textencoding.unicode 2.0 /System/
    Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode
    Encodings
    0x8fe00000 - 0x8fe50fff dyld 43 /usr/lib/dyld
    0x90000000 - 0x901a6fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901ff000 - 0x90252fff com.apple.CoreText 1.0.0 (???) /System/
    Library/Frameworks/ApplicationServices.framework/Versions/A/
    Frameworks/CoreText.framework/Versions/A/CoreText
    0x90280000 - 0x90359fff com.apple.CoreFoundation 6.4 (368) /System/
    Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x903a3000 - 0x90668fff com.apple.CoreServices.CarbonCore 10.4
    (611.1) /System/Library/Frameworks/CoreServices.framework/Versions/
    A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x906cc000 - 0x90740fff com.apple.framework.IOKit 1.4 (???) /
    System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9075b000 - 0x907dbfff com.apple.CoreServices.OSServices 4.0
    (4.0.0) /System/Library/Frameworks/CoreServices.framework/Versions/
    A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x90826000 - 0x90826fff com.apple.CoreServices 10.4 (???) /System/
    Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90829000 - 0x908a7fff com.apple.audio.CoreAudio 3.0.0 (3.0) /
    System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x908fe000 - 0x908fefff com.apple.ApplicationServices 10.4 (???) /
    System/Library/Frameworks/ApplicationServices.framework/Versions/A/
    ApplicationServices
    0x90901000 - 0x90985fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x909e0000 - 0x90a6bfff com.apple.DesktopServices 1.3 /System/
    Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/
    DesktopServicesPriv
    0x90ad5000 - 0x90cfefff com.apple.Foundation 6.4 (567) /System/
    Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90ead000 - 0x90ecbfff libGL.dylib /System/Library/Frameworks/
    OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90ed7000 - 0x90f31fff libGLU.dylib /System/Library/Frameworks/
    OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90f52000 - 0x90f79fff com.apple.SystemConfiguration 1.8.0 /
    System/Library/Frameworks/SystemConfiguration.framework/Versions/A/
    SystemConfiguration
    0x90f8d000 - 0x90f8dfff com.apple.Carbon 10.4 (???) /System/
    Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90f90000 - 0x90f9cfff com.apple.opengl 1.4.0 /System/Library/
    Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90fa2000 - 0x90fc4fff com.apple.DirectoryService.Framework 1.8 /
    System/Library/Frameworks/DirectoryService.framework/Versions/A/
    DirectoryService
    0x91037000 - 0x91037fff com.apple.Cocoa 6.4 (???) /System/Library/
    Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x910ca000 - 0x91102fff com.apple.vmutils 4.0.0 (85) /System/
    Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x91129000 - 0x9114cfff com.apple.LangAnalysis 1.6 /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    LangAnalysis.framework/Versions/A/LangAnalysis
    0x91161000 - 0x91175fff com.apple.speech.synthesis.framework 3.3 /
    System/Library/Frameworks/ApplicationServices.framework/Versions/A/
    Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91184000 - 0x911eafff com.apple.htmlrendering 1.1.2 /System/
    Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    HTMLRendering.framework/Versions/A/HTMLRendering
    0x9122c000 - 0x912e9fff com.apple.QD 3.8.5 (???) /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    QD.framework/Versions/A/QD
    0x91328000 - 0x913bbfff com.apple.print.framework.PrintCore 4.0
    (172) /System/Library/Frameworks/ApplicationServices.framework/
    Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x91402000 - 0x91412fff com.apple.speech.recognition.framework
    3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/
    Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x9141f000 - 0x9144cfff com.apple.openscripting 1.2.2 (???) /
    System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    OpenScripting.framework/Versions/A/OpenScripting
    0x9146d000 - 0x91481fff com.apple.ImageCapture 3.0 /System/Library/
    Frameworks/Carbon.framework/Versions/A/Frameworks/
    ImageCapture.framework/Versions/A/ImageCapture
    0x9149d000 - 0x914a8fff com.apple.help 1.0.3 (32) /System/Library/
    Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/
    Versions/A/Help
    0x914b4000 - 0x914c1fff com.apple.CommonPanels 1.2.2 (73) /System/
    Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    CommonPanels.framework/Versions/A/CommonPanels
    0x914cb000 - 0x914dbfff com.apple.print.framework.Print 4.0 (187) /
    System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    Print.framework/Versions/A/Print
    0x914e8000 - 0x914fdfff com.apple.securityhi 2.0 (203) /System/
    Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    SecurityHI.framework/Versions/A/SecurityHI
    0x91510000 - 0x91562fff com.apple.NavigationServices 3.4 /System/
    Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    NavigationServices.framework/Versions/A/NavigationServices
    0x9158f000 - 0x9159efff libCGATS.A.dylib /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x915a7000 - 0x915b3fff libCSync.A.dylib /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x915fc000 - 0x91610fff libRIP.A.dylib /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/
    CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91a18000 - 0x91a3dfff com.apple.FindByContent 1.5 /System/
    Library/Frameworks/ApplicationServices.framework/Versions/A/
    Frameworks/FindByContent.framework/Versions/A/FindByContent
    0x91a53000 - 0x91c15fff com.apple.security 4.0 (221) /System/
    Library/Frameworks/Security.framework/Versions/A/Security
    0x91dab000 - 0x91debfff com.apple.LaunchServices 10.4 (118) /
    System/Library/Frameworks/ApplicationServices.framework/Versions/A/
    Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x91fcd000 - 0x922dcfff com.apple.HIToolbox 1.4.0 (???) /System/
    Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    HIToolbox.framework/Versions/A/HIToolbox
    0x92428000 - 0x92486fff com.apple.HIServices 1.5.0 (???) /System/
    Library/Frameworks/ApplicationServices.framework/Versions/A/
    Frameworks/HIServices.framework/Versions/A/HIServices
    0x924b5000 - 0x92ae6fff com.apple.AppKit 6.4 (824) /System/Library/
    Frameworks/AppKit.framework/Versions/C/AppKit
    0x92e73000 - 0x931abfff com.apple.CoreGraphics 1.256.0 (???) /
    System/Library/Frameworks/ApplicationServices.framework/Versions/A/
    Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x932b3000 - 0x932c8fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x932d0000 - 0x933fdfff com.apple.AddressBook.framework 4.0 (461) /
    System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9368e000 - 0x936b5fff com.apple.LDAPFramework 1.4 (68) /System/
    Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x936bc000 - 0x936d4fff com.apple.WebServices 1.1.2 (1.1.0) /
    System/Library/Frameworks/CoreServices.framework/Versions/A/
    Frameworks/WebServicesCore.framework/Versions/A/WebServicesCore
    0x9390a000 - 0x93927fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x93930000 - 0x939aefff com.apple.SearchKit 1.0.3 /System/Library/
    Frameworks/CoreServices.framework/Versions/A/Frameworks/
    SearchKit.framework/Versions/A/SearchKit
    0x93a0f000 - 0x93a2bfff com.apple.securityfoundation 2.0 (262) /
    System/Library/Frameworks/SecurityFoundation.framework/Versions/A/
    SecurityFoundation
    0x93a47000 - 0x93b25fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x93b46000 - 0x93bcdfff com.apple.ink.framework 101.2 (69) /System/
    Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    Ink.framework/Versions/A/Ink
    0x93be2000 - 0x93c25fff com.apple.securityinterface 2.0 (256) /
    System/Library/Frameworks/SecurityInterface.framework/Versions/A/
    SecurityInterface
    0x9406e000 - 0x940f7fff com.apple.WebKit 412 /System/Library/
    Frameworks/WebKit.framework/Versions/A/WebKit
    0x94269000 - 0x947f9fff libBLAS.dylib /System/Library/Frameworks/
    Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/
    A/libBLAS.dylib
    0x94872000 - 0x94b82fff libLAPACK.dylib /System/Library/
    Frameworks/Accelerate.framework/Versions/A/Frameworks/
    vecLib.framework/Versions/A/libLAPACK.dylib
    0x94c83000 - 0x94d15fff libvDSP.dylib /System/Library/Frameworks/
    Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/
    A/libvDSP.dylib
    0x94d3b000 - 0x94da0fff libvMisc.dylib /System/Library/Frameworks/
    Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/
    A/libvMisc.dylib
    0x94dab000 - 0x94e8dfff com.apple.JavaScriptCore 412 /System/
    Library/Frameworks/WebKit.framework/Versions/A/Frameworks/
    JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x94eea000 - 0x951d6fff com.apple.WebCore 413 /System/Library/
    Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/
    Versions/A/WebCore
    0x9540a000 - 0x9550cfff libicucore.A.dylib /usr/lib/
    libicucore.A.dylib
    0x95567000 - 0x95629fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.
    0.9.7.dylib
    0x95676000 - 0x956a4fff libssl.0.9.7.dylib /usr/lib/libssl.
    0.9.7.dylib
    0x956b5000 - 0x957a3fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x957a7000 - 0x957b7fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x957fb000 - 0x95804fff com.apple.DiskArbitration 2.1 /System/
    Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9580c000 - 0x9581efff libauto.dylib /usr/lib/libauto.dylib
    0x959f6000 - 0x95a60fff com.apple.CoreData 1.0 (46) /System/
    Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x95b5f000 - 0x95b86fff com.apple.Metadata 0.1 (121) /System/
    Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/
    Metadata.framework/Versions/A/Metadata
    0x95efd000 - 0x95f26fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x95f2f000 - 0x95f6cfff libsqlite3.0.dylib /usr/lib/
    libsqlite3.0.dylib
    0x96002000 - 0x96006fff libmathCommon.A.dylib /usr/lib/system/
    libmathCommon.A.dylib
    0x96009000 - 0x960d4fff com.apple.ColorSync 4.4 /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    ColorSync.framework/Versions/A/ColorSync
    0x9614d000 - 0x9615cfff com.apple.DSObjCWrappers.Framework 1.1 /
    System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/
    DSObjCWrappers
    0x96165000 - 0x96182fff com.apple.audio.SoundManager 3.9 /System/
    Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    CarbonSound.framework/Versions/A/CarbonSound
    0x961ad000 - 0x961e5fff com.apple.AE 1.5 (297) /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    AE.framework/Versions/A/AE
    0x96201000 - 0x96241fff com.apple.CFNetwork 4.0 (80) /System/
    Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/
    CFNetwork.framework/Versions/A/CFNetwork
    0x96257000 - 0x96257fff com.apple.Accelerate 1.1 (Accelerate 1.1) /
    System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96335000 - 0x9641ffff com.apple.vImage 2.0 /System/Library/
    Frameworks/Accelerate.framework/Versions/A/Frameworks/
    vImage.framework/Versions/A/vImage
    0x96438000 - 0x964e9fff ATS /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/
    Versions/A/ATS
    0x9654b000 - 0x96553fff libbsm.dylib /usr/lib/libbsm.dylib
    0x97204000 - 0x97223fff com.apple.Accelerate.vecLib 3.1 (vecLib
    3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/
    Frameworks/vecLib.framework/Versions/A/vecLib
    0x9731c000 - 0x97352fff com.apple.ImageIO.framework 1.0 /System/
    Library/Frameworks/ApplicationServices.framework/Versions/A/
    Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x97367000 - 0x9736bfff libGIF.dylib /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libGIF.dylib
    0x9736e000 - 0x973ddfff libJP2.dylib /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libJP2.dylib
    0x973f5000 - 0x97411fff libJPEG.dylib /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libJPEG.dylib
    0x975a3000 - 0x975bcfff libPng.dylib /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libPng.dylib
    0x975c2000 - 0x975c5fff libRadiance.dylib /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x975c8000 - 0x975e0fff libRaw.dylib /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libRaw.dylib
    0x975eb000 - 0x9762efff libTIFF.dylib /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libTIFF.dylib
    0x9770c000 - 0x97757fff libGLImage.dylib /System/Library/
    Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x97842000 - 0x9790cfff com.apple.audio.toolbox.AudioToolbox 1.4 /
    System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9798b000 - 0x9798bfff com.apple.audio.units.AudioUnit 1.4 /
    System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9798e000 - 0x97aedfff com.apple.QuartzCore 1.4 /System/Library/
    Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9b0bb000 - 0x9b0eefff com.apple.Syndication 1.0.0 (38) /System/
    Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9b10d000 - 0x9b11dfff com.apple.SyndicationUI 1.0.0 (38) /System/
    Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/
    SyndicationUI
    0x9cb5f000 - 0x9cb6cfff libz.1.dylib /usr/lib/libz.1.dylib
    0x9e33b000 - 0x9e35bfff libmx.A.dylib /usr/lib/libmx.A.dylib
    Model: PowerMac7,2, BootROM 5.1.5f2, 1 processors, PowerPC 970
    (2.2), 1.6 GHz, 1.25 GB
    Graphics: GeForce FX 5200, GeForce FX 5200, AGP, 64 MB
    Memory Module: DIMM0/J11, 128 MB, DDR SDRAM, PC2700U-25330
    Memory Module: DIMM1/J12, 128 MB, DDR SDRAM, PC2700U-25330
    Memory Module: DIMM2/J13, 512 MB, DDR SDRAM, PC2700U-25330
    Memory Module: DIMM3/J14, 512 MB, DDR SDRAM, PC2700U-25330
    Modem: MicroDash, UCJ, V.92, 1.0F, APPLE VERSION 2.6.4
    Network Service: Built-in Ethernet, Ethernet, en0
    Serial ATA Device: ST380013AS, 74.53 GB
    Parallel ATA Device: SONY DVD RW DW-U10A,
    USB Device: Hub, , Up to 12 Mb/sec, 500 mA
    USB Device: Studio Display, , Up to 1.5 Mb/sec, 500 mA
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/
    sec, 500 mA
    USB Device: Apple Optical USB Mouse, Mitsumi Electric, Up to 1.5 Mb/
    sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec,
    250 mA
    USB Device: USB Floppy Drive, Sony, Up to 12 Mb/sec, 500 mA
    USB Device: Hub, , Up to 480 Mb/sec, 500 mA
    USB Device: LaCie Hard Drive USB, LaCie, Up to 480 Mb/sec, 500 mA
    USB Device: USB Reader, Genesys, Up to 480 Mb/sec, 500 mA
    USB Device: PTZ-430, Tablet, Up to 12 Mb/sec, 500 mA
    Power Mac   Mac OS X (10.4)  

    Hi Dely, Welcome to Apple Discussions : )
    From your Crash log:
    com.mac.bwebster.iPLM ??? (3.0.1)
    /Users/ delyq87/Library/InputManagers/iPLM/iPLM.bundle/Contents/MacOS/iPLM
    This application for iphoto & .plist files try uninstalling it or see if there is an update or support for it. See if it has an uninstaller third party applications can knit into the os pretty well.
    I think it is part of what is causing your problem. I figure the Input Manager belongs / is part of this app, i do not have this folder in either of my Home Libraries. OS 10.4.7 or 10.3.9
    Move the folder to the desktop do a restart and see if you can then launch Safari if not put it back.
    PlistEdit Pro & iPhoto Library Manager Software
    I lost a lot of my preferences after File Vault. I would set everything back up including bookmarks, Applications on the dock and after I shut down and log back in I would see that I lost all my settings.
    Which are .plist files and this app seem to edit them. Just a thought.
    Hope this helps some. Please let us know.
    edited by: Eme

  • Itunes won't open - problem with visualizer?

    For some reason Itunes won't open for me - I have had it for ages, never a problem, but I got Leopard last week and now Itunes has crashed. When i try to open it it freezes and then closes, with an error message that says 'the problem may have been caused by the ItunesX Visualizer plug in'.
    Any advice on how to fix this? I have uninstalled and reinstalled both itunes and Quicktime, but nothing seems to work.

    Same problem here! I'm going crazy. I did those two things you did and NOTHING, nada, help us!

  • ASKB - POsting Period not open problem

    Hi All,
    I saw many threads on this problem but not got suiatable solution thats why i am raising this thread again.
    Due to some problem my client not Run ASKB for October period, now when he is trying to run ASKB for November month he is getting error that 'Posting period is not open'.
    Now we cannot open 'Posting period' 'October' because of some organizational issues.
    Kindly suggest me how i run ASKB for 'Current month.
    Regards
    Sandeep

    Hi Sandeep,
    To my regret, is the answer here is definitely NO.                                                                     
    A reconciliation of the system would be not possible (For example, in foreign currency and a parallel currency).
    This source of error was stopped by switching from batch input sessions  to the Direct booking with RAPERB2000. (With batch input sessions  it was possible to manipulate).
    Furthermore, the values in the periodically posting areas have to be posted into the correct period.
    If the reconciliation is not relevant, you can check via testrun which values have to be posted and post them via FB01. In this case you have to manipulate also the table TABAS and T093D.  But take into acount that this is on your own risk and will not be supported by SAP.
    My personal opinion: Open the periods and run the RAPERB2000 regular.
    Regards Bernhard
    Edited by: Bernhard Kirchner on Nov 29, 2010 12:54 AM

Maybe you are looking for