Function evaluation

Hello,
I'm facing a challenge task to do function evaluation in java. I need to write a function which take a string and a 2D array like following:
public double[][] loopEval(String input, double[][] data)
then, I need to parse the String based on following rule, the string is composed as a class name, a "." and a function name. For e.g., the string could be "Math.round". So each element of the 2D array should be applied by using this funciton( e.g., Math.round(data[ i ][ j ] ) in the loop. The input string could be various Class and function.
Hope you could give help on solving this problem? many thanks.

Thanks for the reply. But I still struggled with this problem. Please see the following code snippet:
   public double[][] loopEval(String className, String methodName, Matrix aMatrix){
    double[][] inData = aMatrix.getArray();
    int rowNum = inData.length;                    //the number of rows
    int colNum = inData[0].length;                 //the number of cols
    double[][] outData = new double[rowNum][colNum]; //assume colNum are same
    Class c = null;
    Method m = null;
    try{
      c = Class.forName(className);
      m = c.getMethod(methodName, null);
      //loop each element and apply the specific function
      for (int i = 0; i < rowNum; i++) {
        for (int j = 0; j < colNum; j++) {
          Float[] arg = new Float[1];
          arg[0] = new Float(inData[i][j]);
          outData[i][j] = ((Double)m.invoke(c, arg)).doubleValue();
    catch(Exception e){
      e.printStackTrace();
  return outData;
}method call is like following:
  double[][] roundResult = util.loopEval("java.lang.Math", "round", A);I got error like this:
java.lang.NoSuchMethodException: java.lang.Math.round()
I know the "round" method should take one parameter, but how could I solve the problem in this case?
thanks!

Similar Messages

  • FIM RCDC drop down and function evaluator vs functions within sync rules

    Hi,
     I have several hundred buildings in my organisation and I would like to to give users the ability to select their building name from a custom RCDC - straight forward enough, however I'd also like the following to be automatically selected within FIM:
    Address, City, Post Code, Country
    I believe this can be done in 2 ways:
    An outbound sync rule using a function (.e.g IF(Eq(Address),"Beverly Hills"),"90210",""))
    A function evaluator using a similar expression.
    Whilst I'm comfortable with sync rules I don't know much about function evaluators in workflows and would like some advice on the best approach to take and how to go about it?
    In addition, given there'll be a lot of sites, is there a way to input the RCDC drop down list of sites from a CSV or XML file, rather than having to manually edit the FIM pages and functions?
    Thanks
    IT Support/Everything

    Hi Aetius,
    Yeah, they're the two methods I'm familiar with in the portal to do something like what you're saying automatically: either do it in the sync from source to MV or apply a workflow in the Portal.
    The general idea with the workflow method would be to have a set called something like "Users With Address" and scope it to only users with the address attribute. Have a transition-in MPR that looks at that set and fires off a workflow when a user enters
    that set. There are a lot of options when it comes to how to implement the workflow. You can write your own custom workflow/s. There are some good tutorials by Ross Currie around that http://www.fimspecialist.com/fim-portal/custom-workflow-examples/ and
    there are some that have already been built by Soren Grandfeldt http://fimactivitylibrary.codeplex.com/.
    So if you leave the workflows for a sec, all the associated data about what will be populated if the address is x can be loaded into the portal by creating a custom object type and then adding them all in one by one. You can probably script the part of actually
    adding the data. Or even the custom object type creation if you want. So then you have a central place where that information is all together.
    With the workflow when it's triggered, using the workflows that are floating around the internet you should be able to read the attribute off the user and then lookup the value in the list of custom objects and then update the other attributes of the user,
    City, Post Code, Country using the lookup value. You kind of chain the custom workflows together and pass data from one to other.
    You do need to be careful when you do this sort of thing though. The FIM event queue can get pretty clogged up if you have a huge amount of users in the set and it's trying to process all of these users at once. When you're testing probably better to apply
    the MPR to a manual set and add users one or a few at a time and see how it handles it.

  • When is an anonymous function evaluated?

    Hi everyone.
    I used two kinds of anonymous function in my AS 3.0 Flash
    file, in order to implement the roll-over animation of menu
    buttons. menu_1, menu_2, ... are the buttons already on the stage,
    and menu_list is an array of them. The code is about adding event
    listeners on the menu buttons to the corresponding movie clips
    ("shades" in the code).
    It is supposed that when MOUSE_OVER happens on menu_1, then
    shade_list[0] plays itself from a frame named "colorIn". However,
    when complied and run, all of the event listeners are linked to the
    final element of shade_list, namely shade_list[5]. No matter what
    button your mouse is going over, a shade covers the sixth menu
    button.
    If I put the for statement away and hard-code the whole
    thing, like menu_list[0].addEventListener( ... );
    menu_list[1].addEventListener( ... );
    menu_list[2].addEventListener( ... ); ..., then it works fine as I
    intended. But I'd really appreciate if I can do this with for
    statement, since this time it should be an extensive menu
    design.

    The problem was because of the concept of "scope." In the
    code, the local variable named menuNumber is used in an anonymous
    function about shade_list. However, shade_list[menuNumber] is not
    evaluated until it is called. When it is actually called,
    menuNumber already has the final value (namely the length of
    menu_list) because the for statement is over. This is why every
    event listener is linked to the final element of shade_list. So I
    have to force menuNumber to be evaluated when addEventListener
    happens. I can do this by adding an extra scope.
    Thus
    function (MouseEvent) {
    shade_list[menuNumber].gotoAndPlay("colorIn") }
    should be rewritten like
    function (menuNumber) { return function (MouseEvent) {
    shade_list[menuNumber].gotoAndPlay("colorIn") } }
    (menuNumber)

  • SAP Banking product functionality/evaluation

    Hi Guys,
    I have just switched to SAP applications though i have spend considerable time in IT industry.
    I am doing a product evaluation for SAP banking and thus needs help on answering these subjects.
    I will appreciate if someone gives me the source/documentation/correct linkages/or answers to below subject
    1)Account Details and Balance: Describe the productu2019s support for this service
    2) Initiate Loan: Describe the productu2019s support for this service
    3) Draw Down Against Loan: Describe the productu2019s support for this service
    4) Apply Re-Payment: Describe the productu2019s support for this service
    5) Endpoint Services List: List the end point services made available by the product
    6) Custom Services: Describe the productu2019s support for developing custom services
    7) Service Granularity: Describe the productu2019s services granularity
    8 ) GL Updates: Describe the productu2019s support for this service
    9) Statement Generation Requests: Describe the productu2019s support for this service
    10) Notification Generation Requests: Describe the productu2019s support for this service
    11) Publishing Services List: List the publishing services made available
    12) Custom Services: Describe the productu2019s support for developing custom services
    13) Service Granularity: Describe the productu2019s services granularity

    Hi,
    The following links may be useful:
    http://help.sap.com/saphelp_banking463/helpdata/en/74/9aa43556903266e10000009b38f839/frameset.htm
    http://www.sap.com/industries/banking/index.epx
    Thanks,
    Ravi

  • ME6G - Vendor Evaluation in Background

    Dear Gurus,
    Can explain me this transcation ME6G - Vendor Evaluation in Background . How to execute this by steps?
    Please advice me
    THanks
    Rs

    Dear,
    You can evaluate your vendors on a regular basis by means of background processing. The Evaluation in the Background function can be found in the Purchasing menu.
    If you want to start a background processing request for vendor evaluation, you need a variant (to limit the number of vendors to be evaluated, for example).
    Maintaining and Displaying Variants
    When you invoke the Evaluation in the Background function, you can display existing variants in editing mode of the step list, and create new variants or change existing ones.
    To do so, choose Edit Steps and then
    Goto Variant (to display), or
    Goto Variant maintenance (to create)
    Procedure
    Choose Master data - Vendor evaluation.- Follow-on functions - Evaluation in the background.
    On the initial screen, enter a job name and the name of the variant. Specify when the background evaluation should take place and how often it should be repeated.
    Save the background processing request.
    You require certain authorizations in order to carry out evaluations in the background and define new variants. If you have any queries in this connection, please consult your system administrator.
    If you require more detailed information about working with background processing requests, please refer to the documentation Getting Started with R/3.
    Subsequent Maintenance of Background Evaluations
    In background processing, you usually evaluate vendors belonging to the same group (that is, vendors who have the same weighting key). However, it is possible that you have selected an interval that contains different groups of vendors. For this reason, you have not entered a weighting key.
    To ensure that the scores are calculated correctly, you must therefore subsequently maintain the weighting key for such evaluation records at certain intervals of time.
    The evaluation records in question can be determined using the analysis report Vendors Without Weighting Keys.
    This function can be found in the purchasing menu under Master data - Vendor Evaluation - Follow-on functions - Vendors without weighting key
    From this report you can branch directly into the screens for maintaining evaluations.
    Regards,
    Syed Hussain.

  • Workflows use function to update value.

    As part of a workflow I'm trying to update an object value using Function Evaluator.
    However when I set the Workflow parameter to "Target" and look through the list of attributes (Parameter attribute), I don't see the attribute I'm after. This attribute is created in the FIM portal and when I look at the extended properties of
    an object in the portal I can see this property.
    Thanks for ur help.

    Hi,
    This attribute is binded to a custom object? There is an old issue that attributes are not listed in Function evaluator if they are not binded to Person or group object..
    But you can simply write it in the field, like [//Target/MyAtt]
    Regards,
    Sylvain

  • Function "xmlnamespaces" gives PL/SQL: ORA-19102: XQuery string literal....

    Below is my script that you can run successfully, and i have version Oracle 11g.
    Script has Xml namespace as constant at the moment there:
       xmlnamespaces(default 'http://elion.ee/webservices/Sales/Dynamics')I want to have a variable there instead, like this:
       xmlnamespaces(default    l_sSOAP_Namespace )But if i add such variable there i get such error:
    PL/SQL: ORA-19102: XQuery string literal expectedCan i avoid such error somehow and use still the namespace as variable somehow, not the constant?
    My script:
    declare
       l_resp varchar2(4000);
       l_sSOAP_Namespace varchar2(4000) := 'http://elion.ee/webservices/Sales/Dynamics';
    begin
      l_resp :=
      '<ns0:FindItemMetaDataResponse xmlns:ns0="http://elion.ee/webservices/Sales/Dynamics">
            <ns0:ItemMetaData>
              <ns0:ItemMetaData>
                <ns0:ItemGroupId>IT.LS.VS.DSL</ns0:ItemGroupId>
                <ns0:ItemGroupName>IT lisad võrguseadmed DSL</ns0:ItemGroupName>
                <ns0:ItemId>DSLGP603</ns0:ItemId>
                <ns0:ItemName>ADSL SIP ST546</ns0:ItemName>
               <ns0:ItemType>Item</ns0:ItemType>
               <ns0:MacAddressMandatory>No</ns0:MacAddressMandatory>
               <ns0:SalesUnit>tk</ns0:SalesUnit>
               <ns0:SerialNumMandatory>No</ns0:SerialNumMandatory>
               <ns0:TaxValue>20.00</ns0:TaxValue>
             </ns0:ItemMetaData>
             <ns0:ItemMetaData>
               <ns0:CurrencyCode>EUR</ns0:CurrencyCode>
               <ns0:ItemGroupId>KL.PS.HGW</ns0:ItemGroupId>
               <ns0:ItemGroupName>Ruuterid</ns0:ItemGroupName>
               <ns0:ItemId>DSLGP603NY</ns0:ItemId>
               <ns0:ItemName>ADSL stardikomplekt Thomson ST546 stardi</ns0:ItemName>
               <ns0:ItemType>Item</ns0:ItemType>
               <ns0:MacAddressMandatory>No</ns0:MacAddressMandatory>
               <ns0:PriceWithoutVAT>12.78</ns0:PriceWithoutVAT>
               <ns0:PriceWithVAT>15.34</ns0:PriceWithVAT>
               <ns0:SalesUnit>tk</ns0:SalesUnit>
               <ns0:SerialNumMandatory>Yes</ns0:SerialNumMandatory>
               <ns0:TaxValue>20.00</ns0:TaxValue>
             </ns0:ItemMetaData>
           </ns0:ItemMetaData>
         </ns0:FindItemMetaDataResponse>';
      for rec in
         with xml_doc (doc) as (
            select xmlparse(document
            l_resp)
           from dual
         select x.*
         from xml_doc t
            , xmltable (
                xmlnamespaces(default 'http://elion.ee/webservices/Sales/Dynamics')
              , '/FindItemMetaDataResponse/ItemMetaData/ItemMetaData'
                passing t.doc
                columns
                CurrencyCode varchar2(4000) path 'CurrencyCode',
                ItemGroupId varchar2(4000) path 'ItemGroupId',
                ItemGroupName varchar2(4000) path 'ItemGroupName',
                ItemId varchar2(4000) path 'ItemId',
                ItemName varchar2(4000) path 'ItemName',
                ItemType varchar2(4000) path 'ItemType',
                MacAddressMandatory varchar2(4000) path 'MacAddressMandatory',
                PriceWithoutVAT varchar2(4000) path 'PriceWithoutVAT',
                PriceWithVAT varchar2(4000) path 'PriceWithVAT',
                SalesUnit varchar2(4000) path 'SalesUnit',
                SerialNumMandatory varchar2(4000) path 'SerialNumMandatory',
                TaxValue varchar2(4000) path 'TaxValue'         
              ) x
      ) loop
        dbms_output.put_line('ItemId=' || rec.ItemId);
      end loop;
    end;
    /* Output:
    ItemId=DSLGP603
    ItemId=DSLGP603NY
    */Edited by: CharlesRoos on 11.04.2013 14:46

    How badly do you need the namespace to be dynamic ?
    Is it likely to change that frequently?
    The reason for having to hardcode namespace declarations and XQuery string in general is optimization.
    By doing so, the CBO is able to analyze the whole expression and apply optimization techniques such as XQuery rewrite.
    As said, use dynamic SQL if you really have no way around this requirement.
    The other solution I'm reluctent to expose here is to make the whole thing namespace-free by using construct such as "*:element-name" or "*[local-name()="element-name"]".
    Both will use XQ functional evaluation and perform worse.

  • Adobe Muse error: "MuseJSAssert: Error calling selector function:TypeError: 'undefined' is not a function"

    Very frustrated here. I'm getting the following error on the home page on my Muse site. Looks like it could be the banner slider: "MuseJSAssert: Error calling selector function:TypeError: 'undefined' is not a function (evaluating 'a.watch("height",function(){b.height($(this).outerHeight())})')"
    When I click OK the error message goes away. Not a problem for me, but I can't have potential new customers seeing this when I show
    I see this error on Safari 6.1.2. I don't see the error on IE.
    I'm using the latest Muse CC 2014.
    Here's the site: www.optimumfitness.com
    Please help anyone. I've been building Muse sites for a long time and have never seen this problem.
    Thanks,
    Greg

    Hi,
    take a look to this thread, see if you get something usefil
    MuseJSAssert: Error calling selector function:TypeError: 'undefined' is not a function (evaluating '

  • Mac mail now quitting with IMap plug-in

    I thought my Mac Mail problems were over. But lately, Mac Mail is now quitting with the IMap plug-in. This started to happen yesterday.  Why is it still quitting with alternate plug-ins.  Here's my console report, like I did last time.
    8/14/14 7:13:27.636 AM com.apple.SecurityServer[14]: Session 100011 created
    8/14/14 7:13:27.785 AM UserEventAgent[155]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    8/14/14 7:13:27.850 AM com.apple.audio.DriverHelper[193]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    8/14/14 7:13:27.850 AM com.apple.audio.DriverHelper[193]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    8/14/14 7:13:27.850 AM com.apple.audio.DriverHelper[193]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    8/14/14 7:13:27.850 AM com.apple.audio.DriverHelper[193]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    8/14/14 7:13:27.850 AM com.apple.audio.DriverHelper[193]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    8/14/14 7:13:27.850 AM com.apple.audio.DriverHelper[193]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    8/14/14 7:13:27.851 AM com.apple.audio.DriverHelper[193]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    8/14/14 7:13:27.852 AM com.apple.audio.DriverHelper[193]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    8/14/14 7:13:27.852 AM com.apple.audio.DriverHelper[193]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    8/14/14 7:13:27.852 AM com.apple.audio.DriverHelper[193]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    8/14/14 7:13:27.852 AM com.apple.audio.DriverHelper[193]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    8/14/14 7:13:27.852 AM com.apple.audio.DriverHelper[193]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    8/14/14 7:13:27.852 AM com.apple.audio.DriverHelper[193]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    8/14/14 7:13:27.853 AM com.apple.audio.DriverHelper[193]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.blued.
    8/14/14 7:13:27.884 AM com.apple.audio.DriverHelper[193]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    8/14/14 7:13:27.885 AM com.apple.audio.DriverHelper[193]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    8/14/14 7:13:27.885 AM com.apple.audio.DriverHelper[193]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    8/14/14 7:13:28.048 AM accountsd[206]: assertion failed: 13E28: liblaunch.dylib + 25164 [A40A0C7B-3216-39B4-8AE0-B5D3BAF1DA8A]: 0x25
    8/14/14 7:13:28.104 AM SocialPushAgent[205]: ApplePushService: APSConnection being used without a delegate queue
    8/14/14 7:13:28.179 AM com.apple.iCloudHelper[186]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    8/14/14 7:13:28.410 AM SocialPushAgent[205]: -[SPAService handleChangesToPushNotificationSettings] [111] -- *** unable to get the current device-token:(null) and/or the uuid:(null) (type = com.apple.social.twitter)
    8/14/14 7:13:28.546 AM apsd[187]: Unrecognized leaf certificate
    8/14/14 7:13:29.766 AM soagent[190]: No active accounts, killing soagent in 10 seconds
    8/14/14 7:13:29.770 AM soagent[190]: No active accounts, killing soagent in 10 seconds
    8/14/14 7:13:29.828 AM soagent[190]: No active accounts, killing soagent in 10 seconds
    8/14/14 7:13:30.022 AM com.apple.SecurityServer[14]: Session 100014 created
    8/14/14 7:13:30.734 AM com.apple.time[155]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    8/14/14 7:13:30.743 AM com.apple.time[155]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    8/14/14 7:13:31.000 AM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=226[GoogleSoftwareUp] final status 0x0, allowing (remove VALID) page
    8/14/14 7:13:31.259 AM com.apple.launchd.peruser.501[152]: (com.apple.iTunesHelper.33120[228]) Spawned and waiting for the debugger to attach before continuing...
    8/14/14 7:13:31.271 AM Calendar[162]: [com.apple.calendar.store.log.database] [Timed out attempting to connect to database, displaying 'Updating calendars']
    8/14/14 7:13:31.289 AM WiFiKeychainProxy[216]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    8/14/14 7:13:31.290 AM WiFiKeychainProxy[216]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    8/14/14 7:13:36.387 AM com.apple.dock.extra[203]: <NSXPCConnection: 0x7f9a996499f0>: received an undecodable message (no exported object to receive message). Dropping message.
    8/14/14 7:13:37.865 AM com.apple.time[155]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    8/14/14 7:13:38.123 AM com.apple.NotesMigratorService[242]: Joined Aqua audit session
    8/14/14 7:13:39.795 AM talagent[166]: CGSBindSurface: Invalid window 0x1b
    8/14/14 7:13:39.796 AM WindowServer[85]: _CGXWindowRightsRelinquish: Invalid window 0x1b
    8/14/14 7:13:39.796 AM talagent[166]: CGSConnectionRelinquishWindowRights(cid, result, reservedRights): CGError 1001 on line 875
    8/14/14 7:13:39.797 AM WindowServer[85]: _CGXTerminateWindowList: Invalid window 27
    8/14/14 7:13:40.730 AM soagent[190]: Killing soagent.
    8/14/14 7:13:40.731 AM NotificationCenter[185]: SOHelperCenter main connection interrupted
    8/14/14 7:13:40.731 AM com.apple.dock.extra[203]: SOHelperCenter main connection interrupted
    8/14/14 7:13:40.811 AM imagent[196]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:190)
    8/14/14 7:13:40.811 AM imagent[196]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:190)
    8/14/14 7:13:44.993 AM parentalcontrolsd[246]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    8/14/14 7:13:50.764 AM com.apple.SecurityServer[14]: Session 100003 created
    8/14/14 7:14:06.000 AM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x4400 ****
    8/14/14 7:15:37.461 AM com.apple.SecurityServer[14]: Session 100016 created
    8/14/14 7:15:39.756 AM WindowServer[85]: disable_update_timeout: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
    8/14/14 7:15:53.307 AM com.apple.InputMethodKit.UserDictionary[264]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  kristenhowe~6F34D7F7-544D-55DF-82C2-2FCF7F02CAE4:UserDictionary
    Using local storage: 1
    8/14/14 7:15:53.757 AM WindowServer[85]: disable_update_likely_unbalanced: UI updates still disabled by application "Mail" after 15.00 seconds (server forcibly re-enabled them after 1.00 seconds). Likely an unbalanced disableUpdate call.
    8/14/14 7:15:53.905 AM com.apple.InputMethodKit.UserDictionary[264]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  kristenhowe~6F34D7F7-544D-55DF-82C2-2FCF7F02CAE4:UserDictionary
    Using local storage: 0
    8/14/14 7:16:05.068 AM Mail[256]: Could not create query for expression ((null)) && (kMDItemContentType == 'com.apple.mail.emlx')
    8/14/14 7:16:12.030 AM mds[38]: (Normal) Volume: volume:0x7fd87c000800 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/firmwaresyncd.hkFz3l
    8/14/14 7:16:40.443 AM Mail[256]: void CGSUpdateManager::log() const: conn 0xa027 token 0x3ffffffffffd0a
    8/14/14 7:16:40.454 AM Mail[256]: Backtrace (at 241.101):
    8/14/14 7:16:40.454 AM Mail[256]: void CGSUpdateManager::log() const:  0   CoreGraphics                        0x00007fff8a3f0739 CGSBacktraceCreate + 59
    8/14/14 7:16:40.454 AM Mail[256]: void CGSUpdateManager::log() const:  1   CoreGraphics                        0x00007fff8a414048 _ZN16CGSUpdateManager14disable_updateEv + 98
    8/14/14 7:16:40.454 AM Mail[256]: void CGSUpdateManager::log() const:  2   AppKit                              0x00007fff8316f202 -[NSClipView _immediateScrollToPoint:] + 86
    8/14/14 7:16:40.454 AM Mail[256]: void CGSUpdateManager::log() const:  3   AppKit                              0x00007fff8316f16a -[NSClipView scrollToPoint:] + 237
    8/14/14 7:16:40.454 AM Mail[256]: void CGSUpdateManager::log() const:  4   AppKit                              0x00007fff831661dc -[NSScrollView setDocumentView:] + 614
    8/14/14 7:16:40.454 AM Mail[256]: void CGSUpdateManager::log() const:  5   AppKit                              0x00007fff830f87de -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 358
    8/14/14 7:16:40.454 AM Mail[256]: void CGSUpdateManager::log() const:  6   AppKit                              0x00007fff830ed5ce loadNib + 327
    8/14/14 7:16:40.454 AM Mail[256]: void CGSUpdateManager::log() const:  7   AppKit                              0x00007fff830ecb6c +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 288
    8/14/14 7:16:40.455 AM Mail[256]: void CGSUpdateManager::log() const:  8   AppKit                              0x00007fff830ec95c -[NSBundle(NSNibLoading) loadNibNamed:owner:topLevelObjects:] + 197
    8/14/14 7:16:40.455 AM Mail[256]: void CGSUpdateManager::log() const:  9   Mail                                0x000000010ce3b517 Mail + 50455
    8/14/14 7:16:40.455 AM Mail[256]: void CGSUpdateManager::log() const:  10  Mail                                0x000000010ce3b3cb Mail + 50123
    8/14/14 7:16:40.455 AM Mail[256]: void CGSUpdateManager::log() const:  11  Mail                                0x000000010ce3aab0 Mail + 47792
    8/14/14 7:16:40.455 AM Mail[256]: void CGSUpdateManager::log() const:  12  CoreFoundation                      0x00007fff8c51de0c __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
    8/14/14 7:16:40.455 AM Mail[256]: void CGSUpdateManager::log() const:  13  CoreFoundation                      0x00007fff8c41182d _CFXNotificationPost + 2893
    8/14/14 7:16:40.455 AM Mail[256]: void CGSUpdateManager::log() const:  14  Foundation                          0x00007fff895567ba -[NSNotificationCenter postNotificationName:object:userInfo:] + 68
    8/14/14 7:16:40.455 AM Mail[256]: void CGSUpdateManager::log() const:  15  Mail                                0x000000010ce3303f Mail + 16447
    8/14/14 7:16:40.455 AM Mail[256]: void CGSUpdateManager::log() const:  16  CoreFoundation                      0x00007fff8c51de0c __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
    8/14/14 7:16:40.455 AM Mail[256]: void CGSUpdateManager::log() const:  17  CoreFoundation                      0x00007fff8c41182d _CFXNotificationPost + 2893
    8/14/14 7:16:40.456 AM Mail[256]: void CGSUpdateManager::log() const:  18  Foundation                          0x00007fff895567ba -[NSNotificationCenter postNotificationName:object:userInfo:] + 68
    8/14/14 7:16:40.456 AM Mail[256]: void CGSUpdateManager::log() const:  19  AppKit                              0x00007fff83111b69 -[NSApplication _postDidFinishNotification] + 289
    8/14/14 7:16:40.456 AM Mail[256]: void CGSUpdateManager::log() const:  20  AppKit                              0x00007fff8311189c -[NSApplication _sendFinishLaunchingNotification] + 195
    8/14/14 7:16:40.456 AM Mail[256]: void CGSUpdateManager::log() const:  21  AppKit                              0x00007fff8310e786 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 570
    8/14/14 7:16:40.456 AM Mail[256]: void CGSUpdateManager::log() const:  22  AppKit                              0x00007fff8310e1db -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 242
    8/14/14 7:16:40.456 AM Mail[256]: void CGSUpdateManager::log() const:  23  Foundation                          0x00007fff89574f0a -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 294
    8/14/14 7:16:40.456 AM Mail[256]: void CGSUpdateManager::log() const:  24  Foundation                          0x00007fff89574d7d _NSAppleEventManagerGenericHandler + 106
    8/14/14 7:16:40.456 AM Mail[256]: void CGSUpdateManager::log() const:  25  AE                                  0x00007fff83e11e1f _Z20aeDispatchAppleEventPK6AEDescPS_jPh + 381
    8/14/14 7:16:40.456 AM Mail[256]: void CGSUpdateManager::log() const:  26  AE                                  0x00007fff83e11c32 _ZL25dispatchEventAndSendReplyPK6AEDescPS_ + 31
    8/14/14 7:16:40.457 AM Mail[256]: void CGSUpdateManager::log() const:  27  AE                                  0x00007fff83e11b36 aeProcessAppleEvent + 315
    8/14/14 7:16:40.457 AM Mail[256]: void CGSUpdateManager::log() const:  28  HIToolbox                           0x00007fff8ee32161 AEProcessAppleEvent + 56
    8/14/14 7:16:40.457 AM Mail[256]: void CGSUpdateManager::log() const:  29  AppKit                              0x00007fff8310a0b6 _DPSNextEvent + 1026
    8/14/14 7:16:40.457 AM Mail[256]: void CGSUpdateManager::log() const:  30  AppKit                              0x00007fff8310989b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    8/14/14 7:16:40.457 AM Mail[256]: void CGSUpdateManager::log() const:  31  AppKit                              0x00007fff830fd99c -[NSApplication run] + 553
    8/14/14 7:16:41.326 AM WindowServer[85]: common_reenable_update: UI updates were finally reenabled by application "Mail" after 62.57 seconds (server forcibly re-enabled them after 1.00 seconds)
    8/14/14 7:16:43.230 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 7:16:43.352 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 7:16:45.199 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 7:16:45.337 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 7:16:45.445 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 7:16:46.073 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 7:16:46.499 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 7:16:50.078 AM Mail[256]: CoreText CopyFontsForRequest received mig IPC error (FFFFFFFFFFFFFECC) from font server
    8/14/14 7:16:50.079 AM Mail[256]: CoreText CopyFontsForRequest received mig IPC error (FFFFFFFFFFFFFECC) from font server
    8/14/14 7:16:50.079 AM fontd[177]: BUG in libdispatch client: dispatch_mig_server: mach_msg() failed (ipc/send) invalid memory - 0x1000000c
    8/14/14 7:17:36.519 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 7:17:36.613 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 7:17:37.133 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 7:17:37.133 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 7:17:37.138 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 7:17:38.434 AM Mail[256]: Incorrect NSStringEncoding value 0x0000 detected. Assuming NSASCIIStringEncoding. Will stop this compatiblity mapping behavior in the near future.
    8/14/14 7:17:40.780 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 7:17:41.098 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 7:17:41.903 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 7:17:42.623 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 7:17:42.663 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 7:17:42.812 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 7:17:43.305 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 7:17:45.685 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 7:17:45.686 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 7:18:14.000 AM kernel[0]: considerRebuildOfPrelinkedKernel prebuild rebuild has expired
    8/14/14 7:26:07.001 AM WindowServer[85]: _CGXSetWindowBackgroundBlurRadius: Invalid window 0xffffffff
    8/14/14 7:26:07.011 AM loginwindow[42]: find_shared_window: WID -1
    8/14/14 7:26:07.011 AM loginwindow[42]: CGSGetWindowTags: Invalid window 0xffffffff
    8/14/14 7:26:07.011 AM loginwindow[42]: find_shared_window: WID -1
    8/14/14 7:26:07.012 AM loginwindow[42]: CGSSetWindowTags: Invalid window 0xffffffff
    8/14/14 7:26:07.175 AM WindowServer[85]: device_generate_desktop_screenshot: authw 0x7fe3d2fcf200(2000), shield 0x7fe3d2fce370(2001)
    8/14/14 7:26:07.199 AM WindowServer[85]: device_generate_lock_screen_screenshot: authw 0x7fe3d2fcf200(2000), shield 0x7fe3d2fce370(2001)
    8/14/14 7:26:21.474 AM loginwindow[42]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    8/14/14 7:27:18.000 AM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Resume -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x4400 ****
    8/14/14 7:27:25.345 AM SubmitDiagInfo[288]: Submitted crash report: file:///Users/kristenhowe/Library/Logs/DiagnosticReports/CalendarAgent_2014-08- 13-204948-1_Kristens-MacBook-Pro.crash
    8/14/14 7:27:26.000 AM kernel[0]: AirPort_Brcm43xx::powerChange: System Sleep
    8/14/14 7:27:29.000 AM kernel[0]: hibernate image path: /var/vm/sleepimage
    8/14/14 7:27:29.000 AM kernel[0]: efi pagecount 63
    8/14/14 7:27:29.000 AM kernel[0]: hibernate_page_list_setall(preflight 1) start 0xffffff808de71000, 0xffffff808de91000
    8/14/14 7:27:29.000 AM kernel[0]: hibernate_page_list_setall time: 146 ms
    8/14/14 7:27:29.000 AM kernel[0]: pages 985588, wire 119103, act 319864, inact 1399, cleaned 0 spec 326, zf 93548, throt 0, compr 0, xpmapped 0
    8/14/14 7:27:29.000 AM kernel[0]: could discard act 45856 inact 69015 purgeable 70158 spec 266319 cleaned 0
    8/14/14 7:27:29.000 AM kernel[0]: hibernate_page_list_setall preflight pageCount 534240 est comp 50 setfile 1168113664 min 2147483648
    8/14/14 7:27:29.000 AM kernel[0]: AppleThunderboltHAL::earlyWake - complete - took 0 milliseconds
    8/14/14 7:27:29.000 AM kernel[0]: [0x18d4829000, 0x19000000]
    8/14/14 7:27:29.000 AM kernel[0]: [0x1910a32000, 0x19000000]
    8/14/14 7:27:29.000 AM kernel[0]: [0x19dc847000, 0x19000000]
    8/14/14 7:27:29.000 AM kernel[0]: [0x1b6c82c000, 0x19000000]
    8/14/14 7:27:29.000 AM kernel[0]: [0x1c6c811000, 0x1c000000]
    8/14/14 7:27:29.000 AM kernel[0]: [0x0, 0x0]
    8/14/14 7:27:29.000 AM kernel[0]: kern_open_file_for_direct_io(0) took 22 ms
    8/14/14 7:27:29.000 AM kernel[0]: Opened file /var/vm/sleepimage, size 2147483648, partition base 0x0, maxio 2000000 ssd 0
    8/14/14 7:27:29.000 AM kernel[0]: hibernate image major 1, minor 0, blocksize 4096, pollers 5
    8/14/14 7:27:29.000 AM kernel[0]: hibernate_alloc_pages act 424537, inact 175303, anon 120210, throt 0, spec 266648, wire 142736, wireinit 196022
    8/14/14 7:27:29.000 AM kernel[0]: hibernate_setup(0) took 4 ms
    8/14/14 7:27:29.000 AM kernel[0]: Bluetooth -- LE is supported - Disable LE meta event
    8/14/14 7:27:29.000 AM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x4400 ****
    8/14/14 7:27:29.000 AM kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    8/14/14 7:27:43.000 AM kernel[0]: hibernate_page_list_setall(preflight 0) start 0xffffff808de71000, 0xffffff808de91000
    8/14/14 7:27:43.000 AM kernel[0]: hibernate_page_list_setall time: 179 ms
    8/14/14 7:27:43.000 AM kernel[0]: pages 985270, wire 118776, act 319870, inact 144, cleaned 0 spec 328, zf 93548, throt 0, compr 0, xpmapped 40000
    8/14/14 7:27:43.000 AM kernel[0]: could discard act 45856 inact 70270 purgeable 70158 spec 266320 cleaned 0
    8/14/14 7:27:43.000 AM kernel[0]: WARNING: hibernate_page_list_setall skipped 1255 xpmapped pages
    8/14/14 7:27:43.000 AM kernel[0]: hibernate_page_list_setall found pageCount 532666
    8/14/14 7:27:43.000 AM kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    8/14/14 7:27:43.000 AM kernel[0]: IOHibernatePollerOpen(0)
    8/14/14 7:27:43.000 AM kernel[0]: encryptStart 14040
    8/14/14 7:27:43.000 AM kernel[0]: bitmap_size 0x1f4dc, previewSize 0x5d8eb8, writing 530835 pages @ 0x60c3d4
    8/14/14 7:27:43.000 AM kernel[0]: encryptEnd 6f96a00
    8/14/14 7:27:43.000 AM kernel[0]: image1Size 0xb182000, encryptStart1 0x14040, End1 0x6f96a00
    8/14/14 7:27:43.000 AM kernel[0]: encryptStart b182000
    8/14/14 7:27:43.000 AM kernel[0]: encryptEnd 3cb95800
    8/14/14 7:27:43.000 AM kernel[0]: PMStats: Hibernate write took 12729 ms
    8/14/14 7:27:43.000 AM kernel[0]: all time: 12729 ms, comp bytes: 2174844928 time: 2375 ms 873 Mb/s, crypt bytes: 949576128 time: 1952 ms 463 Mb/s,
    8/14/14 7:27:43.000 AM kernel[0]: image 1018781696 (47%), uncompressed 2174844928 (530968), compressed 1008360256 (46%), sum1 69fe0a49, sum2 ffc33f8f
    8/14/14 7:27:43.000 AM kernel[0]: zeroPageCount 36687, wiredPagesEncrypted 77362, wiredPagesClear 39716, dirtyPagesEncrypted 413890
    8/14/14 7:27:43.000 AM kernel[0]: hibernate_write_image done(0)
    8/14/14 7:27:43.000 AM kernel[0]: sleep
    8/14/14 7:27:43.000 AM kernel[0]: Wake reason: EHC1
    8/14/14 7:32:59.000 AM kernel[0]: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    8/14/14 7:32:59.000 AM kernel[0]: Previous Sleep Cause: 5
    8/14/14 7:32:59.000 AM kernel[0]: The USB device HubDevice (Port 1 of Hub at 0x1d000000) may have caused a wake by issuing a remote wakeup (2)
    8/14/14 7:32:59.000 AM kernel[0]: AppleThunderboltHAL::earlyWake - complete - took 1 milliseconds
    8/14/14 7:32:59.000 AM kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    8/14/14 7:32:59.000 AM kernel[0]: TBT W (1): 0 [x]
    8/14/14 7:32:59.000 AM kernel[0]: The USB device HubDevice (Port 8 of Hub at 0x1d100000) may have caused a wake by issuing a remote wakeup (3)
    8/14/14 7:32:59.000 AM kernel[0]: wlEvent: en1 en1 Link DOWN virtIf = 0
    8/14/14 7:32:59.000 AM kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    8/14/14 7:32:59.000 AM kernel[0]: en1: 802.11d country code set to 'X0'.
    8/14/14 7:32:59.000 AM kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    8/14/14 7:32:59.150 AM UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    8/14/14 7:32:59.151 AM configd[17]: network changed: v4(en1-:192.168.1.3) DNS- Proxy-
    8/14/14 7:32:59.000 AM kernel[0]: The USB device Apple Internal Keyboard / Trackpad (Port 3 of Hub at 0x1d180000) may have caused a wake by issuing a remote wakeup (3)
    8/14/14 7:32:59.000 AM kernel[0]: full wake (reason 1) 188 ms
    8/14/14 7:32:59.189 AM netbiosd[124]: network_reachability_changed : network is not reachable, netbiosd is shutting down
    8/14/14 7:32:59.196 AM SubmitDiagInfo[288]: CFReadStreamCopyError() returned: The operation couldn’t be completed. Socket is not connected
    8/14/14 7:32:59.196 AM SubmitDiagInfo[288]: Failed to submit crash report: file:///Users/kristenhowe/Library/Logs/DiagnosticReports/CalendarAgent_2014-08- 13-204948-2_Kristens-MacBook-Pro.crash
    8/14/14 7:32:59.000 AM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Resume -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x4400 ****
    8/14/14 7:32:59.482 AM WindowServer[85]: CGXDisplayDidWakeNotification [966033726910]: posting kCGSDisplayDidWake
    8/14/14 7:32:59.482 AM WindowServer[85]: handle_will_sleep_auth_and_shield_windows: Reordering authw 0x7fe3d2fcf200(2000) (lock state: 3)
    8/14/14 7:32:59.482 AM WindowServer[85]: handle_will_sleep_auth_and_shield_windows: err 0x0
    8/14/14 7:33:01.990 AM SubmitDiagInfo[288]: CFReadStreamCopyError() returned: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    8/14/14 7:33:01.990 AM SubmitDiagInfo[288]: Failed to submit crash report: file:///Users/kristenhowe/Library/Logs/DiagnosticReports/CalendarAgent_2014-08- 13-204948_Kristens-MacBook-Pro.crash
    8/14/14 7:33:02.123 AM SubmitDiagInfo[288]: CFReadStreamCopyError() returned: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    8/14/14 7:33:02.123 AM SubmitDiagInfo[288]: Failed to submit crash report: file:///Users/kristenhowe/Library/Logs/DiagnosticReports/Mail_2014-08-13-204948 _Kristens-MacBook-Pro.crash
    8/14/14 7:33:02.136 AM SubmitDiagInfo[288]: CFReadStreamCopyError() returned: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    8/14/14 7:33:02.136 AM SubmitDiagInfo[288]: Failed to submit crash report: file:///Users/kristenhowe/Library/Logs/DiagnosticReports/Notes_2014-08-13-20494 8_Kristens-MacBook-Pro.crash
    8/14/14 7:33:02.205 AM SubmitDiagInfo[288]: CFReadStreamCopyError() returned: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    8/14/14 7:33:02.205 AM SubmitDiagInfo[288]: Failed to submit crash report: file:///Users/kristenhowe/Library/Logs/DiagnosticReports/CalendarAgent_2014-08- 13-204955_Kristens-MacBook-Pro.crash
    8/14/14 7:33:02.257 AM SubmitDiagInfo[288]: CFReadStreamCopyError() returned: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    8/14/14 7:33:02.257 AM SubmitDiagInfo[288]: Failed to submit crash report: file:///Users/kristenhowe/Library/Logs/DiagnosticReports/CalendarAgent_2014-08- 13-205005_Kristens-MacBook-Pro.crash
    8/14/14 7:33:02.295 AM SubmitDiagInfo[288]: CFReadStreamCopyError() returned: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    8/14/14 7:33:02.296 AM SubmitDiagInfo[288]: Failed to submit crash report: file:///Users/kristenhowe/Library/Logs/DiagnosticReports/CalendarAgent_2014-08- 13-205015_Kristens-MacBook-Pro.crash
    8/14/14 7:33:02.335 AM SubmitDiagInfo[288]: CFReadStreamCopyError() returned: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    8/14/14 7:33:02.336 AM SubmitDiagInfo[288]: Failed to submit crash report: file:///Users/kristenhowe/Library/Logs/DiagnosticReports/CalendarAgent_2014-08- 13-205025_Kristens-MacBook-Pro.crash
    8/14/14 7:33:02.443 AM SubmitDiagInfo[288]: CFReadStreamCopyError() returned: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    8/14/14 7:33:02.443 AM SubmitDiagInfo[288]: Failed to submit crash report: file:///Users/kristenhowe/Library/Logs/DiagnosticReports/CalendarAgent_2014-08- 13-205036_Kristens-MacBook-Pro.crash
    8/14/14 7:33:04.692 AM com.apple.CrashReporter.ACRRDaemonPlugin[155]: Submission failed with the launch daemon: (null)
    8/14/14 7:33:05.226 AM xpcproxy[331]: assertion failed: 13E28: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    8/14/14 7:33:05.380 AM com.apple.iCloudHelper[331]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro9,2> <Mac OS X;10.9.4;13E28> <com.apple.AOSKit/176>";
        "X-Mme-Country" = US;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = EDT;
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc2f1c1e860 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    8/14/14 7:33:05.497 AM com.apple.iCloudHelper[331]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro9,2> <Mac OS X;10.9.4;13E28> <com.apple.AOSKit/176>";
        "X-Mme-Country" = US;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = EDT;
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc2f1d31eb0 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    8/14/14 7:33:05.499 AM com.apple.iCloudHelper[331]: AOSKit ERROR: Setup request failed, appleID=149626893, url=(null), requestHeaders=
    (null),
    error=Error Domain=AOSErrorDomain Code=1000 "The operation couldn’t be completed. (AOSErrorDomain error 1000.)" UserInfo=0x7fc2f1c217b0 {HttpStatusCode=0, DialogInfo={
        DialogType = Unknown;
    }}, httpStatusCode=0, responseHeaders=
    (null),
    responseBody=
    (null)
    8/14/14 7:33:07.000 AM kernel[0]: en1: 802.11d country code set to 'US'.
    8/14/14 7:33:07.000 AM kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    8/14/14 7:33:07.000 AM kernel[0]: MacAuthEvent en1   Auth result for: 2c:b0:5d:9e:65:6a  MAC AUTH succeeded
    8/14/14 7:33:07.000 AM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    8/14/14 7:33:07.000 AM kernel[0]: AirPort: Link Up on en1
    8/14/14 7:33:07.000 AM kernel[0]: en1: BSSID changed to 2c:b0:5d:9e:65:6a
    8/14/14 7:33:07.000 AM kernel[0]: AirPort: RSN handshake complete on en1
    8/14/14 7:33:07.877 AM UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'NETGEAR86' making interface primary (cache indicates network not captive)
    8/14/14 7:33:07.878 AM configd[17]: network changed: DNS* Proxy
    8/14/14 7:33:07.879 AM UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    8/14/14 7:33:07.880 AM UserEventAgent[11]: Captive: en1: Not probing 'NETGEAR86' (cache indicates not captive)
    8/14/14 7:33:07.881 AM UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    8/14/14 7:33:07.884 AM configd[17]: network changed: v4(en1!:192.168.1.3) DNS+ Proxy+ SMB
    8/14/14 7:33:08.000 AM kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    8/14/14 7:33:09.288 AM apsd[187]: Unrecognized leaf certificate
    8/14/14 7:33:10.353 AM loginwindow[42]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    8/14/14 7:33:17.967 AM AirPlayUIAgent[339]: 2014-08-14 07:33:17.966905 AM [AirPlayUIAgent] Changed PIN pairing: no
    8/14/14 7:33:17.969 AM AirPlayUIAgent[339]: 2014-08-14 07:33:17.968471 AM [AirPlayUIAgent] Changed PIN pairing: no
    8/14/14 7:33:44.000 AM kernel[0]: pci pause: SDXC
    8/14/14 7:33:46.000 AM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x4400 ****
    8/14/14 7:35:57.000 AM kernel[0]: USBMSC Identifier (non-unique): B0D4220433760CA4 0x1949 0x4 0x100, 2
    8/14/14 7:35:59.523 AM fseventsd[48]: could not open <</Volumes/Kindle/.fseventsd/fseventsd-uuid>> (No such file or directory)
    8/14/14 7:35:59.524 AM fseventsd[48]: log dir: /Volumes/Kindle/.fseventsd getting new uuid: E920F10F-C11F-486D-B8F4-A183352ECE04
    8/14/14 7:37:55.236 AM WindowServer[85]: _CGXSetWindowBackgroundBlurRadius: Invalid window 0xffffffff
    8/14/14 7:37:55.237 AM loginwindow[42]: find_shared_window: WID -1
    8/14/14 7:37:55.237 AM loginwindow[42]: CGSGetWindowTags: Invalid window 0xffffffff
    8/14/14 7:37:55.237 AM loginwindow[42]: find_shared_window: WID -1
    8/14/14 7:37:55.237 AM loginwindow[42]: CGSSetWindowTags: Invalid window 0xffffffff
    8/14/14 7:37:55.302 AM WindowServer[85]: device_generate_desktop_screenshot: authw 0x7fe3d2f4d1e0(2000), shield 0x7fe3d2fc4d60(2001)
    8/14/14 7:37:55.331 AM WindowServer[85]: device_generate_lock_screen_screenshot: authw 0x7fe3d2f4d1e0(2000), shield 0x7fe3d2fc4d60(2001)
    8/14/14 7:38:04.025 AM loginwindow[42]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    8/14/14 7:39:14.000 AM kernel[0]: AirPort_Brcm43xx::powerChange: System Sleep
    8/14/14 7:39:15.000 AM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Resume -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x4400 ****
    8/14/14 7:39:17.000 AM kernel[0]: hibernate image path: /var/vm/sleepimage
    8/14/14 7:39:17.000 AM kernel[0]: efi pagecount 63
    8/14/14 7:39:17.000 AM kernel[0]: hibernate_page_list_setall(preflight 1) start 0xffffff808de98000, 0xffffff808decb000
    8/14/14 7:39:17.000 AM kernel[0]: hibernate_page_list_setall time: 131 ms
    8/14/14 7:39:17.000 AM kernel[0]: pages 985651, wire 127332, act 312900, inact 8, cleaned 0 spec 341, zf 97485, throt 0, compr 0, xpmapped 40000
    8/14/14 7:39:17.000 AM kernel[0]: could discard act 79026 inact 69467 purgeable 22362 spec 276730 cleaned 0
    8/14/14 7:39:17.000 AM kernel[0]: WARNING: hibernate_page_list_setall skipped 1255 xpmapped pages
    8/14/14 7:39:17.000 AM kernel[0]: hibernate_page_list_setall preflight pageCount 538066 est comp 46 setfile 1085276160 min 2147483648
    8/14/14 7:39:17.000 AM kernel[0]: [0x18d4829000, 0x19000000]
    8/14/14 7:39:17.000 AM kernel[0]: [0x1910a32000, 0x19000000]
    8/14/14 7:39:17.000 AM kernel[0]: [0x19dc847000, 0x19000000]
    8/14/14 7:39:17.000 AM kernel[0]: [0x1b6c82c000, 0x19000000]
    8/14/14 7:39:17.000 AM kernel[0]: [0x1c6c811000, 0x1c000000]
    8/14/14 7:39:17.000 AM kernel[0]: [0x0, 0x0]
    8/14/14 7:39:17.000 AM kernel[0]: kern_open_file_for_direct_io(0) took 0 ms
    8/14/14 7:39:17.000 AM kernel[0]: Opened file /var/vm/sleepimage, size 2147483648, partition base 0x0, maxio 2000000 ssd 0
    8/14/14 7:39:17.000 AM kernel[0]: hibernate image major 1, minor 0, blocksize 4096, pollers 5
    8/14/14 7:39:17.000 AM kernel[0]: hibernate_alloc_pages act 404539, inact 176709, anon 119236, throt 0, spec 277072, wire 150772, wireinit 196022
    8/14/14 7:39:17.000 AM kernel[0]: hibernate_setup(0) took 0 ms
    8/14/14 7:39:17.000 AM kernel[0]: AppleThunderboltHAL::earlyWake - complete - took 0 milliseconds
    8/14/14 7:39:17.000 AM kernel[0]: Bluetooth -- LE is supported - Disable LE meta event
    8/14/14 7:39:17.000 AM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x4400 ****
    8/14/14 7:39:17.000 AM kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    8/14/14 7:39:31.000 AM kernel[0]: hibernate_page_list_setall(preflight 0) start 0xffffff808de98000, 0xffffff808decb000
    8/14/14 7:39:31.000 AM kernel[0]: hibernate_page_list_setall time: 195 ms
    8/14/14 7:39:31.000 AM kernel[0]: pages 985166, wire 126842, act 312904, inact 8, cleaned 0 spec 342, zf 97485, throt 0, compr 0, xpmapped 40000
    8/14/14 7:39:31.000 AM kernel[0]: could discard act 79026 inact 69467 purgeable 22362 spec 276730 cleaned 0
    8/14/14 7:39:31.000 AM kernel[0]: WARNING: hibernate_page_list_setall skipped 42760 xpmapped pages
    8/14/14 7:39:31.000 AM kernel[0]: hibernate_page_list_setall found pageCount 537581
    8/14/14 7:39:31.000 AM kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    8/14/14 7:39:31.000 AM kernel[0]: IOHibernatePollerOpen(0)
    8/14/14 7:39:31.000 AM kernel[0]: encryptStart 14040
    8/14/14 7:39:31.000 AM kernel[0]: bitmap_size 0x1f4dc, previewSize 0x54ba50, writing 535891 pages @ 0x57ef6c
    8/14/14 7:39:31.000 AM kernel[0]: encryptEnd 772ce00
    8/14/14 7:39:31.000 AM kernel[0]: image1Size 0xbc12000, encryptStart1 0x14040, End1 0x772ce00
    8/14/14 7:39:31.000 AM kernel[0]: encryptStart bc12000
    8/14/14 7:39:31.000 AM kernel[0]: encryptEnd 3a155000
    8/14/14 7:39:31.000 AM kernel[0]: PMStats: Hibernate write took 12235 ms
    8/14/14 7:39:31.000 AM kernel[0]: all time: 12235 ms, comp bytes: 2195554304 time: 2796 ms 748 Mb/s, crypt bytes: 902151616 time: 2107 ms 408 Mb/s,
    8/14/14 7:39:31.000 AM kernel[0]: image 974475264 (45%), uncompressed 2195554304 (536024), compressed 964641648 (43%), sum1 fafcf062, sum2 ef7ed1d5
    8/14/14 7:39:31.000 AM kernel[0]: zeroPageCount 38633, wiredPagesEncrypted 83189, wiredPagesClear 42096, dirtyPagesEncrypted 410739
    8/14/14 7:39:31.000 AM kernel[0]: hibernate_write_image done(0)
    8/14/14 7:39:31.000 AM kernel[0]: sleep
    8/14/14 7:39:31.000 AM kernel[0]: Wake reason: EHC1
    8/14/14 7:51:55.000 AM kernel[0]: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    8/14/14 7:51:55.000 AM kernel[0]: Previous Sleep Cause: 5
    8/14/14 7:51:55.000 AM kernel[0]: The USB device HubDevice (Port 1 of Hub at 0x1d000000) may have caused a wake by issuing a remote wakeup (2)
    8/14/14 7:51:55.000 AM kernel[0]: AppleThunderboltHAL::earlyWake - complete - took 1 milliseconds
    8/14/14 7:51:55.000 AM kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    8/14/14 7:51:55.000 AM kernel[0]: TBT W (1): 0 [x]
    8/14/14 7:51:55.000 AM kernel[0]: The USB device HubDevice (Port 8 of Hub at 0x1d100000) may have caused a wake by issuing a remote wakeup (3)
    8/14/14 7:51:55.000 AM kernel[0]: wlEvent: en1 en1 Link DOWN virtIf = 0
    8/14/14 7:51:55.000 AM kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    8/14/14 7:51:55.000 AM kernel[0]: en1: 802.11d country code set to 'X0'.
    8/14/14 7:51:55.000 AM kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    8/14/14 7:51:55.150 AM UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    8/14/14 7:51:55.151 AM configd[17]: network changed: v4(en1-:192.168.1.3) DNS- Proxy-
    8/14/14 7:51:55.000 AM kernel[0]: The USB device Apple Internal Keyboard / Trackpad (Port 3 of Hub at 0x1d180000) may have caused a wake by issuing a remote wakeup (3)
    8/14/14 7:51:55.000 AM kernel[0]: full wake (reason 1) 188 ms
    8/14/14 7:51:55.176 AM netbiosd[332]: network_reachability_changed : network is not reachable, netbiosd is shutting down
    8/14/14 7:51:55.000 AM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Resume -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x4400 ****
    8/14/14 7:51:55.484 AM WindowServer[85]: CGXDisplayDidWakeNotification [1358341159754]: posting kCGSDisplayDidWake
    8/14/14 7:51:55.485 AM WindowServer[85]: handle_will_sleep_auth_and_shield_windows: Reordering authw 0x7fe3d2f4d1e0(2000) (lock state: 3)
    8/14/14 7:51:55.485 AM WindowServer[85]: handle_will_sleep_auth_and_shield_windows: err 0x0
    8/14/14 7:52:03.000 AM kernel[0]: en1: 802.11d country code set to 'US'.
    8/14/14 7:52:03.000 AM kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    8/14/14 7:52:03.000 AM kernel[0]: MacAuthEvent en1   Auth result for: 2c:b0:5d:9e:65:6a  MAC AUTH succeeded
    8/14/14 7:52:03.000 AM kernel[0]: MacAuthEvent en1   Auth result for: 2c:b0:5d:9e:65:6a Unsolicited  Auth
    8/14/14 7:52:03.000 AM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    8/14/14 7:52:03.000 AM kernel[0]: AirPort: Link Up on en1
    8/14/14 7:52:03.000 AM kernel[0]: en1: BSSID changed to 2c:b0:5d:9e:65:6a
    8/14/14 7:52:03.000 AM kernel[0]: AirPort: RSN handshake complete on en1
    8/14/14 7:52:04.000 AM kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    8/14/14 7:52:05.471 AM UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'NETGEAR86' making interface primary (cache indicates network not captive)
    8/14/14 7:52:05.471 AM configd[17]: network changed: DNS* Proxy
    8/14/14 7:52:05.472 AM UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    8/14/14 7:52:05.473 AM UserEventAgent[11]: Captive: en1: Not probing 'NETGEAR86' (cache indicates not captive)
    8/14/14 7:52:05.473 AM UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    8/14/14 7:52:05.477 AM configd[17]: network changed: v4(en1!:192.168.1.3) DNS+ Proxy+ SMB
    8/14/14 7:52:06.279 AM apsd[187]: Unrecognized leaf certificate
    8/14/14 7:52:13.843 AM AirPlayUIAgent[339]: 2014-08-14 07:52:13.843343 AM [AirPlayUIAgent] Changed PIN pairing: no
    8/14/14 7:52:13.860 AM AirPlayUIAgent[339]: 2014-08-14 07:52:13.859864 AM [AirPlayUIAgent] Changed PIN pairing: no
    8/14/14 7:52:29.880 AM loginwindow[42]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    8/14/14 7:52:40.000 AM kernel[0]: pci pause: SDXC
    8/14/14 7:52:42.000 AM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x4400 ****
    8/14/14 7:53:03.630 AM SubmitDiagInfo[370]: Removed expired file file:///Users/kristenhowe/Library/Logs/DiagnosticReports/Mail_2014-07-15-072710 _Kristens-MacBook-Pro.crash
    8/14/14 7:53:03.631 AM SubmitDiagInfo[370]: Removed expired plist file file:///Users/kristenhowe/Library/Logs/DiagnosticReports/.Mail_2014-07-15-07271 0_Kristens-MacBook-Pro.crash.plist
    8/14/14 7:53:03.639 AM SubmitDiagInfo[370]: Removed expired file file:///Users/kristenhowe/Library/Logs/DiagnosticReports/Mail_2014-07-15-072819 _Kristens-MacBook-Pro.crash
    8/14/14 7:53:03.640 AM SubmitDiagInfo[370]: Removed expired plist file file:///Users/kristenhowe/Library/Logs/DiagnosticReports/.Mail_2014-07-15-07281 9_Kristens-MacBook-Pro.crash.plist
    8/14/14 7:53:03.682 AM SubmitDiagInfo[370]: Removed expired file file:///Users/kristenhowe/Library/Logs/DiagnosticReports/Mail_2014-07-15-073254 _Kristens-MacBook-Pro.crash
    8/14/14 7:53:03.683 AM SubmitDiagInfo[370]: Removed expired plist file file:///Users/kristenhowe/Library/Logs/DiagnosticReports/.Mail_2014-07-15-07325 4_Kristens-MacBook-Pro.crash.plist
    8/14/14 7:53:07.000 AM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Resume -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x4400 ****
    8/14/14 7:53:11.658 AM SubmitDiagInfo[370]: Submitted crash report: file:///Users/kristenhowe/Library/Logs/DiagnosticReports/CalendarAgent_2014-08- 13-204948-2_Kristens-MacBook-Pro.crash
    8/14/14 7:53:12.682 AM SubmitDiagInfo[370]: Submitted crash report: file:///Users/kristenhowe/Library/Logs/DiagnosticReports/CalendarAgent_2014-08- 13-204948_Kristens-MacBook-Pro.crash
    8/14/14 7:53:13.601 AM SubmitDiagInfo[370]: Submitted crash report: file:///Users/kristenhowe/Library/Logs/DiagnosticReports/Mail_2014-08-13-204948 _Kristens-MacBook-Pro.crash
    8/14/14 7:53:14.400 AM SubmitDiagInfo[370]: Submitted crash report: file:///Users/kristenhowe/Library/Logs/DiagnosticReports/Notes_2014-08-13-20494 8_Kristens-MacBook-Pro.crash
    8/14/14 7:53:15.499 AM SubmitDiagInfo[370]: Submitted crash report: file:///Users/kristenhowe/Library/Logs/DiagnosticReports/CalendarAgent_2014-08- 13-204955_Kristens-MacBook-Pro.crash
    8/14/14 7:53:16.398 AM SubmitDiagInfo[370]: Submitted crash report: file:///Users/kristenhowe/Library/Logs/DiagnosticReports/CalendarAgent_2014-08- 13-205005_Kristens-MacBook-Pro.crash
    8/14/14 7:53:17.223 AM SubmitDiagInfo[370]: Submitted crash report: file:///Users/kristenhowe/Library/Logs/DiagnosticReports/CalendarAgent_2014-08- 13-205015_Kristens-MacBook-Pro.crash
    8/14/14 7:53:18.154 AM SubmitDiagInfo[370]: Submitted crash report: file:///Users/kristenhowe/Library/Logs/DiagnosticReports/CalendarAgent_2014-08- 13-205025_Kristens-MacBook-Pro.crash
    8/14/14 7:53:18.866 AM SubmitDiagInfo[370]: Submitted crash report: file:///Users/kristenhowe/Library/Logs/DiagnosticReports/CalendarAgent_2014-08- 13-205036_Kristens-MacBook-Pro.crash
    8/14/14 7:53:46.000 AM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x4400 ****
    8/14/14 7:54:20.205 AM ntpd[111]: ntpd: wake time set -0.421981 s
    8/14/14 7:54:20.222 AM com.apple.time[155]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    8/14/14 7:54:20.226 AM com.apple.time[155]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    8/14/14 7:54:20.296 AM com.apple.time[155]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    8/14/14 8:11:17.828 AM mDNSResponder[39]:  26: Could not write data to clientPID[260](com.apple.WebKi)  because of error - aborting connection
    8/14/14 8:11:17.828 AM mDNSResponder[39]:  26: DNSServiceGetAddrInfo      v4v6 graph.facebook.com. PID[260](com.apple.WebKi)
    8/14/14 8:11:18.829 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 8:11:18.970 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 8:11:19.023 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 8:11:54.548 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 8:11:54.587 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 8:11:55.209 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 8:11:55.220 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 8:11:55.351 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 8:11:56.807 AM Mail[256]: Incorrect NSStringEncoding value 0x0000 detected. Assuming NSASCIIStringEncoding. Will stop this compatiblity mapping behavior in the near future.
    8/14/14 8:11:58.902 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 8:11:59.150 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 8:11:59.941 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 8:12:00.562 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 8:12:00.599 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 8:12:00.736 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 8:12:01.170 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 8:12:02.407 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 8:12:02.466 AM Mail[256]: [WEB BUNDLE] Could not execute script: TypeError: 'undefined' is not a function (evaluating 'e.getBoundingClientRect()')
    8/14/14 8:12:02.554 AM WindowServer[85]: CoreAnimation: context hosting changed while locked!
    8/14/14 8:16:41.879 AM WindowServer[85]: _CGXSetWindowBackgroundBlurRadius: Invalid window 0xffffffff
    8/14/14 8:16:41.880 AM loginwindow[42]: find_shared_window: WID -1
    8/14/14 8:16:41.880 AM loginwindow[42]: CGSGetWindowTags: Invalid window 0xffffffff
    8/14/14 8:16:41.880 AM loginwindow[42]: find_shared_window: WID -1
    8/14/14 8:16:41.880 AM loginwindow[42]: CGSSetWindowTags: Invalid window 0xffffffff
    8/14/14 8:16:42.089 AM WindowServer[85]: device_generate_desktop_screenshot: authw 0x7fe3d2d3faa0(2000), shield 0x7fe3d2c66800(2001)
    8/14/14 8:16:42.121 AM WindowServer[85]: device_generate_lock_screen_screenshot: authw 0x7fe3d2d3faa0(2000), shield 0x7fe3d2c66800(2001)
    8/14/14 8:16:42.146 AM WindowServer[85]: _CGXHWCaptureWindowList: No capable active display found.
    8/14/14 8:16:49.194 AM loginwindow[42]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    8/14/14 8:17:42.729 AM WindowServer[85]: CGXDisplayDidWakeNotification [2906016340883]: posting kCGSDisplayDidWake
    8/14/14 8:17:42.730 AM WindowServer[85]: handle_will_sleep_auth_and_shield_windows: Deferring.
    8/14/14 8:17:57.365 AM loginwindow[42]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    8/14/14 8:19:45.667 AM WindowServer[85]: _CGXSetWindowBackgroundBlurRadius: Invalid window 0xffffffff
    8/14/14 8:19:45.668 AM loginwindow[42]: find_shared_window: WID -1
    8/14/14 8:19:45.668 AM loginwindow[42]: CGSGetWindowTags: Invalid window 0xffffffff
    8/14/14 8:19:45.668 AM loginwindow[42]: find_shared_window: WID -1
    8/14/14 8:19:45.668 AM loginwindow[42]: CGSSetWindowTags: Invalid window 0xffffffff
    8/14/14 8:19:45.791 AM WindowServer[85]: device_generate_desktop_screenshot: authw 0x7fe3d2e6cd80(2000), shield 0x7fe3d2d39470(2001)
    8/14/14 8:19:45.814 AM WindowServer[85]: device_generate_lock_screen_screenshot: authw 0x7fe3d2e6cd80(2000), shield 0x7fe3d2d39470(2001)
    8/14/14 8:19:45.869 AM WindowServer[85]: _CGXHWCaptureWindowList: No capable active display found.
    8/14/14 8:19:55.590 AM loginwindow[42]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    8/14/14 8:21:00.761 AM xpcproxy[426]: assertion failed: 13E28: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    8/14/14 8:21:05.000 AM kernel[0]: AirPort_Brcm43xx::powerChange: System Sleep
    8/14/14 8:21:05.000 AM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Resume -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x4400 ****
    8/14/14 8:21:07.000 AM kernel[0]: hibernate image path: /var/vm/sleepimage
    8/14/14 8:21:07.000 AM kernel[0]: efi pagecount 63
    8/14/14 8:21:07.000 AM kernel[0]: hibernate_page_list_setall(preflight 1) start 0xffffff808de3b000, 0xffffff808de63000
    8/14/14 8:21:07.000 AM kernel[0]: hibernate_page_list_setall time: 135 ms
    8/14/14 8:21:07.000 AM kernel[0]: pages 905767, wire 114138, act 204770, inact 1, cleaned 0 spec 11, zf 364804, throt 0, compr 13720, xpmapped 40000
    8/14/14 8:21:07.000 AM kernel[0]: could discard act 119127 inact 45571 purgeable 39777 spec 3848 cleaned 0
    8/14/14 8:21:07.000 AM kernel[0]: WARNING: hibernate_page_list_setall skipped 42760 xpmapped pages
    8/14/14 8:21:07.000 AM kernel[0]: hibernate_page_list_setall preflight pageCount 697444 est comp 43 setfile 1333788672 min 2147483648
    8/14/14 8:21:07.000 AM kernel[0]: AppleThunderboltHAL::earlyWake - complete - took 0 milliseconds
    8/14/14 8:21:07.000 AM kernel[0]: [0x18d4829000, 0x19000000]
    8/14/14 8:21:07.000 AM kernel[0]: [0x1910a32000, 0x19000000]
    8/14/14 8:21:07.000 AM kernel[0]: [0x19dc847000, 0x19000000]
    8/14/14 8:21:07.000 AM kernel[0]: [0x1b6c82c000, 0x19000000]
    8/14/14 8:21:07.000 AM kernel[0]: [0x1c6c811000, 0x1c000000]
    8/14/14 8:21:07.000 AM kernel[0]: [0x0, 0x0]
    8/14/14 8:21:07.000 AM kernel[0]: kern_open_file_for_direct_io(0) took 18 ms
    8/14/14 8:21:07.000 AM kernel[0]: Opened file /var/vm/sleepimage, size 2147483648, partition base 0x0, maxio 2000000 ssd 0
    8/14/14 8:21:07.000 AM kernel[0]: hibernate image major 1, minor 0, blocksize 4096, pollers 5
    8/14/14 8:21:07.000 AM kernel[0]: hibernate_alloc_pages act 337243, inact 436769, anon 424346, throt 0, spec 3860, wire 137534, wireinit 196022
    8/14/14 8:21:07.000 AM kernel[0]: hibernate_setup(0) took 0 ms
    8/14/14 8:21:07.000 AM kernel[0]: Bluetooth -- LE is supported - Disable LE meta event
    8/14/14 8:21:07.000 AM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x4400 ****
    8/14/14 8:21:07.000 AM kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    8/14/14 8:21:26.000 AM kernel[0]: hibernate_page_list_setall(preflight 0) start 0xffffff808de3b000, 0xffffff808de63000
    8/14/14 8:21:26.000 AM kernel[0]: hibernate_page_list_setall time: 175 ms
    8/14/14 8:21:26.000 AM kernel[0]: pages 905235, wire 113592, act 204782, inact 1, cleaned 0 spec 12, zf 364806, throt 0, compr 13720, xpmapped 40000
    8/14/14 8:21:26.000 AM kernel[0]: could discard act 119127 inact 45569 purgeable 39777 spec 3849 cleaned 0
    8/14/14 8:21:26.000 AM kernel[0]: WARNING: hibernate_page_list_setall skipped 77087 xpmapped pages
    8/14/14 8:21:26.000 AM kernel[0]: hibernate_page_list_setall found pageCount 696913
    8/14/14 8:21:26.000 AM kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    8/14/14 8:21:26.000 AM kernel[0]: IOHibernatePollerOpen(0)
    8/14/14 8:21:26.000 AM kernel[0]: encryptStart 14040
    8/14/14 8:21:26.000 AM kernel[0]: bitmap_size 0x1f4dc, previewSize 0x533990, writing 695247 pages @ 0x566eac
    8/14/14 8:21:26.000 AM kernel[0]: encryptEnd 5d32600
    8/14/14 8:21:26.000 AM kernel[0]: image1Size 0xa43c000, encryptStart1 0x14040, End1 0x5d32600
    8/14/14 8:21:26.000 AM kernel[0]: encryptStart a43c000
    8/14/14 8:21:26.000 AM kernel[0]: encryptEnd 53dce600
    8/14/14 8:21:26.000 AM kernel[0]: PMStats: Hibernate write took 17876 ms
    8/14/14 8:21:26.000 AM kernel[0]: all time: 17876 ms, comp bytes: 2848276480 time: 3946 ms 688 Mb/s, crypt bytes: 1332415424 time: 3113 ms 408 Mb/s,
    8/14/14 8:21:26.000 AM kernel[0]: image 1406988288 (65%), uncompressed 2848276480 (695380), compressed 1396475760 (49%), sum1 a0413c7d, sum2 d7c170b0
    8/14/14 8:21:26.000 AM kernel[0]: zeroPageCount 43990, wiredPagesEncrypted 68085, wiredPagesClear 43974, dirtyPagesEncrypted 583321
    8/14/14 8:21:26.000 AM kernel[0]: hibernate_write_image done(0)
    8/14/14 8:21:26.000 AM kernel[0]: sleep
    8/14/14 8:21:26.000 AM kernel[0]: Wake reason: EHC1
    8/14/14 8:22:06.000 AM kernel[0]: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    8/14/14 8:22:06.000 AM kernel[0]: Previous Sleep Cause: 5
    8/14/14 8:22:06.000 AM kernel[0]: The USB device HubDevice (Port 1 of Hub at 0x1d000000) may have caused a wake by issuing a remote wakeup (2)
    8/14/14 8:22:06.000 AM kernel[0]: AppleThunderboltHAL::earlyWake - complete - took 1 milliseconds
    8/14/14 8:22:06.000 AM kernel[0]: The USB device HubDevice (Port 8 of Hub at 0x1d100000) may have caused a wake by issuing a remote wakeup (3)
    8/14/14 8:22:06.000 AM kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    8/14/14 8:22:06.000 AM kernel[0]: TBT W (1): 0 [x]
    8/14/14 8:22:06.000 AM kernel[0]: wlEvent: en1 en1 Link DOWN virtIf = 0
    8/14/14 8:22:06.000 AM kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    8/14/14 8:22:06.000 AM kernel[0]: en1: 802.11d country code set to 'X0'.
    8/14/14 8:22:06.000 AM kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    8/14/14 8:22:06.000 AM kernel[0]: The USB device Apple Internal Keyboard / Trackpad (Port 3 of Hub at 0x1d180000) may have caused a wake by issuing a remote wakeup (3)
    8/14/14 8:22:06.000 AM kernel[0]: full wake (reason 1) 170 ms
    8/14/14 8:22:06.000 AM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Resume -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x4400 ****
    8/14/14 8:22:06.462 AM WindowServer[85]: CGXDisplayDidWakeNotification [3130616089633]: posting kCGSDisplayDidWake
    8/14/14 8:22:06.462 AM WindowServer[85]: handle_will_sleep_auth_and_shield_windows: Reordering authw 0x7fe3d2e6cd80(2000) (lock state: 3)
    8/14/14 8:22:06.463 AM WindowServer[85]: handle_will_sleep_auth_and_shield_windows: err 0x0
    8/14/14 8:22:08.725 AM configd[17]: network changed: v4(en1-:192.168.1.3) DNS- Proxy-
    8/14/14 8:22:08.727 AM UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    8/14/14 8:22:08.744 AM netbiosd[361]: network_reachability_changed : network is not reachable, netbiosd is shutting down
    8/14/14 8:22:14.000 AM kernel[0]: en1: 802.11d country code set to 'US'.
    8/14/14 8:22:14.000 AM kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    8/14/14 8:22:14.000 AM kernel[0]: MacAuthEvent en1   Auth result for: 2c:b0:5d:9e:65:6a  MAC AUTH succeeded
    8/14/14 8:22:14.000 AM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    8/14/14 8:22:14.000 AM kernel[0]: AirPort: Link Up on en1
    8/14/14 8:22:14.000 AM kernel[0]: en1: BSSID changed to 2c:b0:5d:9e:65:6a
    8/14/14 8:22:14.000 AM kernel[0]: AirPort: RSN handshake complete on en1
    8/14/14 8:22:14.882 AM configd[17]: network changed: DNS* Proxy
    8/14/14 8:22:14.882 AM UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'NETGEAR86' making interface primary (cache indicates network not captive)
    8/14/14 8:22:14.884 AM UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    8/14/14 8:22:14.885 AM UserEventAgent[11]: Captive: en1: Not probing 'NETGEAR86' (cache indicates not captive)
    8/14/14 8:22:14.885 AM UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    8/14/14 8:22:14.888 AM configd[17]: network changed: v4(en1!:192.168.1.3) DNS+ Proxy+ SMB
    8/14/14 8:22:15.000 AM kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    8/14/14 8:22:16.454 AM loginwindow[42]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    8/14/14 8:22:17.567 AM apsd[187]: Unrecognized leaf certificate
    8/14/14 8:22:17.737 AM Mail[256]: [WEB BUNDLE] Could not execute script: ReferenceError: Can't find variable: MUIWebDocumentDisplayController_sharedInstance
    8/14/14 8:22:25.467 AM AirPlayUIAgent[339]: 2014-08-14 08:22:25.467420 AM [AirPlayUIAgent] Changed PIN pairing: no
    8/14/14 8:22:25.558 AM AirPlayUIAgent[339]: 2014-08-14 08:22:25.557694 AM [AirPlayUIAgent] Changed PIN p

    I started having many problems, including this one, as soon as I installed the 10.5.6 upgrade. Only one of my IMAP accounts is having problems (Gmail is fine so far), but the account is working ok when I access it via Thunderbird. I tried almost of the solutions posted above. I also installed the 10.5.6 Mail patch. All the fixes worked briefly, but after a couple days the problem returns. It must be a problem with my OS account because I can access the IMAP account via my laptop with no problems. That was the one fix you mentioned that I didnt try because I dont want to have update all the settings associated with the current user, and since I would have to restore everything, does it seem more reasonable to just do a clean install of the OS?
    So my question is, do I give up on Mail on this machine? Or do I have to do something like a system wipe?
    Thanks

  • Workflow Activity "Lookup Value" returns An error occured while enumerating the filter using [//WorkflowData/customvalue]

    I want to generate an Accountname using EmployeeID, FirstName and LastName via a workflow.
    I'm using the Granfeldt Workflow Activity Library (https://fimactivitylibrary.codeplex.com/)
    I'm using the FIM Powershell Workflow Activity (https://fimpowershellwf.codeplex.com/)
    Steps:
    Passing the EmployeeID, FirstName and LastName to the powershell Activity, generating a logonid based on logic.
    Add-PSSnapin FIMAutomation
    $EmployeeID = $fimwf.WorkflowDictionary.EmployeeID
    $Forename = $fimwf.WorkflowDictionary.Firstname
    $Lastname = $fimwf.WorkflowDictionary.Lastname
    'logic creating a custom logonid here
       ==> This works
    Returning data back to the workflow via that powershell script:
    $fimwf.WorkflowDictionary.Add('NewAccountName',$newlogonid)
       ==> This works
     Using Lookup Value Activity to read the Workflow data and update the [//Target/AccountName] fails.
    This gives an error:
           An error occurred while enumerating the filter 'string' .
    (where string is the actual generated userid that I've got back from the powershell script. Example dab2563)
    I tried with only [//WorkflowData], then this gives the error:
          Index was outside the bounds of the array.
    Any hints to solve this?    
    Kind regards,
    David

    The Lookup Activity is for looking up an object in the FIM Service. Seems like thats not what you're trying to accomplish.
    For updating the target of the workflow, just use the built-in Function Evaluator. The Lookup WF was not built for that and it is failing because you have not specified a valid XPAth lookup filter, such as /Person[AccountName='BillG']
    Regards, Soren Granfeldt
    blog is at http://blog.goverco.com | facebook https://www.facebook.com/TheIdentityManagementExplorer | twitter at https://twitter.com/#!/MrGranfeldt

  • What is the standard or best method of returning the manager attribute value as a DN (directory string type) to a MV attribute?

    We have an SQL table which supplies authoritative HR data to FIM including the employee's manager HR id. Using the FIM and reference attributes we can stuff the manager on AD correctly.
    BUT, this table is used by other systems and one column (varchar 128) is named AdManager and is supposed to hold the DN of the Manager e.g. cn=A Manager,ou=User Accounts...
    The only way I can think of to get around this is to push the DN of each connected AD account into a indexed string MV attribute called adDN  flowing ad attribute dn -> mv attribute adDN. This is pushed onto the Portal into attribute adDN so the
    idea is that every Portal user (including managers of employees) that has an AD account has his dn stored in adDN as a STRING.
    When I want the managers dn... will this work on the Outbound sync rule attribute flow definition????
    source [//Target/Manager/AdDN]
    target AdManager
    It seems so artificial there just has to be a better way.

    Hello Harold,
    sounds good, thats "nearly" excatly the way I would do this.
    But you can not do this directly in an OSR.
    You have to do this with an workflow with the function evaluator and stor that Attribute on the user every time the Manager is changed.
    After that you can have simple direct flows from MV to your HR Attribute.
    -Peter
    Peter Stapf - ExpertCircle GmbH - My blog:
    JustIDM.wordpress.com

  • Marketing Attributes not updating in BP through Suvery

    Hi friends,
    I m working in CRM 5.0, i want to update marketing attribute of BP using survey response, i have created survey which include marketing attributes, in survey setting i have maintained
    Callback to PBO    CRM_MKTBP_SVY_ATTRIBUTE_PBO
    Callback to PAI      CRM_MKTBP_SVY_ATTRIBUTE_PAI
    further i have generated survey url using BSP option, next i have assign this survey url  to  mail form, Customers/BPs can open the mail and able to fill the survey successfully, but when i checked in master data of BP no marketing attributes are assign to them(Marketing attributes are not updating).
    Please help me to resolve this,do  i will have to add marketing attribute anywhere in FM code ?? i have also read sap note : 638320 but no success.
    Thanks,
    Vivan

    Hello together,
    I would like to describe my own problem with updating Marketing Attributes in a Business Partner via a CRM Survey.
    Currently I am working with SAP CRM 7.0 EHP1. The Survey is maintained in SAP Survey Suite in the Application "Marketing".
    Furthermore I am using the following function modules:
    Callback to PBO CRM_MKTBP_SVY_ATTRIBUTE_PBO
    Callback to PAI CRM_MKTBP_SVY_ATTRIBUTE_PAI
    The Marketing Attributes should be updated within a Contact. This contact have assigned the role "Internet User". Behind this role I have defined my CRM User name.
    For testing the Attribute update I have generated an URL with BSP. Afterwards I opened this URL and logged in with my CRM User name. After filling in the survey and submitting no business partner were updated. It seems that the "conversion" from my CRM User to the CRM contact doesn't work. I think there could be a problem with the PBO and PAI modules. Because the functionality "Evaluation" within the Survey Suite shows a number of evaluated questionnaires and answers after submitting my survey.
    So my questions:
    Are the mentioned PBO and PAI modules up to date? (Last change date was in 2005)
    Is the Application "Marketing" within the SAP Survey Suite the correct one?
    I would be glad if anyone could give me tip for my problem. Thanks a lot and best regards,
    Oliver

  • Record Selection doesn't work with VS 2005 & CR 2008

    Hi all,
    Recently I installed CR 2008 with Service Pack 1 and integrate with Visual Studio 2005. I converted all the CR reports to CR 2008 while opening the VS project which was created earlier.
    My problem is when I load the Crystal report via created application, record selection formula doesn't work instead it shows all records. But in designing time it works fine. Reports which designed with SQL Server Stored Procedure working fine. But reports which designed by adding Tables don't work. It shows all the records without record selection.
    I used simple Record selection formula without using any parameter fields. like this
    tTransactionDetails.acid} = 1
    . still it didn't work.
    When I put break point and see assigned values in Report Document object. It shows
    Function evaluation timeout
    . and then run, it do the record selection. I did this several times, all the time if I see assigned values in Report Document object then the report showed the selected records only otherwise it shows all the records.
    I tried this just running the application exe, still the problem remaining.
    I have saved the reports without the data, so that it will always load the data from the SQL database.
    Please help me to solve this problem.

    Sorry i couldn't do search before I posted the thread. After posted, I just did a search and found the solution by reading [this thread|https://forums.sdn.sap.com/click.jspa?searchID=20348355&messageID=6774564|https://forums.sdn.sap.com/click.jspa?searchID=20348355&messageID=6774564].
    As it has suggested, I just delete the existing Crystal Report Viewer Control from the form and add it again by clicking on CrystalReportViewer version 12.0.2000.0. It worked.

  • How to get a substring in a Workflow Activity?

    I'm concatenating some values into a Summary field in a workflow activity as follows:
    IIF(Eq([//Target/Code1],True),"1,","")+IIF(Eq([//Target/Code2],True),"2,","")+IIF(Eq([//Target/Code3],True),"3,","")
    So if Code1 and Code2 are true I get a Summary Value of 1,2,
    Now I want to trim the trailing comma.
    So I did this
    Left([//Target/Summary],Add(Length([//Target/Summary]),-1))
    This part doesn't work.  It says Left is improperly formatted or missing a parameter.
    If I put a numeric value like 1 or 2 as the second value it works.
     Any suggestions on how to get trim a character off the end of a string in a FIM Workflow activity?

    Length isn't a function supported by the FIM Function evaluator Workflow activity. (Which is frustrating).
    Here is my sloppy approach using the built-in tool (lots of nesting so if you need to do this for more than 3 conditions this grows out of control):
    IIF(Eq([//Target/Code1],True),IIF(Eq([//Target/Code2],True),IIF(Eq([//Target/Code3],True),"1,2,3","1,2") ,IIF(Eq([//Target/Code3],True),"1,3","1") )
    ,IIF(Eq([//Target/Code2],True),IIF(Eq([//Target/Code3],True),"2,3","2") ,IIF(Eq([//Target/Code3],True),"3","") ))
    OR you can use one of these custom workflows that allows you to run your own code:
    http://fimwf.codeplex.com/
    or
    https://fimactivitylibrary.codeplex.com/wikipage?title=Code%20Run%20samples&referringTitle=Documentation
    David Lundell, Get your copy of FIM Best Practices Volume 1 http://blog.ilmbestpractices.com/2010/08/book-is-here-fim-best-practices-volume.html

  • Can't play video on certain sites,

    The following is what comes up in the error console  when trying to play video on as far as I know just The Weather Channel,
    unexpected css token: :
    Failed to load resource: the server responded with a status of 404 (Not Found)
    [Error] TypeError: undefined is not a function (evaluating 'b.split(f)')
      deserialize (gigya.js, line 122)
      g (gigya.js, line 52)
    [Error] ReferenceError: Can't find variable: s
    Two trips to the genius bar ( a colossal waste of time) countless resets of Safari, turning on and off extensions one at a time and and upgrade to Yosemite and still at square one.
    System Info: MacBook Pro 15 inch Mid 2012
                         2.3 Ghz Intel Core I7
                         4 GB 1600 MHz DDR3
                         Macintosh HD
                         Intel HD Graphics 4000 1024 MB
                         OS X Yosemite 10.10.2
    Thank You!
    *A side note it was really unclear as to how to post this correctly as it would not allow me to select any thing that seemed like the most logic choice for my question this was the first one that would allow it but it may not be the right forum for it

    Well those are javascript errors... you may have an application installed that has modified your javascript or is interfering with it.  Have you tried using a different browser?

Maybe you are looking for

  • How do I give a separate task ID to two compute waveform sub vi's running sumiltaneously in one vi?

    I'm running two compute waveform sub vi's in one main vi. The idea is to output two signals that I can vary independently to each other but when I hook LabVIEW up to a Oscilloscope, I only get one output and the other is just a flat line. I noticed t

  • Flash Player not working on other user accounts, only main.

    I have this problem everytime Flash updates and have only been able to fix it twice. On a Windows XP SP 2 I have 3 accounts. The main administator, an administator, and a guest account. Flash Player works for the main admin but not for the guest or o

  • IPhone Choices and the 3GS

    I couldn't find a 'general' forum to put this in. Long story short, my beloved IPhone 3GS just took a swim so I'm looking to replace it... since I'm going to have to put down $650 on a new unlocked phone (needs to be unlocked) I have come to that poi

  • Circular Redirect - Can't submit my feed to iTunes.

    Hi. PLEASE Help! Anyone know what i am doing wrong? My feed works if i subscribe to it using the advanced feature in iTunes. WHen i try to submit, it says "We had difficulty reading this fee. Circular redirect to 'http://www.tmicast.com:80/la-hoops/'

  • Stop Skip Lots for Receiving Inspection

    Hello Experts I have set up my DMR as skip 10 lots after one insection. What I am looking for is to stop skip lots generation as I need to run batch job job QA17 to complete the UD for all skipped lots. What I am looking is that each 11th receipt is