FormCalc Troubles

I am using LiveCycle Designer
I have a table that I need to do several things:
When someone make a selection from field PaymentProgram1, the fee for their selection should populate field Fee1.  Next the sum of fields Fee1, Fee2, etc. should populate the Subtotal field. 
The next calculation is depending on the selection from fields PaymentProgram1-4, this field will add the required deposits from each selection.
The final calculation is the balance due after the down payment is paid.
I created an if then statement:  If PaymentProgram1=1 then $56.00
I selected the field that I wanted to run this statement, I selected FormCalc for the language.  But it still does not work.
I also created this calculation for the Subtotal field:  Fee1 + Fee2 + Fee3 + Fee4
Can someone help me please?
Thank you
Angela
[email protected]

The script should be something like:
If (PaymentProgram1 == "1") then
     $ = 56
endif
Set up your field to add the dollar sign using the "Patterns" feature in the field tab object pallet.
For the Subtotal field, you'll need to provide more info--are the fields part of a table? If so, the script will look something like:
     $ = Row1.Fee1 + Row2.Fee2 + Row3.Fee3 + Row4.Fee4
or
     $ = Sum( Row1.Fee1, Row2.Fee2, Row3.Fee3, Row4.Fee4)
If they are all siblings of the same subform this should work
     $ = Fee1 + Fee2 + Fee3 + Fee4
Good luck!
Stephen

