Syntax and format of a IF statement in formula XPath in a InfoPath field

Good day
I needed assistance with IF statement syntax in a InfoPath field formula.
If Field_1 = null
concat(substring-before(txtComponentNo1, "."), ".", substring-before(field17, "."), ".", substring-after(field17, "."))
Else
concat(substring-before(txtComponentNo1, "."), ".", substring-before(field17, "."), ".", substring-after(field17, ".")+1)
or in Advance XPath
If Field_1 = null
concat(substring-before(../../../my:grpComponent_1/my:grpComponent1/my:txtComponentNo1, "."), ".", substring-before(../../my:field17, "."), ".", substring-after(../../my:field17, "."))
Else
concat(substring-before(../../../my:grpComponent_1/my:grpComponent1/my:txtComponentNo1, "."), ".", substring-before(../../my:field17, "."), ".", substring-after(../../my:field17, ".") + 1)
Thanks

Hi,
Here is the good explanation of what you are looking for.
http://blogs.msdn.com/b/infopath/archive/2006/11/27/conditional-default-values.aspx
and please check this as well for basic understanding
http://www.bizsupportonline.net/infopath2010/if-else-statements-conditions-rules-infopath-2010.htm
Krishana Kumar http://www.mosstechnet-kk.com

Similar Messages

  • Advice on constructi​ng a test engine and formatting a spreadshee​t test file to perform command line interface testing on a product through telnet or serial interface

    Advice on constructing a test engine and formatting a spreadsheet test file to perform command line interface testing on a range of products through telnet or serial interface and output pass/fail results.

    Hello j. smith,
    TestStand gives you the ability to create "sequence files" which are lists of tests to be run sequentially or in parallel. These tests can be written in any language: LabVIEW VIs, C/C++ DLLs, EXEs, ActiveX objects, .NET Assemblies, etc.
    You can run your TestStand sequence files from a command-line prompt using the following syntax:
    \bin\SeqEdit.exe" /quit -run
    This will launch the TestStand Sequence Editor (and optionally prompt you for TestStand login information if you have this configured), run your sequence file, then exit.
    If you're using the TestStand process model, it can output your results to a report file or database if you configure this. To use a TestStand process mo
    del to execute your sequence file, use the following syntax:
    \bin\SeqEdit.exe" /quit -runEntryPoint
    Here's an example:
    C:\>"C:\Program Files\National Instruments\TestStand 3.0\bin\SeqEdit.exe" /quit -runEntryPoint "Single Pass" "C:\Program Files\National Instruments\TestStand 3.0\Examples\Demo\C\computer.seq"
    Note that multiple sequences and sequence files can be specified on the command line.
    TestStand supports remote sequence execution using DCOM (Distributed COM), which is an east way to remotely execute tests. But as for running tests or commands through a telnet or serial interface, you would have need to check Windows documentation on how to execute command-line remotely like this.
    David Mc.
    NI Applications Engineer

  • Difference between oracle join syntaxes and ANSI join syntaxes

    What is difference between oracle join syntaxes and ANSI join syntaxes ?
    why oracle is having different syntaxes for joins than ANSI syntaxes ?
    Also Join syntaxes are different in some oracle vesrions ?

    BluShadow wrote:
    3360 wrote:
    Yes it is. The Oracle database wasn't initially designed to be ANSI compliant. As you correctly state the ANSI standards weren't around when it was initially designed, so the statement is perfectly correct. ;)Ok, in one sense it may be correct but it is a completely misleading statement. Not sure why you think it's misleading.Because there was no ANSI standard, so making it sound like a design choice The Oracle database wasn't initially designed to be ANSI compliant. would suggest to most readers that there was a standard to be compliant to.
    Like saying Ford originally did not design their cars to incorporate safety features such as ABS, seat belts and air bags.
    The OP asked "why oracle is having different syntaxes for joins than ANSI syntaxes ?" and the answer is that Oracle wasn't initially designed with ANSI compliance, so it has it's old non-ANSI syntax,As shown above, the old syntax was ANSI compliant at the time and to call it non-ANSI is either incorrect or misleading dependent on your point of view.
    and since ANSI syntax became the standard it now supports that. And since ANSI switched to a new standard, Oracle had to implement the new standard as well as the previous ANSI standard would be more accurate in my opinion.
    Nothing misleading as far as I'm aware in that.I find the whole discussion about ANSI and Oracle's supposed non-compliance, reads like it was Oracle's choice to deviate from the standards, when it was ANSI's bullheaded decisions to pointlessly change standards that left Oracle and other vendors out of compliance, and that was a decision made solely by ANSI.
    This is probably the reason ANSI no longer produces SQL standards, the endless syntax fiddling would eventually have made forward left under outer joins a reality.
    {message:id=1785128}

  • Can the format of a SQL Statement modify the execution time of an SQL ....

    Can the format of a SQL Statement modify the execution time of an SQL statement?
    Thanks in advance

    It depends on:
    1) What oracle version are you using
    2) What do you mean for "format"
    For example: if you're on Oracle9i and changing format means changing the order of the tables in the FROM clause and you're using Rule Based Optimizer then the execution plan and the execution time can be very different...
    Max
    [My Italian Oracle blog|http://oracleitalia.wordpress.com/2009/12/29/estrarre-i-dati-in-formato-xml-da-sql/]

  • Is curly brace syntax and OPTIONAL realy enabled in Oracle 11g? (11.1.0.7)

    I have just installed Oracle 11g patchset to upgrade from 11.1.0.6 to 11.1.0.7.
    Oracle documentation states, that since 11.1.0.7 Curly brace syntax is allowed (http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28397/sdo_rdf_concepts.htm#CIHHDGDI).
    When I try to execute following SQL on sample family RDF data, I got an error. Is realy curly brace syntax and OPTIONAL feature enabled in 11.1.0.7?
    SQL> SELECT x, y
    2 FROM TABLE(SEM_MATCH(
    3 '{?x :grandParentOf ?y . ?x rdf:type :Male}',
    4 SEM_Models('family'),
    5 SEM_Rulebases('RDFS','family_rb'),
    6 SEM_ALIASES(SEM_ALIAS('','http://www.example.org/family/')),
    7 null));
    SELECT x, y
    FROM TABLE(SEM_MATCH(
    '{?x :grandParentOf ?y . ?x rdf:type :Male}',
    SEM_Models('family'),
    SEM_Rulebases('RDFS','family_rb'),
    SEM_ALIASES(SEM_ALIAS('','http://www.example.org/family/')),
    null))
    ORA-29532: Java call terminated by uncaught Java exception: oracle.spatial.rdf.server.TokenMgrError: Lexical error at line 1, column 1. Encountered: "{" (123), after : ""
    ORA-06512: at "MDSYS.RDF_MATCH_IMPL_T", line 178
    ORA-06512: at "MDSYS.RDF_MATCH_IMPL_T", line 67
    ORA-06512: at line 4

    To use this syntax you need to download and install a new Oracle DB semantic technologies patch on top of 11.1.0.7.0:
    For more details, please refer to:
    http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28397/sdo_rdf_newfeat.htm
    "This section describes features that are included in a Release 11.1.0.7.0 patch that was made available on Oracle MetaLink in November, 2008."

  • BAI format for Electronic Bank Statement for USA

    Hi Gurus,
    Could someone please share me the BAI format for Electronic Bank Statement (USA).
    Thanks & Regards
    Balaji

    Hi
    Actually there were two formats BAI & BAI2, BAI2 format is latest one.
    Please ask for the latest file from bank and try to process.
    Thanks
    Kalyan

  • How to lpad and format a number column

    Hi,
    I have a requirement to format a number column and then lpad with '*' to 12 characters. For example if the column value is 1234560 then i have to display it as *****1,234,560.00. I tried using <?xdofx:lpad(format-number:AMOUNT;'999G999D99',12,'*')?> and <?xdofx:lpad(to_char(AMOUNT,'999,999,99.99'),12,'*')?>.
    Can any1 suggest me how to lpad and format the value.
    Thanks in advance.

    Hi,
    Use the following syntax for the lpad function, and use the MS word format mask for the formatting part. <?xdofx:lpad(AMOUNT,12,'*')?>

  • Importing Excel Files and Formatting Issues

    Good afternoon ladies and gentlemen. When in doubt, post in the forum! Anyway, I am using java via ODBC to connect to an excel file to extract some info from it, using SQL statements. Everything can be extracted without any problems, however, Excel keeps pi$$ing me off by changing the format of the cell data.
    Firstly, I highlight every cell in my Excel file and format it as "Text."
    Then I extract the cell info by using a ResultSet and getting a String (even for numeric data - ResultSet.getString(...))
    What is getting on my nerves is that not only does it not extract numeric values followed by a string, when it does extract numeric values, it is adding a ".0" after the value.
    For example, if the cell value is 123, it will return 123.0
    If the cell value is 123SHOE, it returns null
    Furthemore, when editing the Excel file, after having every cell formatted as "Text," if I enter a number, say, as a zipcode, 123450000, it brings up an error! But the very definition of "Text" states that "Text format cells are treated as text even when a number is in the cell."
    The moral of the story is, I want to convert all data in the Excel file to "Text" and when extracting data from the file, I need to be able to extract numbers, numbers followed by characters, and everything else.
    Any suggestions?
    Thanks much,
    Josh

    Hey Dr. Clap, quick question for ya. I was checking out the Apache POI you recommended. More specifically HSSF. I noticed in the documentation that "String cells cannot conatin numbers and numeric cells cannot contain strings." Unfortunately, this is not going to work well with my app as some of the primary keys (I use the term loosely) are Strings which contain numbers. My main problem is that my app wont recognize the Strings containing numbers, so it returns null, and Excel is chopping off the leading zeroes and is popping up with an error because numbers are in the String. However, as I stated before, Excel notes that text cells can contain numbers!
    FYI, I am using Pervasive SQL to extract a given list of users in a DB (which I dont want to connect to directly) and am saving that generated query (list of users) into a text file. I then open the text file in Excel which parses it correctly and assigns the cells the correct values. So I don't think I can format the cells as text because I am importing the file I generate. I love doing things ass backwards :) Another reason I am using Excel files is so anyone can use the software so long as they have an Excel file with the appropriate columns within the file.
    Thanks yet again and I'll keep searching.
    Josh

  • Error Message: The syntax of the value for prompt 'p_phone_num' is incorrect. Please correct the syntax and try again.

    Post Author: helpwithcr
    CA Forum: General
    " The syntax of the value for prompt 'p_phone_number' is incorrect. Please correct the syntax and try again."
    I am getthing this error while I tried to pass the value from an oracle package to the web when the the crystal report viewer kicks in.
    I found the source of the error. Its just a paranthesis that I used with the phone number inside the function.... The function looks like this
    function phone_number
    return varchar2
    is
    begin
    return '(123) 456 - 789';
    end phone_number;
    I really dont want that paranthesis to go. Its the format that everyone wanted. But they dont want that to be static on the report also
    Please help
    Thanks
    helpWithCr

    Sir, you are a legend!!! 
    Many thanks for putting me on the right track... 
    Here's where I went wrong and how I fixed it.
    First I installed the Azure Pack: MySQL Extension on the MySQL server.
    This was wrong, it needs to be installed on the WAP server/s.
    So I installed the extension on the WAP server and it still didn't work.
    So I uninstalled the extension from the MySQL server and it still didn't work.
    So I also installed the MySQL Connector/Net on the WAP server and it worked.
    This eventually fixed it. 
    What I will say is that in the documentation it doesn't mention installing the MySQL Connector/Net from the web platform installer on the WAP server (unless I have completely missed this)?
    Thanks again :-)
    Microsoft Partner

  • I dvd studio pro 4 wont build and format on mabook pro

    My dvd studios pro will not build and format with out crashing. I have a 300.00 dell computer that burns dvds all day long. But my 2700.00 mac book pro, and 1000.00 final cut studio can not make one dvd. what is up with that. I can do everything in dvd studio pro 4 except make a dvd. kind of stupid wouldn't you say. How do i get it to work? i have reinstalled 5 times. all updates are done and still nothing but crashes. took it to apple genius bar and they said "there is no reason under the sun that this should not be working". My computer is has more then enough power to run it. they checked everything and there is nothing installed wrong or not working properly. I asked what to do next and they said "i don't know, I guess your kinda out of luck" that was great of them to say. Does any one out there know what to do? Or has mac falsely sold me a 3700.00 dollar e-mail machine.

    here are the specifics of the crash with dvd studio pro 4
    I am a complete lost, found diffrent apple store i can go to I may have to. may be someone out there can help.
    Process: DVD Studio Pro [359]
    Path: /Applications/DVD Studio Pro.app/Contents/MacOS/DVD Studio Pro
    Identifier: com.apple.dvdstudiopro
    Version: 4.0.3 (382)
    Build Info: DSP-3820000~2
    Code Type: PPC (Translated)
    Parent Process: launchd [85]
    Date/Time: 2009-02-01 15:20:43.289 -0600
    OS Version: Mac OS X 10.5.6 (9G55)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000005
    Crashed Thread: 0
    Thread 0 Crashed:
    0 ??? 0x8175545f 0 + 2171950175
    Thread 1:
    0 ??? 0x800bc1c6 0 + 2148254150
    1 ??? 0x800c39bc 0 + 2148284860
    2 translate 0xb818b6ea CallPPCFunctionAtAddressInt + 202886
    3 ??? 0x800ed095 0 + 2148454549
    4 ??? 0x800ecf52 0 + 2148454226
    Thread 2:
    0 translate 0xb8152c24 spinlockwrapper + 91496
    1 translate 0xb816c825 CallPPCFunctionAtAddressInt + 76225
    2 translate 0xb80bdb8b 0xb8000000 + 777099
    3 translate 0xb80b7007 0xb8000000 + 749575
    4 translate 0xb80d49c0 0xb8000000 + 870848
    5 translate 0xb813d75f spinlockwrapper + 4259
    Thread 3:
    0 translate 0xb8152c24 spinlockwrapper + 91496
    1 translate 0xb816c825 CallPPCFunctionAtAddressInt + 76225
    2 translate 0xb80bdb8b 0xb8000000 + 777099
    3 translate 0xb80b7007 0xb8000000 + 749575
    4 translate 0xb80d49c0 0xb8000000 + 870848
    5 translate 0xb813d75f spinlockwrapper + 4259
    Thread 4:
    0 translate 0xb815289e spinlockwrapper + 90594
    1 translate 0xb816e8a7 CallPPCFunctionAtAddressInt + 84547
    2 translate 0xb80bdb8b 0xb8000000 + 777099
    3 translate 0xb80b7007 0xb8000000 + 749575
    4 translate 0xb80d49c0 0xb8000000 + 870848
    5 translate 0xb813d75f spinlockwrapper + 4259
    Thread 5:
    0 translate 0xb8152c24 spinlockwrapper + 91496
    1 translate 0xb816c825 CallPPCFunctionAtAddressInt + 76225
    2 translate 0xb80dfb0b 0xb8000000 + 916235
    Thread 6:
    0 translate 0xb815289e spinlockwrapper + 90594
    1 translate 0xb816e8a7 CallPPCFunctionAtAddressInt + 84547
    2 translate 0xb80bdb8b 0xb8000000 + 777099
    3 translate 0xb80b7007 0xb8000000 + 749575
    4 translate 0xb80d49c0 0xb8000000 + 870848
    5 translate 0xb813d75f spinlockwrapper + 4259
    Thread 7:
    0 translate 0xb8152c24 spinlockwrapper + 91496
    1 translate 0xb81714a8 CallPPCFunctionAtAddressInt + 95812
    2 translate 0xb80dfb0b 0xb8000000 + 916235
    Thread 8:
    0 translate 0xb8152c24 spinlockwrapper + 91496
    1 translate 0xb81714a8 CallPPCFunctionAtAddressInt + 95812
    2 translate 0xb80dfb0b 0xb8000000 + 916235
    Thread 9:
    0 translate 0xb8152be5 spinlockwrapper + 91433
    1 translate 0xb8162cb9 CallPPCFunctionAtAddressInt + 36437
    2 translate 0xb80bdb8b 0xb8000000 + 777099
    3 translate 0xb80b7007 0xb8000000 + 749575
    4 translate 0xb80d49c0 0xb8000000 + 870848
    5 translate 0xb813d75f spinlockwrapper + 4259
    Thread 10:
    0 translate 0xb815282c spinlockwrapper + 90480
    1 translate 0xb816e6a1 CallPPCFunctionAtAddressInt + 84029
    2 translate 0xb80dfb0b 0xb8000000 + 916235
    Thread 11:
    0 ??? 0x800c33ae 0 + 2148283310
    1 ??? 0x800edd0d 0 + 2148457741
    2 ??? 0x21698b32 0 + 560565042
    3 ??? 0x800ed095 0 + 2148454549
    4 ??? 0x800ecf52 0 + 2148454226
    Thread 12:
    0 translate 0xb8152c24 spinlockwrapper + 91496
    1 translate 0xb81714a8 CallPPCFunctionAtAddressInt + 95812
    2 translate 0xb80dfb0b 0xb8000000 + 916235
    Thread 13:
    0 translate 0xb8152c24 spinlockwrapper + 91496
    1 translate 0xb81714a8 CallPPCFunctionAtAddressInt + 95812
    2 translate 0xb80dfb0b 0xb8000000 + 916235
    Thread 14:
    0 translate 0xb815282c spinlockwrapper + 90480
    1 translate 0xb816e6a1 CallPPCFunctionAtAddressInt + 84029
    2 translate 0xb80dfb0b 0xb8000000 + 916235
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0xb813cfcc ecx: 0xbfffc8b0 edx: 0x818509c0
    edi: 0xb81d8794 esi: 0xb81d8770 ebp: 0x8080d180 esp: 0xb7fffacc
    ss: 0x0000001f efl: 0x00010246 eip: 0x8175545f cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000005
    Binary Images:
    0xb8000000 - 0xb81d7fe7 translate ??? (???) /usr/libexec/oah/translate
    Translated Code Information:
    Rosetta Version: 21.03
    Args: /Applications/DVD Studio Pro.app/Contents/MacOS/DVD Studio Pro -psn0241723
    Exception: EXCBADACCESS (0x0001)
    Thread 0: (0xb0220df8, 0xb8152c24)
    0x9068f910: /usr/lib/libSystem.B.dylib : _nanosleep$UNIX2003 + 80
    0x95547f18: /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation : +[NSThread sleepUntilDate:] + 164
    0x7e9f477c: @executable_path/../Frameworks/DVDBase.framework/Versions/A/DVDBase : -[MPEGEncoderManager checkEncoderServer] + 244
    0x954bf768: /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation : __NSThread__main_ + 1008
    0x9071a17c: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    0x00000000: /Applications/DVD Studio Pro.app/Contents/MacOS/DVD Studio Pro : + 0
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x20000000 lr: 0x9068f980 ctr: 0x90693814
    r00: 0x0000014e r01: 0xf02038c0 r02: 0xa00dc3c0 r03: 0x00001803
    r04: 0x00000000 r05: 0x00000001 r06: 0x00000001 r07: 0x00000003
    r08: 0x3b9a589c r09: 0x7fffffff r10: 0xa0abf7dc r11: 0xa00dfdbc
    r12: 0x90693814 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00771690 r17: 0x7efb8900 r18: 0x7efb4688 r19: 0x7efbfe40
    r20: 0x7efbfe5c r21: 0x7efb9a44 r22: 0x7efb9bec r23: 0x7efbfe74
    r24: 0x7efb9a48 r25: 0x7efb9c5c r26: 0x007719c0 r27: 0x7efb88fc
    r28: 0x7efb8900 r29: 0xf0203958 r30: 0x00000000 r31: 0x9068f8d4
    Thread 1: (0xb0728df8, 0xb8152c24)
    0x00000000: /Applications/DVD Studio Pro.app/Contents/MacOS/DVD Studio Pro : + 0
    0x9071a17c: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x95a73d44 ctr: 0x906ca858
    r00: 0x0000016b r01: 0xf0355df0 r02: 0x95b1fa54 r03: 0x0000001b
    r04: 0x00000000 r05: 0x00000000 r06: 0xf0355e48 r07: 0x00000003
    r08: 0xf0355e28 r09: 0x24d5ee80 r10: 0x00000000 r11: 0xa0aaa0f8
    r12: 0x906ca858 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x00000000 r23: 0x00000000
    r24: 0x00000000 r25: 0x00000000 r26: 0x0000a803 r27: 0xf0355e48
    r28: 0x95b23cf4 r29: 0x0000001b r30: 0x2101dcf0 r31: 0x95a73cf4
    Thread 2: (0xb03a6df8, 0xb8152c24)
    0x00000000: /Applications/DVD Studio Pro.app/Contents/MacOS/DVD Studio Pro : + 0
    0x9071a17c: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x95a73d44 ctr: 0x906ca858
    r00: 0x0000016b r01: 0xf02a4df0 r02: 0x95b1fa54 r03: 0x00000010
    r04: 0x00000000 r05: 0x00000000 r06: 0xf02a4e48 r07: 0x00000003
    r08: 0xf02a4e28 r09: 0x24d5ee80 r10: 0x00000000 r11: 0xa0aaa0f8
    r12: 0x906ca858 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x00000000 r23: 0x00000000
    r24: 0x00000000 r25: 0x00000000 r26: 0x00006f03 r27: 0xf02a4e48
    r28: 0x95b23cf4 r29: 0x00000010 r30: 0x00772dd0 r31: 0x95a73cf4
    Thread 3: (0xb011cd38, 0xb8152c24)
    0x906cc28c: /usr/lib/libSystem.B.dylib : _pthread_condwait + 1260
    0x96115a8c: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics : layer_blitthread + 212
    0x9071a17c: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    0x00000000: /Applications/DVD Studio Pro.app/Contents/MacOS/DVD Studio Pro : + 0
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x906cc3d0 ctr: 0x9069445c
    r00: 0x0000014e r01: 0xf00fddb0 r02: 0xf00fddf0 r03: 0x00003403
    r04: 0x00003703 r05: 0x00000000 r06: 0x00000000 r07: 0x00000000
    r08: 0x00000000 r09: 0x00000001 r10: 0x906cbd6c r11: 0xa00e093c
    r12: 0x9069445c r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x00000001 r23: 0x00000000
    r24: 0x00000000 r25: 0x00000000 r26: 0x00000000 r27: 0xa00dbdb4
    r28: 0xa0b11e34 r29: 0x00845800 r30: 0xa0b11e60 r31: 0x906cbdb4
    Thread 4: (0xb04aae28, 0xb815282c)
    0x906cc28c: /usr/lib/libSystem.B.dylib : _pthread_condwait + 1260
    0x7eccef44: @executable_path/../Frameworks/DVDBase.framework/Versions/A/DVDBase : -[DVDAssetScheduler mainLoop:] + 436
    0x954bf768: /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation : __NSThread__main_ + 1008
    0x9071a17c: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    0x00000000: /Applications/DVD Studio Pro.app/Contents/MacOS/DVD Studio Pro : + 0
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x20000000 lr: 0x906cc2dc ctr: 0x906891b0
    r00: 0xffffffdb r01: 0xf03358c0 r02: 0xa00db53c r03: 0x00003d03
    r04: 0x00003b03 r05: 0x00000000 r06: 0x00000000 r07: 0x00000000
    r08: 0x7efbf3bc r09: 0x00000001 r10: 0x7eccee94 r11: 0xa00e0a8c
    r12: 0x906891b0 r13: 0x00000000 r14: 0x80001107 r15: 0x7efb8958
    r16: 0x7efbe6e4 r17: 0x7efc03cc r18: 0x7efbc94c r19: 0x7efbe988
    r20: 0x7efb8940 r21: 0x7efba2e0 r22: 0x00000001 r23: 0x00000000
    r24: 0x00000000 r25: 0x00000000 r26: 0x00000000 r27: 0xa00dbdb4
    r28: 0xf0335990 r29: 0xa00db53c r30: 0x007cab8c r31: 0x906cbdb4
    Thread 5: (0xb05aedf8, 0xb8152c24)
    0x00000000: /Applications/DVD Studio Pro.app/Contents/MacOS/DVD Studio Pro : + 0
    0x9071a17c: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x95a73d44 ctr: 0x906ca858
    r00: 0x0000016b r01: 0xf0345df0 r02: 0x95b1fa54 r03: 0x00000019
    r04: 0x00000000 r05: 0x00000000 r06: 0xf0345e48 r07: 0x00000003
    r08: 0xf0345e28 r09: 0x24d5ee80 r10: 0x00000000 r11: 0xa0aaa0f8
    r12: 0x906ca858 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x00000000 r23: 0x00000000
    r24: 0x00000000 r25: 0x00000000 r26: 0x0000a503 r27: 0xf0345e48
    r28: 0x95b23cf4 r29: 0x00000019 r30: 0x2103da30 r31: 0x95a73cf4
    Thread 6: (0xb07aae28, 0xb815282c)
    0x906903c8: /usr/lib/libSystem.B.dylib : pthread_mutexlock + 572
    0x005ad8f4: No symbol
    0x005b03ec: No symbol
    0x93c01718: /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration : __DADispatchCallback + 200
    0x93c01358: /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration : __DASessionCallback + 260
    0x95a7a5fc: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : _CFMachPortPerform + 184
    0x95a9c7f4: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : _CFRunLoopRunSpecific + 2484
    0x95a9cde0: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : _CFRunLoopRun + 64
    0x005aefc4: No symbol
    0x005aeea8: No symbol
    0x005aea50: No symbol
    0x00627ba4: No symbol
    0x9071a17c: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    0x00000000: /Applications/DVD Studio Pro.app/Contents/MacOS/DVD Studio Pro : + 0
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x90690418 ctr: 0x906891b0
    r00: 0xffffffdb r01: 0xf03d6170 r02: 0xa00db53c r03: 0x00004003
    r04: 0x00003f03 r05: 0x18da1b84 r06: 0x0000a02b r07: 0x02001080
    r08: 0x18dfc080 r09: 0x00000001 r10: 0x00000038 r11: 0xa00e0a8c
    r12: 0x906891b0 r13: 0x00000000 r14: 0xa0aa9478 r15: 0xa06f9878
    r16: 0xa06f986c r17: 0xa06f9874 r18: 0xa06f9870 r19: 0xa06f9864
    r20: 0x007d60e0 r21: 0x00000002 r22: 0x18d31ad0 r23: 0x00000000
    r24: 0x00000000 r25: 0xa00e019c r26: 0x12141968 r27: 0x00004003
    r28: 0x0067b084 r29: 0x00003f03 r30: 0xa00db53c r31: 0x9069019c
    Thread 7: (0xb0324df8, 0xb8152c24)
    0x00000000: /Applications/DVD Studio Pro.app/Contents/MacOS/DVD Studio Pro : + 0
    0x9071a17c: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x95a73d44 ctr: 0x906ca858
    r00: 0x0000016b r01: 0xf0294df0 r02: 0x95b1fa54 r03: 0x0000000e
    r04: 0x00000000 r05: 0x00000000 r06: 0xf0294e48 r07: 0x00000003
    r08: 0xf0294e28 r09: 0x24d5ee80 r10: 0x00000000 r11: 0xa0aaa0f8
    r12: 0x906ca858 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x00000000 r23: 0x00000000
    r24: 0x00000000 r25: 0x00000000 r26: 0x00006b03 r27: 0xf0294e48
    r28: 0x95b23cf4 r29: 0x0000000e r30: 0x007728b0 r31: 0x95a73cf4
    Thread 8: Crashed (0xb7fffacc, 0x8175545f)
    0x95a718fc: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : _CFDictionaryGetValue + 252
    0x0061dd08: No symbol
    0x005b0058: No symbol
    0x005aff34: No symbol
    0x005afe60: No symbol
    0x005af54c: No symbol
    0x005af43c: No symbol
    0x005af360: No symbol
    0x005af2b0: No symbol
    0x0061d078: No symbol
    0x005af0e8: No symbol
    0x005adb84: No symbol
    0x005c5314: No symbol
    0x7e326c4c: @executable_path/../Frameworks/DVDAuthoring.framework/Versions/A/DVDAuthoring : CDiscRecordingOutputJob::GetDevices(std::vector<COutputDevice*, std::allocator<COutputDevice*> >&) + 48
    0x7e2e9118: @executable_path/../Frameworks/DVDAuthoring.framework/Versions/A/DVDAuthoring : CHardOutputJob::GetDevices(std::vector<COutputDevice*, std::allocator<COutputDevice*> >&) + 96
    0x7e2ea1f8: @executable_path/../Frameworks/DVDAuthoring.framework/Versions/A/DVDAuthoring : COutputJob::GetAllDevices(std::vector<COutputDevice*, std::allocator<COutputDevice*> >&) + 68
    0x7e2e19a0: @executable_path/../Frameworks/DVDAuthoring.framework/Versions/A/DVDAuthoring : CFormatterDevice::GetDeviceList(std::vector<CFormatterDevice*, std::allocator<CFormatterDevice*> >*) + 52
    0x7e320894: @executable_path/../Frameworks/DVDAuthoring.framework/Versions/A/DVDAuthoring : -[FormatterDocument(Destination) initDestination] + 296
    0x7e3011c8: @executable_path/../Frameworks/DVDAuthoring.framework/Versions/A/DVDAuthoring : -[FormatterDocument init] + 448
    0x940a4648: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit : -[NSDocumentController(NSDeprecated) makeUntitledDocumentOfType:] + 96
    0x7d2721fc: @executable_path/../Frameworks/DSPInterface.framework/Versions/A/DSPInterface : -[DSPXDocumentController makeUntitledDocumentOfType:] + 64
    0x940a4870: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit : -[NSDocumentController(NSDeprecated) openUntitledDocumentOfType:display:] + 40
    0x7d272288: @executable_path/../Frameworks/DSPInterface.framework/Versions/A/DSPInterface : -[DSPXDocumentController openUntitledDocumentOfType:display:] + 112
    0x7e30c4c4: @executable_path/../Frameworks/DVDAuthoring.framework/Versions/A/DVDAuthoring : -[DSPFormatterShim doFormatting:refcon:withUI:] + 200
    0x93e9eeb0: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit : -[NSToolbarButton sendAction:to:] + 76
    0x93e9e538: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit : -[NSToolbarItemViewer mouseDown:] + 3772
    0x93d797bc: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit : -[NSWindow sendEvent:] + 4516
    0x0029450c: /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit : -[NSProWindow sendEvent:] + 272
    0x7d2d2750: @executable_path/../Frameworks/DSPInterface.framework/Versions/A/DSPInterface : -[DSPXDocumentWindowClass sendEvent:] + 688
    0x93d4cb60: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit : -[NSApplication sendEvent:] + 3260
    0x93cb9dc4: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit : -[NSApplication run] + 780
    0x93c8a7a0: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit : _NSApplicationMain + 444
    0x0000d394: /Applications/DVD Studio Pro.app/Contents/MacOS/DVD Studio Pro : _mh_executeheader + 50068
    0x0000ca5c: /Applications/DVD Studio Pro.app/Contents/MacOS/DVD Studio Pro : _mh_executeheader + 47708
    0x8fc01048: /usr/lib/dyld : _dyldstart + 60
    0x00000000: /Applications/DVD Studio Pro.app/Contents/MacOS/DVD Studio Pro : + 0
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x95a9f0dc ctr: 0x95a9f0d0
    r00: 0x0061dd08 r01: 0xbfffc8b0 r02: 0xa0aaa5f8 r03: 0x00000001
    r04: 0x0067f018 r05: 0x00000002 r06: 0x00004461 r07: 0x00000001
    r08: 0x191fc080 r09: 0x01462c40 r10: 0x00177004 r11: 0x0067bb5c
    r12: 0x95a9f0d0 r13: 0xbfffe1d0 r14: 0x00000000 r15: 0x00000001
    r16: 0x185039b0 r17: 0x185039b0 r18: 0x7e501024 r19: 0x7e501024
    r20: 0x7e501024 r21: 0x00000066 r22: 0x00000048 r23: 0x00000070
    r24: 0x00000065 r25: 0x00000030 r26: 0x0000be03 r27: 0x000000d5
    r28: 0x0067f018 r29: 0x19143c48 r30: 0x00000000 r31: 0x95a9f0dc
    Thread 9: (0xb019ed60, 0xb815289e)
    0x906cc28c: /usr/lib/libSystem.B.dylib : _pthread_condwait + 1260
    0x954fcb28: /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation : -[NSCondition waitUntilDate:] + 388
    0x954fc954: /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation : -[NSConditionLock lockWhenCondition:beforeDate:] + 272
    0x7e9f12fc: @executable_path/../Frameworks/DVDBase.framework/Versions/A/DVDBase : -[ThreadSafeQueue headItem] + 52
    0x7e9f44b4: @executable_path/../Frameworks/DVDBase.framework/Versions/A/DVDBase : -[MPEGEncoderManager generateMPEG_ThreadProc:] + 236
    0x954bf768: /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation : __NSThread__main_ + 1008
    0x9071a17c: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    0x00000000: /Applications/DVD Studio Pro.app/Contents/MacOS/DVD Studio Pro : + 0
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x20000000 lr: 0x906cc2cc ctr: 0x906891d0
    r00: 0xffffffd9 r01: 0xf01827b0 r02: 0xa00db53c r03: 0x00003803
    r04: 0x00003903 r05: 0x7fffffff r06: 0x220f288a r07: 0x00000000
    r08: 0x00000000 r09: 0x00000001 r10: 0xa0abf7dc r11: 0xa00e0a7c
    r12: 0x906891d0 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x007705e0 r17: 0x00000000 r18: 0x00000000 r19: 0x7efbfe40
    r20: 0x7efb88fc r21: 0x7efb8900 r22: 0x7efb8940 r23: 0x00000000
    r24: 0x00000000 r25: 0x00000001 r26: 0xf0182878 r27: 0xa00dbdb4
    r28: 0x0076f8c8 r29: 0xa00db53c r30: 0x0076f8f8 r31: 0x906cbdb4
    Thread 10: (0xb0428bbc, 0xb8152be5)
    0x95aa7964: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : _CFSocketManager + 664
    0x9071a17c: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    0x00000000: /Applications/DVD Studio Pro.app/Contents/MacOS/DVD Studio Pro : + 0
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x20000000 lr: 0x95aa79cc ctr: 0x906ecd14
    r00: 0x0000005d r01: 0xf02b4ca0 r02: 0x00000000 r03: 0x00000020
    r04: 0x007a7e40 r05: 0x007a7e30 r06: 0x00000000 r07: 0x00000000
    r08: 0x00000000 r09: 0x00000000 r10: 0x95aa3c3c r11: 0xa0aaa2d4
    r12: 0x906ecd14 r13: 0xa0ab76d4 r14: 0xa0ab76d4 r15: 0xa0ab76d4
    r16: 0xa0abea24 r17: 0xa0ab76d4 r18: 0x00000001 r19: 0x00000000
    r20: 0x007a7e30 r21: 0x007a7e50 r22: 0x00000000 r23: 0x00000000
    r24: 0x007a7e40 r25: 0x007a7e70 r26: 0x00000001 r27: 0x00000020
    r28: 0x00000004 r29: 0x007a8f40 r30: 0x00000000 r31: 0x95aa76d4
    Thread 11: (0xb02a2d60, 0xb815289e)
    0x906cc28c: /usr/lib/libSystem.B.dylib : _pthread_condwait + 1260
    0x954fcb28: /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation : -[NSCondition waitUntilDate:] + 388
    0x954fc954: /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation : -[NSConditionLock lockWhenCondition:beforeDate:] + 272
    0x7e9f12fc: @executable_path/../Frameworks/DVDBase.framework/Versions/A/DVDBase : -[ThreadSafeQueue headItem] + 52
    0x7e9f7198: @executable_path/../Frameworks/DVDBase.framework/Versions/A/DVDBase : -[AIFFEncoderManager generateAIFF_ThreadProc:] + 200
    0x954bf768: /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation : __NSThread__main_ + 1008
    0x9071a17c: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    0x00000000: /Applications/DVD Studio Pro.app/Contents/MacOS/DVD Studio Pro : + 0
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x20000000 lr: 0x906cc2cc ctr: 0x906891d0
    r00: 0xffffffd9 r01: 0xf02847b0 r02: 0xa00db53c r03: 0x00003c03
    r04: 0x00003a03 r05: 0x7fffffff r06: 0x2200f4a8 r07: 0x00000000
    r08: 0x7efb70d0 r09: 0x00000001 r10: 0xa0abf7dc r11: 0xa00e0a7c
    r12: 0x906891d0 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00771390 r17: 0x00000000 r18: 0x00000000 r19: 0x7efbfe40
    r20: 0x7efb88fc r21: 0x7efb8900 r22: 0x7efb8940 r23: 0x00000000
    r24: 0x00000000 r25: 0x00000001 r26: 0xf0284878 r27: 0xa00dbdb4
    r28: 0x00770c98 r29: 0xa00db53c r30: 0x00770cc8 r31: 0x906cbdb4
    Thread 12: (0xb009ad38, 0xb8152c24)
    0x906cc28c: /usr/lib/libSystem.B.dylib : _pthread_condwait + 1260
    0x92e380b4: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync : pthreadSemaphoreWait(t_pthreadSemaphore*) + 40
    0x92e4bbf0: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync : CMMConvTask(void*) + 52
    0x9071a17c: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    0x00000000: /Applications/DVD Studio Pro.app/Contents/MacOS/DVD Studio Pro : + 0
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x906cc3d0 ctr: 0x9069445c
    r00: 0x0000014e r01: 0xf0080d70 r02: 0xf0080db0 r03: 0x00003603
    r04: 0x00003503 r05: 0x00000000 r06: 0x00000000 r07: 0x00000000
    r08: 0x00000000 r09: 0x00000001 r10: 0x906cbd6c r11: 0xa00e093c
    r12: 0x9069445c r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x00000000 r23: 0x00000000
    r24: 0x00000000 r25: 0x00000000 r26: 0x00000000 r27: 0xa00dbdb4
    r28: 0x00835f80 r29: 0x0083d200 r30: 0x00835fac r31: 0x906cbdb4

  • Data Recovery from Partitioned and formatted Bit Locker Encrypted Drive

    Recently because of some issues in windows 7 installation from windows 8 installed OS. it was giving as the disc is dynamic windows can not be installed on it. so at last after struggling hard no other solution i partitioned and formatted my whole
    drive so all data gone included the drive which was encrypted by bit lockers.
    For recovery i used many software such as ontrack easy recover, get data back, recovery my files professional edition but still i couldnt able to recover my data from that drive. then i found some suggestion Using CMD to decrypt my data first 
    http://technet.microsoft.com/en-us/library/ee523219(WS.10).aspx
    where it shows it successfully decrypt my data at that moment my drives were in RAW format excluding on which windows is installed and then in CMD i check Chdsk which also shows no problem found. but now problem is still i coudnt able to recover
    my data then i format the drive D and again tried to recover data using above software after decryption still no result. 
    Now i need assistance how i can recover my encrypted drive as it was partitioned and also formatted but decrypted also as i have its recovery key too. thanks

    Hi ,
    I am afraid that we cannot get the data back if the drive has been formatted even if use the
    BitLocker Repair Tool.
    You’d better contact your local data recovery center to try to get data back.
    Tracy Cai
    TechNet Community Support

  • Few questions about partitioning and formatting in Windows 8

    Hello,
    I'm very shortly after a Windows 8 reinstall and I want to make use of this moment to finally understand partitioning and formatting in Windows 8.
    Before using Windows 8, I was an XP user for 5 years and I actually never bothered myself with formatting my main system partition, that's probably why my computer ended up working like a slime for the last years. Anyway, by now I have been using Windows 8 for a year.
    Three weeks ago I faced a system-related problem with my laptop (IdeaPad Y580) which prevented it from peacefully shutting down. A good friend of mine (XP user for his entire life, and now Windows 7 newbie user) told me, that I should keep all my non-system stuff on separate partition and that I should do the main system partition format from time to time to keep my PC out of trouble. It is sure that he took his knowledge from using XP, and here's my first question - does this method apply to Windows 8?
    I mean as far as I know, back then, in XP, partitioning was possible only during Windows installation, and now, in Windows 8 we have a Disk Management for this, which do not require running Windows installation to create new partitions.
    I'm mentioning this due to the fact that originally (I mean by factory settings) my drive has only one visible partition - C: (1TB), so I would need to use the Disk Management to take some space from C: partition and allocate it to the new D: partition.
    In case I do this whole partitioning operation and create a D: partition, is it sure that formatting my system-only C: partition won't have effects on my D: partition, and all the programms and data I have here will stay on their places and work after format? (I'm worried about this because I've seen in some partitioning guide a warning not to format the main partition after the partitioning operation, because it would erase totally all data - I'm not sure if I misunderstood something or is it a mistake? EDIT: here's the link for this guide, just jump to the "Final Thoughts" section to see what I'm taking about: http://www.technorms.com/8438/windows-8-create-hard-drive-partition ).
    If this whole method of keeping your system running fine doesn't apply to Windows 8, I guess I'm okay with having only one C: partition.
    By the way, it doesn't matter for me if I create new partition in terms of conflicts with preinstalled Lenovo OneKey Recovery, since I had to reinstall my Windows 8 recently from non-Lenovo CD, and either way my laptop is now totally clean, without Lenovo stuff (I found Lenovo Recovery CD for Y580 on the internet, but it had non-single-language Windows 8 in it, and I needed a single-laguage one in order to have my Product Key recognised, so I just used a pure Windows 8 SL installer)

    I just found out that I can't even transfer my Users folder or Program Data to other drive than the one with the system, because it would prevent me from updating my system or even from actually booting to my system. So apparently my whole topic is for nothing... I guess I should live with only one drive, and whenever my system totally crashes again I should do the backups to my external HDD. It's sad though that Windows 8 is a total opposite to user-friendly OS, to say the least.

  • Thunderbolt partitioned and formatted hard drive not recognized on USB2/3

    I have a MBA (mid 2012) and recently purchased a Seagate Desktop Thunderbolt Adapter (STAE129), a Seagate Backup Plus 4TB USB 3.0 external drive (STCA4000100), and Apple Thunderbolt cable. The 4TB hard drive can be separated from the USB 3.0 adapter and the drive placed on the Thunderbolt adapter. I created two partitions (3TB and 1 TB) on the 4TB drive while it was mounted on the Thunderbolt adapter and formatted them Mac OS Extended (Journaled) using partition map scheme GPT. Everything works as expected, the drive hits r/w speeds in the 180 MB/s range (using Blackmagic Disk Speed Test), and no issues at all transferring data to the 3TB partition and using the 1TB partition for TimeMachine.
    However, if I disconnect the hard drive from the Thunderbolt adapter and place it on the USB 3.0 adapter and connect it to my MBA, Mountain Lion says "The disk you inserted was not readable by this computer and gives me the options to Initialize, Ignore, or Eject. Going into Disk Utility app, the drive shows up without the partitions I created when the same drive was mounted to the Thunderbolt adapter (just shows disk1s1). In fact, the drive label (Disk Description) is different too and the Partition Map Scheme now shows MBR!
    To try work-arounds, I went ahead and repeated the partitioning and formatting steps with the drive attached via USB 3.0 and all works fine until I put the drive back on the Thunderbolt adapter where once again OSX reports that the disk is not readable. I've even tried a single partition with no luck. In short, the drive partitioned and formatted on Thunderbolt is unrecognized under USB and vice versa.
    Shouldn't the disk preparation and data be consistent across these different interfaces? I would think so. My biggest concern is that if I had a failure in the Thunderbolt setup (assuming the drive itself does not fail), then I can't access my data. This is not a very comfortable situation.
    I'm assuming I've overlooked a very basic detail. Appreciate any steer to solve this problem.
    Thanks,
    Rob

    Thanks for that, I recently ran into the same problem. I even chatted with Seagate tech support and they didn't know the answer.
    My situation is a bit different from you. I bought the 3 TB Thunderbolt version of the drive directly and then purchased a USB 3 adaptor seperately.  You see, I still own a 3 year old Macbook Pro that doesn't come with a Thunderbolt port. I was looking to upgade to a MacBook Air later.  I thought that I might as well buy the TB version now.
    In anycase, my old MacBook Pro won't see the drive when I use the USB3 adaptor. I get the same exact error message as you did. I can't really test it on Thunderbolt since I don't have one.  I'm going to go install the Thunderbolt drivers now and hopefully, it will recognize the drive afterwards.  I'll let you know what happens.
    BTW, I was thinking of reformatting the drive with NTFS so that I can use the drive on PCs. My mac has the NTFS drivers loaded so it's no problem. I hope this won't screw up the Thunderbolt connection later when I do get the Macbook Air?

  • HD edited footage in FCP 5.1 to DVDSP 4 to "build and format" to where now?

    97 minute movie shot with Sony's HDV-FX1, edited in FCP 5.1, exported to QuickTime movie, full quality, current settings. Imported into DVDSP 4.1, parsed, no problem, authored with HD settings, and built project. DSP produced a proper HDDVD_TS folder. With Apple DVD Player 4.6.5 on my duel 1.8 G5, this plays just fine.
    With Toast 8 and a NU Technology Blu-ray burner (Matshita BD-MLT SW 5528), DVD-ROM (UDF), new disc, named and imported the HD file. Clicked record, selected 1x DB write speed to be on the safe side, used both a Panasonic BD-RW and a TDK BD-RW single layer disc and burned successfully. Neither disc now, to my ultimate frustration, will play in our Samsung Blu-ray DVD player or play with Apple's DVD Player. Both report a message about not supporting the media type, although the disc does mount on my G5 via the Blu-ray drive.
    Thoughts on where to go from here? Our movie plays fine downconverted to 480i, but we would love to see it play in High def at 1080i.
    Any thoughts would be much appreciated.
    Larry
    G5 Dual 1.8   Mac OS X (10.4.9)   FCP 5.1 DVDSP 4.1

    David,
    That is the answer to why I am unable to use the "build and format" option in DSP? Seems crazy that the option is there, but the function isn't.
    Did the Toast product manager give any hint as to when this option may be available? I knew were we sailing into unchartered waters, but we had hoped that by the time we were done with post that the path had already been navigated
    Thanks,
    Larry

  • How to separate debit and credit values in gl statement report (daywise)

    hi
    experts,
    i have report.
    selection criteria is
    chars of account.
    gl account
    date .
    how to separate debit and credit values in gl statement?.(i know there is a indicator shkzg).
    but send me code.
    op
    date,   total credit,total debit , balances.
    also calculate opening and closing balance.
    u created such type of report then plz help me.
    thanks&regards.\
    ajay.

    Hi,
    Usually it can be determined using the field shkzg. If it contain 'S' its debit and if it contains 'H' then its credit.
    Before showing the amount you need to do like;
    IF wa_gl-shkzg = 'H'.
    wa_gl-dmbtr = wa_gl-dmbtr * (-1). " dbmtr - amount
    ENDIF.
    This will solve your problem.
    Regards
    Karthik D
    Edited by: Karthik D on Jun 3, 2009 12:29 PM

Maybe you are looking for