Similar Messages

  • Basic if statement in formcalc..

    I'm trying to create basic if statement for one of the fields. I'd like to know your opinion what is wrong with it
    //code
    form1.#subform[0].Body.TotalTaken[0]::calculate -  (FormCalc, client)
    var sum = Sum(Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec)
    // if I leave only Sum(Jan,...) in this field it works fine, shows the sum...
    if (this.rawValue > 0 && TotalAvailable.rawValue <= sum)
      this.rawValue = sum
    else
        this.rawValue = 1
    endif
    //endofcode
    Im trying to do basic validation, if sum is between 0 and Total Available number then its ok, display the sum, other wise dosplay some popup, at the moment I want only "1" to be shown since I cant pass even that basic scripts.
    I get an error "near token &". It doesnt matter if I switch "this" with field name, "TotalAvailable". All fields are numeric of same type.
    Please advice.

    Sum() works fine, Jan, Feb etc are names of NumericFields.
    I have holidays chart where user puts overall number of days available for him as free from work in field named "TotalAvailable"
    in fields named after each month, Jan, Feb etc.. user puts how many days he will use for holidays in given month
    In "TotalTaken" field I add all the days user took in any of given months.
    With that if statement I want to check if Sum(..) is not bigger than TotalAvailable number, if is bigger then error (or just "1" for now as I have to much troubles with simpler tasks)
    Ill try to use your tips and see what comes of it, thank you. Still any advice will be helpfull.
    Best regards

  • Reader 9.3.1 not working with FormCalc in LiveCycle 8 forms

    My agency has recently upgraded to Adobe Reader 9.3.1. I have a fillable form I created using Livecycle Designer 8 in Acrobat Professional 8 and distributed to agency staff using the "distribute" function in Acrobat Professional 8. The form includes formcalc scripts that use the DocReady and other events to create a unique identifier comprised of data from the form, and to calculate totals. The formcalc scripts work as long as the form is opened in Acrobat Professional 8 or Adobe Reader versions prior to 9.3.1, but don't seem to fire at all with Reader 9.3.1.
    I've been told by my agency IT staff that I need to upgrade, but before I go to that expense, I'd like to know whether this is necessary or guaranteed to fix the problem. I've also seen other posts that suggest that that Acrobat 9 handles exporting the data differently (no longer exporting to a .csv file) and that also concerns me, as I've set up automated processes using the .csv output. Upgrading may introduce new problems, for all I know.
    It seems unlikely that Adobe would intentionally make Reader 9.3.1 not backwards-compatible with forms created using older versions of LiveCycle, as that would cause hugh headaches for their customers, so I'm wondering if this is a bug that will be soon fixed?
    Thanks, Alice

    Hi Alice,
    I really don't think the problem is using LC Designer 8. We have several forms that were developed in LC Designer 8 (with FormCalc and Javascript), that still function in Acrobat/Reader 9.3.1.
    There are two potential issues. The first is the most likely.
    In the new installation of Reader 9.3.1, JavaScript is turned off. See this blog and sample: http://blogs.adobe.com/livecycle/2009/02/adobe_reader_disabled_javascri.html
    If you send the sample to the agency, a warning will appear if they open it and Javascript is turned off. When they turn javascript back on in the preferences, then your form should work again.
    The second issue can be a little more trouble. Adobe have introduced a new Javascript Blacklist Framework in Acrobat/Reader 9.3.1, which can disable FormCalc and JavaScript if it contravenes the framework. See these links:
    http://kb2.adobe.com/cps/504/cpsid_50431.html
    Managing JavaScript Execution in the Acrobat Family of Products
    As I say, unless your FormCalc is trying to access external resources, I suspect that Javascript is turned off in Reader. I don't think you have to upgrade Acrobat/LC Designer.
    Hope that helps,
    Niall

  • FormCalc. Hiding the subtotal footer in PDF form

    Hi, LCD gurus!
    I've got a problem that I'm unable to solve for a couple of days.
    There is a PDF form (consignment note) with header, lots of positions and footer. The original task with it was to make the last position of the data table be on the same page with the form footer.
    I managed to do this by adding second table (consisting of 1 row), placed in subform together with form footer. The last position of the main table was dynamically hidden, it's content was copied to the second table.
    The subform didn't allow page breaks, so my task of placing page breaks before the last position of the form was completed. It was done by Adobe
    Now the only trouble is that it is necessary to have page footers with page total on every page. That's where the problem settled.
    If I create a main table footer (calculating the totals by FormCalc) with checkbox "Include footer in final page", I need to hide it when some positions of the main page are on the same page with the second (one-row) table. Of course, I set up the footer of the second table with the necessary calculations, but it doesn't matter at the moment. The problem is that I can't figure out, where is the "tail" of the main table located until the layout:ready event has come. After that I know the page of any table position, but it's too late to hide the footer - after layout:ready hiding the footer won't lift up the second table and there's an annoying blank line in that case.
    I tried another way - not checking "Include footer in final page". Then the footer on the pre-last page of the document doesn't appear in case this page is last for the main table (and then follows page break and the second table with form footer).
    So, my global question to the form developers is - is it possible somehow to get (at least appoximately) page of form elements BEFORE the layout:ready event?
    Or is it possible to make $.presence = "hidden" of the element after layout:ready and not having blank line instead of it?
    Thanx for your reading this stuff up to this

    Hi Reeha,
    In case you need to use any script you may prefer formCalc script, which is very easy to use. You can use any script out of the two as per your understanding and comfort level.
    If you require more technical information about FormCalc, refer to the Adobe XML Forms Architecture (XFA) Specification, version 2.4, available from:
    [http://partners.adobe.com/public/developer/xml/index_arch.html.]
    and
    [http://help.adobe.com/en_US/livecycle/es/FormCalc.pdf]
    Hope this helps you
    Regards,
    Gaurav Bhardwaj

  • Repetable row trouble with auto sum

    Hi,
    I'm really struggling with this table. Please take a look.
    What I want is to have fields Komada, m2, Iznos be summed up in a corresponding total field thats underneath the table.
    The trouble is I made a button that adds or substracts new table rows. Please check it in LC Designer so I understand your suggestions.
    The form is here.
    udrugasasrcem.com/test4.pdf
    Thanks

    If you use this script
    ($ = Sum(amount[*]))
    in the calculate-event the calculate always recalculate if one of the parameter in the SUM function is changing his value.
    xfa.resolveNodes( "master.Table3.Row1[*].iznos"); --> The [] aren't NO a sign for an array. This square brackets are only from the instances. But it's ok you used it as a name of the varibale.
    I don't use execCalculate(); because this is not so good for the performance in my opinion. Normally everything is working fine with the calculate.event.
    Let me see the next days. I will take a look to your pdf when I have more time.
    Kind regards
    Mandy
    PS:
    In the calculate-event (using Formcalc) of the Footer from Komada use
    $ = Sum(Row1[*].komada)
    In the calculate-event (using Formcalc) of the Footer from m2 use
    $ = Sum(Row1[*].m2)
    In the calculate-event (using Formcalc) of the Footer from iznos use
    $ = Sum(Row1[*].iznos)
    This all three works correct!
    The problem in your script is-..there are a few mistakes...you use in Formcalc "this". "This" you could only use by Javascript. The same in Formcalc is "$"...
    You used too much brackets, for example here..you don't neefd TWO brackets!
    else if ((this.resolveNode("$").rawValue !== null || this.resolveNode("$").rawValue !== "")) {

  • Trouble calculating empty fields

    I have a calculation (script below) where DN or DV are not always part of the sum. Trouble is both DV and DN have to be filled in to get the result.
    How can I script these 2 fields to where one or both are calculated?
    SUM=(PD1*DN*DV[WD1*CT])/BPY

    Hi. Thanks for your previous responses.  I'm getting an error msg when I open this form in Reader and start entering info into the fields that are included in my calculation. Here's what the error  box says:
    Script failed (language is formcalc; content is xfa[0].form1[0].#subbform[0].WD1[0])
    script=
    Sum(PD1*DN/DV[WD1*CT])/BPY
    Error: arithmetic over/underflow.
    Can you tell me what this means? I can still get the result I want, but each time I enter a number into one of the calculated fields I get this error msg. I click OK in the error msg and can continue.
    Thanks!

  • FormCalc Master Required!

    Hi All!
    I have posted several queries on here in the last few weeks, and most of the responses I have got back have offered me Javascript to add to my form to generate the effect I have requested...
    None of these have worked, so as such on the recommendation of one the devs, as well as the official SAP Adobe Forms coursebook, i have decided to revert to FormCalc as my forms are all printed forms and the logic i require has only ever been basic!
    I used the following statement attached to the form:ready event of a subform set with the script lang set to formcalc, and 'run at' set to server:
    if ($record.GV_FORMNAME == "INVOICE")
    //where GV_FORMNAME is a structure in the context with a value of either "INVOICE" or "CREDIT NOTE"
    then TERMS.presence = "hidden"
    //where TERMS is the subform within the set that contains the data to be hidden
    ENDIF
    It still doesnt work!! Am I missing something? A prerequsite that needs setting in SAP, or in the form or livecycle properties?
    I've also tried to see if I can simply 'hide' the subform term by attaching the following to the subform sets form:ready event:
    TERMS.presence = "hidden"
    ENDIF
    This also did NOTHING!
    Help!!!!!

    Yep!
    Ultimately I have tried both script types, running at client, at server or at both, I've added stuff into the scripts that is supposed to generate a popup message box as recommended by the guys on here, but this doesnt even appear when the form is generated.
    This leads me to believe there is something else that needs setting up somewhere.
    The trouble is, I don't know enough about the setup of SAP or the way things are likely to be working behind the scenes  to give you guys an accurate enough picture resulting in accurate answers!
    All the SAP Devs/consultants on this project have no real Adobe Forms experience and it was decided the actual form design would be easy enough for a generic IT contractor to do. So it was decided that they draft in a couple of contractors of which I am one...
    ...the form design itself, now I have a decent grasp of Adobe livecycle, is indeed pretty easy, but I don't know enough about what goes on behind the scenes, and am not fluent in any programming lang, let alone Java...
    ...this makes things kind of difficult!
    Regards,
    Ryan

  • Trouble getting past arithmetic over/underflow error

    Thanks in advance to anyone that can help out. I've read some forum posts about getting over an error on a LC Designer form for Arithmetic over/underflow that is occurring if a user has not filled out a field yet, so the calculation is trying to divide by zero. I applied some code (javascript below) that has worked for me on all fields I needed it, except for one, and I cannot figure out what I've done wrong.
    I'm trying to determine a Loan to Value Ratio. I have been able to successfully calculate the field using the following FormCalc code, written on the calculate event of my field named "Asset1LVR":
    Page4.TotalPropertyTable.Row2.PPROwing/Page4.TotalPropertyTable.Row2.PPRValue*100
    This is fine and all, but if the user has not yet filled out the "PPRValue" field, then the arithmetic over/underflow error occurs because the value of PPRValue is null.
    I have been using a script like this one below on other parts of my form where I was having the same trouble, and the code below works like a charm. For some reason I cannot get this code to work with my Loan to Value Ratio scenario. It is not producing anything in the "Asset1LVR" field at all, so appears to be doing nothing.
    This what I am using, written on the calculate event of "Asset1LVR" and Language is set to Javascript:
    if ( Page4.TotalPropertyTable.Row2.PPRValue >0) then
         Page4.TotalPropertyTable.Row2.PPROwing / Page4.TotalPropertyTable.Row2.PPRValue * 100
    endif
    How come the FormCalc version works to calculate, but the JavaScript doesn't?
    Any help is much appreciated, thank you.

    I managed to come across the answer in another post I missed earlier (REPOST - "Arithmetic Over / Underflow" Error). I've changed my code to what is shown below, and seems to work perfect. Hopefully someone else will find this useful.
    // check for divisor having a value and not zero
    if
    (HasValue(Page4.TotalPropertyTable.Row2.PPRValue) and Page4.TotalPropertyTable.Row2.PPRValue <> 0) then
    // perform division
    Page4.TotalPropertyTable.Row2.PPROwing
    / Page4.TotalPropertyTable.Row2.PPRValue
    * 100
    else
    // display nothing
    endif

  • Mini-Dvi-to-Video trouble

    I just bought a mini-dvi-to-video adapter so I could use my TV as a display. More specifically, so I could use my VCR to record what's on my Mac's display. I also bought a headphone-to-composite cable adapter. I'm using a double-headed (is that one male or female? It's male, isn't it?) composite cable from the video adapter to the VCR. The problem is, it doesn't show up. The sound plays (and records) fine, but the video neither shows up on the TV screen nor records onto the tape. What's the problem? Both adapters are Dynex, my computer's a Late 2006 iMac (I think), the cable is WireLogic, and both the VCR and TV are Sony. Please help, thanks.

    So if you eliminate the double headed splitter and plug straight into the TV, does the video still not show up?
    FYI, there have been reports in the past of trouble with the Dynex video adapter. You may need to purchase the Apple OEM one. The Dynex may lack having a ROM inside of it with a proper EDID in the ROM. This is crucial to the Mac.

  • Trouble Using Apple's Video Adapter

    I am having trouble getting my eMac to work with the Apple Mini-DVI to Video Adapter. There are no directions telling you how to use it or to even get it to work. I want to use it to import videos from my Sony Hi8 camcorder and was told by Apple's Live help that this is what I needed to import video and make DVDs. How do I get this adapter to work?

    Welcome aboard.
    I think the adapter you have is for video output, not input. To input video to the eMac you need a firewire connection. Sony cameras typically have a 4 wire connector which is smaller than the 6 wire plug on the mac, so you need a cable that has a 4 wire connector on one end and a 6 wire connector on the other. Cameras often (but not always) come with such a cable. You also need a digital camcorder- not just Hi8., although Sony does make cameras that will do both. If you camera does not have digital output, you need a convertor box.

  • Hi, I am having trouble MacBook Air crashing since Yosemite upgrade. I ran an Etresoft check but I don't know what it means... my system runs slowly and crashes. I have to force shutdown. Sometimes screen is black for a split second b/w webmail pages

    Hello,
    I am having trouble with my MacBook Air 13 inch June 2012 MacBook Air5, 2 4GB RAM  details below in Etresoft report. I recently upgraded to Yosemite and am having system trouble. My computer crashes and I have to force quit to restart. When using webmail there is a black screen for a split second between pages. This did not happen before. I am worried that it is not running properly and perhaps I need to revert to the previous operating system. I only have a MacBook Air and no need to share images between a tablet or phone so I did not need the new photo sharing software of Yosemite. I wonder if I don't have enough RAM to run it? I did not run time machine before I made the upgrade as I did not realise the significance of an upgrade as not very Mac literate. Any advice on whether my system is in danger... most appreciated! I am writing a book and making a back up but this machine is my lifeline and my work is conducted through it. It ran perfectly before... the Yosemite upgrade has perhaps highlighted some problems and it has unnerved me!
    Thanks ever so much for your advice!
    Lillibet
    EtreCheck version: 2.2 (132)
    Report generated 5/2/15, 9:53 PM
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Air (13-inch, Mid 2012) (Technical Specifications)
        MacBook Air - model: MacBookAir5,2
        1 1.8 GHz Intel Core i5 CPU: 2-core
        4 GB RAM Not upgradeable
            BANK 0/DIMM0
                2 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                2 GB DDR3 1600 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en0: 802.11 a/b/g/n
        Battery: Health = Normal - Cycle count = 694 - SN = D86218700K2DKRNAF
    Video Information: ℹ️
        Intel HD Graphics 4000
            Color LCD 1440 x 900
    System Software: ℹ️
        OS X 10.10.3 (14D136) - Time since boot: 0:22:41
    Disk Information: ℹ️
        APPLE SSD SM256E disk0 : (251 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 249.77 GB (167.35 GB free)
                Encrypted AES-XTS Unlocked
                Core Storage: disk0s2 250.14 GB Online
    USB Information: ℹ️
        Apple, Inc. Keyboard Hub
            Mitsumi Electric Apple Optical USB Mouse
            Apple Inc. Apple Keyboard
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Internal Memory Card Reader
        Apple Inc. Apple Internal Keyboard / Trackpad
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Applications/WD +TURBO Installer.app
        [not loaded]    com.wdc.driver.1394HP (1.0.11 - SDK 10.4) [Click for support]
        [not loaded]    com.wdc.driver.1394_64HP (1.0.1 - SDK 10.6) [Click for support]
        [not loaded]    com.wdc.driver.USB-64HP (1.0.3) [Click for support]
        [not loaded]    com.wdc.driver.USBHP (1.0.14) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.wdc.driver.1394.64.10.9 (1.0.1 - SDK 10.9) [Click for support]
        [loaded]    com.wdc.driver.USB.64.10.9 (1.0.1 - SDK 10.9) [Click for support]
    Problem System Launch Daemons: ℹ️
        [failed]    com.apple.mtrecorder.plist
    Launch Agents: ℹ️
        [running]    com.mcafee.menulet.plist [Click for support]
        [running]    com.mcafee.reporter.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
    Launch Daemons: ℹ️
        [running]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [failed]    com.apple.spirecorder.plist
        [running]    com.mcafee.ssm.Eupdate.plist [Click for support]
        [running]    com.mcafee.ssm.ScanManager.plist [Click for support]
        [running]    com.mcafee.virusscan.fmpd.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
    User Login Items: ℹ️
        iTunesHelper    Application Hidden (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        Dropbox    Application  (/Applications/Dropbox.app)
        AdobeResourceSynchronizer    Application Hidden (/Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app)
        EvernoteHelper    Application  (/Applications/Evernote.app/Contents/Library/LoginItems/EvernoteHelper.app)
        TouchP-150M    Application  (/Applications/Canon P-150M/TouchP-150M.app)
        iPhoto    Application  (/Applications/iPhoto.app)
        WDDriveUtilityHelper    Application  (/Applications/WD Drive Utilities.app/Contents/WDDriveUtilityHelper.app)
        WDSecurityHelper    Application  (/Applications/WD Security.app/Contents/WDSecurityHelper.app)
    Internet Plug-ins: ℹ️
        FlashPlayer-10.6: Version: 17.0.0.169 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Click for support]
        AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Click for support]
        Flash Player: Version: 17.0.0.169 - SDK 10.6 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        JavaAppletPlugin: Version: Java 8 Update 45 Check version
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
        FUSE for OS X (OSXFUSE)  [Click for support]
        Java  [Click for support]
        MacFUSE  [Click for support]
        NTFS-3G  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: ON
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 249.77 GB Disk used: 82.42 GB
        Destinations:
            My Passport Edge for Mac [Local]
            Total size: 499.94 GB
            Total number of backups: 27
            Oldest backup: 2013-01-31 21:15:26 +0000
            Last backup: 2015-05-02 11:33:09 +0000
            Size of backup disk: Adequate
                Backup size 499.94 GB > (Disk used 82.42 GB X 3)
    Top Processes by CPU: ℹ️
             6%    WindowServer
             3%    fontd
             2%    VShieldScanManager
             0%    taskgated
             0%    notifyd
    Top Processes by Memory: ℹ️
        745 MB    Google Chrome Helper(8)
        439 MB    kernel_task
        246 MB    VShieldScanner(3)
        160 MB    Google Chrome
        127 MB    Finder
    Virtual Memory Information: ℹ️
        130 MB    Free RAM
        3.87 GB    Used RAM
        0 B    Swap Used
    Diagnostics Information: ℹ️
        May 2, 2015, 09:30:08 PM    Self test - passed
        May 2, 2015, 08:52:59 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/soffice_2015-05-02-205259_[red acted].crash
        May 2, 2015, 09:28:53 AM    /Library/Logs/DiagnosticReports/backupd_2015-05-02-092853_[redacted].cpu_resour ce.diag [Click for details]
        May 1, 2015, 05:45:24 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/EvernoteHelper_2015-05-01-1745 24_[redacted].crash
        May 1, 2015, 05:38:54 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173854_[redacted].crash
        May 1, 2015, 05:38:43 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173843_[redacted].crash
        May 1, 2015, 05:38:32 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173832_[redacted].crash
        May 1, 2015, 05:38:27 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173827_[redacted].crash
        May 1, 2015, 05:38:10 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173810_[redacted].crash
        May 1, 2015, 05:38:00 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173800_[redacted].crash
        May 1, 2015, 05:37:49 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173749_[redacted].crash
        May 1, 2015, 05:37:38 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173738_[redacted].crash
        May 1, 2015, 05:37:27 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173727_[redacted].crash
        May 1, 2015, 05:37:22 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173722_[redacted].crash
        May 1, 2015, 05:37:06 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173706_[redacted].crash
        May 1, 2015, 05:36:55 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173655_[redacted].crash
        May 1, 2015, 05:36:44 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173644_[redacted].crash
        May 1, 2015, 05:36:33 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173633_[redacted].crash
        May 1, 2015, 05:36:22 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173622_[redacted].crash
        May 1, 2015, 05:36:17 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173617_[redacted].crash
        May 1, 2015, 05:36:01 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173601_[redacted].crash
        May 1, 2015, 05:35:50 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173550_[redacted].crash
        May 1, 2015, 05:35:39 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173539_[redacted].crash
        May 1, 2015, 05:35:28 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173528_[redacted].crash
        May 1, 2015, 05:20:29 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/soffice_2015-05-01-172029_[red acted].crash
        May 1, 2015, 04:55:05 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/soffice_2015-05-01-165505_[red acted].crash
        May 1, 2015, 02:53:58 PM    /Library/Logs/DiagnosticReports/sharingd_2015-05-01-145358_[redacted].crash
        Apr 20, 2015, 09:31:20 PM    /Library/Logs/DiagnosticReports/Kernel_2015-04-20-213120_[redacted].panic [Click for details]

    When you have kernel panics, the pertinent information is in the panic report.
    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    In the Console window, select
              DIAGNOSTIC AND USAGE INFORMATION ▹ System Diagnostic Reports
    (not Diagnostic and Usage Messages) from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar.
    There is a disclosure triangle to the left of the list item. If the triangle is pointing to the right, click it so that it points down. You'll see a list of reports. A panic report has a name that begins with "Kernel" and ends in ".panic". Select the most recent one. The contents of the report will appear on the right. Use copy and paste to post the entire contents—the text, not a screenshot.
    If you don't see any reports listed, but you know there was a panic, you may have chosen Diagnostic and Usage Messages from the log list. Choose DIAGNOSTIC AND USAGE INFORMATION instead.
    In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.)
    Please don’t post other kinds of diagnostic report.
    I know the report is long, maybe several hundred lines. Please post all of it anyway.

  • I had a 1 TB Drive that was connected as a back up, but it is no longer recognized by the mac.  How may I trouble shoot to reconnect?

    how do I trouble shoot this?

    emanwine wrote:
    Got it to connect and it is my back up. ...
    Good News.
    If this is your only Backup would suggest getting a New EHD and creating another one... Preferably a Clone if you don't already have one.
    http://www.bombich.com/
    Can never have too many Backups...

  • I am having trouble printing to an Epson XP600.  It is a new printer and it has been replaced because we thought it was the printer.  Basically, when I print from Excel, only color will print.

    I am having trouble printing to an Epson XP600.  We have replaced the printer and we are still having the same problem.  When I try to print from Excel, only the color prints.  Any suggestions?

    Has anyone else had issues not being able to print black (such as a document)?  My photos print great, but when I try to print a simple black-ink document, it won't work. Any suggestions?

  • I have been having a lot of trouble with the latest itunes update and my ipod classic 80Gb i.e. being unable to sync songs, but now i have no files at all on my ipod, it is completely blank when i view it from my computer. I need help, please, anybody.

    As it says above, i have been having a lot f trouble with my ipod classic and the latest itunes update, i was unable to sync songs or anything to it and have tried every conceivable 'fix' i could find. i have run an itunes diagnostic and the results are posted below. a major problem is that when i try and view my ipod through my computer it displays nothing at all on the ipod, no files or anything, this may be the problem but i have no idea how it has happened or how i could resolve it.
    This ipod holds huge sentimental value and i am loathe to buy a new one! If anybody can help it is greatly appreciated, than kyou in advanced.
    Microsoft Windows 7 x64 Home Premium Edition Service Pack 1 (Build 7601)
    ASUSTeK Computer Inc. K50IJ
    iTunes 11.1.5.5
    QuickTime not available
    FairPlay 2.5.16
    Apple Application Support 3.0.1
    iPod Updater Library 11.1f5
    CD Driver 2.2.3.0
    CD Driver DLL 2.1.3.1
    Apple Mobile Device 7.1.1.3
    Apple Mobile Device Driver 1.64.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 0038B8600B98D1E0
    Current user is not an administrator.
    The current local date and time is 2014-03-21 16:52:39.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    Intel Corporation, Mobile Intel(R) 4 Series Express Chipset Family
    Intel Corporation, Mobile Intel(R) 4 Series Express Chipset Family
    **** External Plug-ins Information ****
    No external plug-ins installed.
    Genius ID: 2fd81a1f13cf3ff25a8b4f0e8e725116
    **** Device Connectivity Tests ****
    iPodService 11.1.5.5 (x64) is currently running.
    iTunesHelper 11.1.5.5 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    Universal Serial Bus Controllers:
    Intel(R) ICH9 Family USB Universal Host Controller - 2934.  Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2935.  Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2936.  Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2937.  Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2938.  Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2939.  Device is working properly.
    Intel(R) ICH9 Family USB2 Enhanced Host Controller - 293A.  Device is working properly.
    Intel(R) ICH9 Family USB2 Enhanced Host Controller - 293C.  Device is working properly.
    No FireWire (IEEE 1394) Host Controller found.

    Here is what worked for me:
      My usb hub, being usb2, was too fast. I moved the wire to a usb port directory on my pc. That is a usb1 port which is slow enough to run your snyc.

  • What 24 character verification is it talking about???? I've never had so much trouble just to download something that is going to take a day and half

    I purchased the student version of Photoshop and Lightroom a few weeks ago
    I have a 19 digit code that i had to scratch to get, a 30 digit number under the bar code, and a 6 digit authorization code that seems to be completely pointless. I started off putting in the 19 digit code with all my other information, but it wanted 24. so I filled in the rest with zeros. Then it starts giving me so much trouble I don't think I'll ever attempt to get photoshop again.

    You may want to check all about serial numbers and redemption codes here: Find your serial number quickly

Maybe you are looking for