Query reg. Resource and time allocation in cProjects

Wondering if someone can answer this query related to -  Resource and time allocation in cProjects.
I understand the following regarding creating cProject -
1 - Project manager creates a cProject for any upcoming new project in the organization.
2 - Phases and Tasks will be created automatically (at our end) based on the template selected while creating the cProject.
3 - Project manager assigns the resources to the project.
4 - Allocate start date and end date for the resources against Tasks or Phase -
> This is the point where there isn't enough documentation to help me progress further. Please can someone suggest how and where do we specify the start date and end date to a resource in cProject.
A sample document on the BEST approach to create cProject, assign reources to tasks, allocate start date and end date would indeed help further clarify my doubt.
I wante to create a cProject with various tasks, assign resources, start and end date for each task. As the project progresses,
I want to execute a report to track the progress of this cProject as resources go on completing a task.
Thanks,
RB

Hi Pramod,
   Thanks for your reply. Below are some queries based on few points mentioned by you.
Allocate start date and end date for the resources against Tasks or Phase -
When we prepare Project template, we define all project structure with phase, tasks, milestones, etc. - OK
Also we define phase and task depedency, duration for tasks. - OK
In actual Project execution PM creates project with reference to template, he add or delete any task / phase, changes duration if required. - How do you change duration of the task ? What series of events or clicks need to be followed ? Would be nice if atleast one option is listed.
While in project planning, planner has to enter start and end date for project. - OK
cProject scedules all other dates accordingly. We need not to go to individual phase or task to adjust dates. one can adjust only duration and depency to get required dates for tasks. This is standard planning phelosophy used in CPR, MSP or Primavra I believe. - At phase level, I can see Earliest start + finish and Latest start + finish dates populated automatically. In addition Start date constraint and Finish data constraints fields are available and empty. Is it mandatory to enter these dates ?
While doing resource assignment, the start and end dates are coming from task assigned to particular Project Role. - At Task level, I can see Earliest start + finish and Latest start + finish dates populated automatically. In addition Start date constraint and Finish data constraints fields are available and empty. Is it mandatory to enter these dates ?
cProjects automatically schedules the plan in create status, once the project released and actual status updated in cProjects, Project plan needs to schedules manually with help of schedule button in Project menu.- When I click Schedule button, message - Bottom-up scheduling was carried out is populated on screen. What is Bottom-up scheduling ?
Would be nice to get reply to above queries.
Thanks,
RB

Similar Messages

  • Query runs slowly and times out in CF 8

    I'm trying to run this query using Coldfusion 8 and MySQL 5.
    If I run the query directly off the database the results are
    returned very quickly.
    If I run the query through CF 7, it's pretty slow but still
    runs. If I run the query through CF 8 it takes FOREVER, then times
    out.
    Any ideas what could be going wrong here?
    I'm no DB expert. But if the query can run quickly directly
    off the DB OK, but then bombs out in CF 8, that the problem might
    be with CF 8 itself?
    <cfquery name="theOrders"
    datasource="#Application.ds#">
    SELECT o.orderid, o.dealer, o.dealerRep, o.dealerPO,
    o.dealerShippingInstructions, o.dealerFreightCollect,
    o.othershipping, o.billoflading, o.carrier, o.othercarrier,
    o.serialno, o.ShippingDate, o.Shipping, o.ShippingTotal,
    o.SaleSubTotal, o.SaleTotal, o.Tax, o.Discount, o.DiscountRate,
    o.Status, o.DateIn, o.bFirstName, o.bLastName, o.bAddress1,
    o.bAddress2, o.bCity, o.bState, o.bZip, o.bPhone, o.sFirstName,
    o.sLastName, o.sAddress1, o.sAddress2, o.sCity, o.sState, o.sZip,
    o.sPhone, o.sPhone2, o.Message, o.dealerShippingInstructions,
    o.bCompany, o.sCompany, o.bEmail, o.ipaddress, o.oAuthorization,
    o.CCType, o.CCNum, o.CCName, o.CCYear, o.CCMonth, o.entryDate,
    i.RelProductID, i.Quantity, i.RelUnitPrice, i.Shipping, i.Discount,
    i.title
    FROM tblorders as o, tblorderitems as i
    WHERE o.OrderID=i.Relorderid
    ORDER BY OrderID ASC
    </cfquery>

    The server monitoring tool that is built in CF8 can help
    debug this issue quickly. It can give you report about query
    execution time, time taken by a tag to execute and lot more other
    details.
    You can launch sevrer monitoring via CF Administrator.

  • Query: System date and time.

    hi all,
    Does any one know how to get the System Date and System Time using query. This is for my Formatted search.
    Thanks In advance.
    Bruce.

    if you are using SQL Server
    SELECT GetDate()

  • OM17 issues: Resources and Prod Alloca

    Dear Gurus,
    I'd like to seek your help on how to resolve the following errors in our Q system.
    After running OM17 > Consistency Check LiveCache - APO DB, i had 2 errors that cannot be correct by the tool.
    What should i do in order to correct the following inconsistencies, please help.
    Field entries are unequal (Message Number: /SAPAPO/OM_SYNC006)
    Incoming orders quantity cannot be adjusted (Message Number: /SAPAPO/OM_SYNC082)
    Please refer to the screen shots below.
    TIA!
    Zeke

  • SQL 2012 SP1 - How to determine a query that causes Error 8623 in SQL Log: The query processor ran out of internal resources and could not produce a query plan. This is a rare event...

    We are getting multiple 8623 Errors in SQL Log while running Vendor's software.
    How can you catch which Query causes the error?
    I tried to catch it using SQL Profiler Trace but it doesn't show which Query/Sp is the one causing an error. 
    I also tried to use Extended Event session to catch it, but it doesn't create any output either.
    Error:
    The query processor ran out of internal resources and could not produce a query plan. This is a rare event and only expected for extremely complex queries or queries that
    reference a very large number of tables or partitions. Please simplify the query. If you believe you have received this message in error, contact Customer Support Services for more information.
    Extended Event Session that I used;
    CREATE EVENT SESSION
        overly_complex_queries
    ON SERVER
    ADD EVENT sqlserver.error_reported
        ACTION (sqlserver.sql_text, sqlserver.tsql_stack, sqlserver.database_id, sqlserver.username)
        WHERE ([severity] = 16
    AND [error_number] = 8623)
    ADD TARGET package0.asynchronous_file_target
    (SET filename = 'E:\SQLServer2012\MSSQL11.MSSQLSERVER\MSSQL\Log\XE\overly_complex_queries.xel' ,
        metadatafile = 'E:\SQLServer2012\MSSQL11.MSSQLSERVER\MSSQL\Log\XE\overly_complex_queries.xem',
        max_file_size = 10,
        max_rollover_files = 5)
    WITH (MAX_DISPATCH_LATENCY = 5SECONDS)
    GO
    -- Start the session
    ALTER EVENT SESSION overly_complex_queries
        ON SERVER STATE = START
    GO
    It creates only .xel file, but not .xem
    Any help/advice is greatly appreciated

    Hi VK_DBA,
    According to your error message, about which query statement may fail with error message 8623, as other post, you can use trace flag 4102 & 4118 for overcoming this error. Another way is looking for queries with very long IN lists, a large number of
    UNIONs, or a large number of nested sub-queries. These are the most common causes of this particular error message.
    The error 8623 occurs when attempting to select records through a query with a large number of entries in the "IN" clause (> 10,000). For avoiding this error, I suggest that you could apply the latest Cumulative Updates media for SQL Server 2012 Service
    Pack 1, then simplify the query. You may try divide and conquer approach to get part of the query working (as temp table) and then add extra joins / conditions. Or You could try to run the query using the hint option (force order), option (hash join), option
    (merge join) with a plan guide.
    For more information about error 8623, you can review the following article.
    http://blogs.technet.com/b/mdegre/archive/2012/03/13/8623-the-query-processor-ran-out-of-internal-resources-and-could-not-produce-a-query-plan.aspx
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Resource busy time out oracle message - Concurrency and Locks

    I have a requirement to generate gapless invoice and receipt number in our application. so i have currently used the below approach.
    a. created table with a column to hold the invoice and receipt number sequence value.
    b. whenever transaction gets succeed. i will lock the table which holds the invoice number and receipt number inorder to avoid the sequential number slipages.
    Issue
    1. since the application belongs to online payment through portal by customers, when concurrent users trying to pay and while generating receipt number's, i am facing with "resource busy time out" message frequently. Here i noticed when user1 locks the table to access the receipt number value and session is not committed or rollback and another session user2 trying to access the same resource, in this scenario i am facing this error.
    Frequency of encountering this error is low, but customer was telling us this error is show stopper and affects normal business.
    Is there any alternative solution or method can be applied to overcome this problem?
    Current SQL used in application
    cursor <cursor name> is.
    select <column_name>
    into <variable>
    from <table name>
    for update of wait 5
    update <table name> set <column name> = value + 1
    where current of <cursor name>

    1e0ea4a1-1610-4dec-a44c-4ee1f46ba1a4 wrote:
    I have a requirement to generate gapless invoice and receipt number in our application. so i have currently used the below approach.
    Engage the business and inquire WHY this "requirement" exists. I have personally never seen an audit requirement wherein invoices MUST be devoid of gaps (that's not to say they do not exist, just that I've never seen one
    They certainly must be unique, but that's what a sequence will do for you. If the business absolutely needs gapless information, then they will have to be willing to pay the price which is going to be longer transaction times (as requests queue in a busy system to get this sought after gapless resource). Your job is to explain this to them ... nothing comes without a cost.
    The only thing you can really do (assuming you engage the business and the requirement doesn't change) is ensure the transactions are designed in such a manner that
    1) they complete as fast as possible AND that the locking is done at the latest possible stage of the transaction
    2) there is no user interaction (you cannot allow the users a "review" screen of any sort ... because users get silly sometimes and go for a coffee while reviewing things)
    Cheers,

  • Date and time not showing correct whe imported to Power query

    Hi,
    I have an Excel list that I imported to another Excel file via Power query. A few of the imported columns contains date and time, for example 2013-11-09 20:19. When imported to Power query this will show as 41587.84652777778 and only dates/times with zero
    hours and minutes will show correctly. When trying to change the data type to Date/Time it returns an error for all cells containing hours and minutes.
    I use a Swedish version of Excel that uses a different time format compared to standard excel and also uses a , as a delimiter between date and time compared to the . used as delimiter in standard excel. Don't know if that can explain
    this problem?
    Brgds,
    C

    I updated Power query earlier this week, so it should be the latest version. When I created the sample file now the problem appears, so if it is a bug it has not been solved.
    You find the sample file on the link below. 4 sheets with some info on the problem, the data, the query result and one sheet with the data and query result as pictures as it shows in my version of Excel, I guess it will look somewhat different when you open
    the file due to local date/time settings.
    Appreciate feedback on what you find!
    //Caj
    https://skydrive.live.com/redir?resid=94DF9214E3A6D4!107&authkey=!AEuAXX_kPC7yKaI&ithint=file%2c.xlsx

  • Query takes very long time and analyze table hangs

    Hi
    One of the oracle query taking very long time (ie more than a day) and affecting business requirment of getting the report in time.
    I tried to analyze the table with compute statistics option, however it hangs/runs forever on one of the huge table?
    Please let me know how to troubleshoot this issue

    Hi,
    What's your Oracle version?
    You should use DBMS_STATS package not ANALYZE..
    Regards,

  • TS1424 I have downloaded a series of prison break but 3 episodes are saying "you do not have permission to access the requested resource" and "this episode can not be downloaded at this time" any idea how to fix this please??

    I have downloaded a series of prison break but 3 episodes are saying "you do not have permission to access the requested resource" and "this episode can not be downloaded at this time" any idea how to fix this please??

    I got this error with my iPad 3, my wife's iPhone 4, but not with my iPhone 4s.

  • Build a query on runtime and not on design time

    Post Author: rchokler
    CA Forum: WebIntelligence Reporting
    When i build web Intelligence report the BO tool writes the Sql query includes all object I've picked up.
    I would like the TOOL not to build the hole SQL query on design time, I wand it to build the query includes only
    the objects the users picked up to display on the report (on runtime)
    Can i do it?
    BO XI  release 2 Enterprise edition

    Hi,
    As far as I know this can't be done at once because you have to consider :
    - Every Opportunity and their time-limited ProductRevenues
    AND
    - Time-limited Opportunities
    If you want to achieve this, you have to consider the 2 datasets separately and make your first query :
    ObjOpptyQueryPageInput.ListOfOpportunity.Opportunity.searchspec = "([ModifiedDate] >= '01/01/2013 00:00:00')";
    but also another query with the restriction on the ProductRevenue Searchspec.
    This shouldn't be too hard because the searchspec functionality is present at each level :
    - ListOfOpportunity -> Opportunity (the top-level that you used for your query)
    - ListOfOpportunity -> Opportunity -> ListOfProductRevenue -> ProductRevenue (the sub-level that you should use for the second query)
    Then in your C# code, you merge the 2 datasets and you end up with your expected result.
    Hope this helps,
    Charles.
    http://www.dubant.com

  • Query to search between two specific dates and time period

    Hi,
    Need a query to search between two particular dates and time period
    Like i want to search table having one date field .
    Suppose the date range is '01-JUL-06' and '01-AUG-06' and time frame
    is 23:00:00 to 08:00:00
    i.e i want to search between dates 01 july to 01 aug and also within the time frame i.e 23:00 to 08:00 hrs only

    The general principle is
    SELECT * FROM your_table
    WHERE some_date BEWTEEN to_date('01-JUL-06') and to_date('01-AUG-06' )+0.99999
    AND  ( some_date <= trunc(some_date)+8/24
               OR  some_date >= trunc(some_date)+23/24 )
    /Cheers, APC

  • Query to deduct the time from current date and time

    I want to get the query to deduct time(180 mins) from the current date and time.
    Regards
    Pavan

    SQL> select to_char(sysdate,'dd.mm.yyyy hh24:mi:ss') curr,
      2         to_char(sysdate - interval '180' minute,'dd.mm.yyyy hh24:mi:ss') past from dual
      3  /
    CURR                PAST
    24.08.2007 16:18:37 24.08.2007 13:18:37
    SQL> 

  • Reg: Personell number / Time id and Break up time in COR6N Screen

    Dear Friends ,
    In OPK1(Process order ) Confirmation profile , In area selection tab , we can see .
    Personnel numb er and time ID tabs. and break up time.
    Please let me know how to use this fields.
    Thanks in advance for your replies!!

    Hi Dayanan,
    Basically this is HR customization activity. Please follow the below steps
    1. SPRO>Enterprise Structure>Human Resources Management>Definition>Human Resources Management> Personnel Areas. Here create the Personnel information.
    2. Then do the assignment to company code as
    SPRO>Enterprise Structure>Human Resources Management>Assignment>Human Resources Management>Assignment of Personnel Area to Company Code.
    3. SPRO>Personnel Management>Personnel Administration>Organizational Data>Organizational Assignment>Define employee attributes. Here you defined employee groups and employee subgroups. In this step, you must assign one of the following statuses to those employee groups and employee subgroups:
    Activity status
    Employment status
    Education and training status
    4. Then use transaction code PO10, PO13 and PA40.
    All the best
    Thanks
    Hrishi
    Edited by: Hrishi on Feb 13, 2012 4:57 PM

  • Time Machine Backup hangs on both USB and Time Capsule

    Hello!
    I have some problems with Time Machine backing up my MacBook Pro Retina 15" Late 2013 running Yosemite 10.10.2.
    I am using the MacBook both in the office and at home attached to a USB hub with KeyBord and external screen. The MacBook is usually closed and I put in sleep mode ("Ruhezustand" in German) when changing the location.
    In my office I have a Time Capsule and at home I am attaching an USB 3 external hard disc directly to the free USB port on the MacBook. Everything worked fine for a long time and I did not pay much attention to the updating process itself.
    Since a couple of weeks I have the problem, that Time Machine Backup hangs - on both USB-Drive and Time Capsule. This could happen at different positions like 550 MB of x.x GB or 3 KB of x.x GB (Calculating Time Remaining).
    The only way to run the backup completely is to restart the Mac. Then everything runs fine and the following automatic backups are running smoothly, too. It seems the problem only occours after moving from one location to another. 
    I tried checking the Volume of the Mac and the USB drive and also tried repairing Rights on the Volume.
    I also tried resetting the pram during the start-up procedure.
    Changes I made in the last months are moving from Mavericks to Yosemity, replacing old Cherry Keyboards with Apple keyboards and updating a driver for the USB-Hub including Lan-Access.
    Thank you for your help!
    Markus

    Ok, I got a lot of results. I hope this information is helpful. Keep in mind I restarted the machine and Time Machine is now working fine. This will probably be the case until I am in the office again (not before Tuesday).
    Start time: 17:29:46 03/21/15
    Revision: 1297
    Model Identifier: MacBookPro11,3
    System Version: OS X 10.10.2 (14C1514)
    Kernel Version: Darwin 14.1.0
    Time since boot: 1:47
    UID: 501
    USB
        USB3.0 Hub (VIA Labs, Inc.)
        AX88179 (ASIX Electronics Corporation)
        Samsung M3 Portable (Samsung Electronics Co., Ltd.)
        USB2.0 Hub (VIA Labs, Inc.)
        Wacom Wireless Receiver (WACOM Co., Ltd.)
        Intuos5 touch M (WACOM Co., Ltd.)
    System errors (per sec)
        xrdd (UID 0, error 60): 213
    Energy (lifetime)
        kernel_task (UID 0): 6.00
    Memory (MB)
        kernel_task (UID 0): 1324
    Firewall: On
    Wi-Fi
        Signal / Noise: -78 dBm / -86 dBm
        Signal / Noise: -77 dBm / 0 dBm
        Signal / Noise: -50 dBm / 0 dBm
        Signal / Noise: -74 dBm / 0 dBm
        Signal / Noise: -87 dBm / 0 dBm
    System caches/logs
        4,5 GiB: /System/Library/Caches/com.apple.coresymbolicationd/data
    Diagnostic reports
        2015-02-21 com.apple.WebKit.WebContent crash
        2015-02-21 hasplmd crash x20
        2015-02-22 hasplmd crash x19
        2015-02-23 hasplmd crash x20
        2015-02-24 com.apple.WebKit.WebContent crash x9
        2015-02-24 discoveryd crash
        2015-02-24 hasplmd crash x19
        2015-02-25 hasplmd crash x20
        2015-02-26 Adobe Bridge CC hang
        2015-02-26 hasplmd crash x20
        2015-02-27 hasplmd crash x20
        2015-02-28 hasplmd crash x19
        2015-03-01 hasplmd crash x20
        2015-03-02 hasplmd crash x20
        2015-03-03 discoveryd crash
        2015-03-03 hasplmd crash x20
        2015-03-06 Avira crash
        2015-03-07 Avira crash
        2015-03-07 Preview hang x2
        2015-03-07 com.apple.appkit.xpc.openAndSavePanelService hang
        2015-03-12 Mail crash
        2015-03-13 Mail crash
        2015-03-17 discoveryd crash
        2015-03-20 Safari crash
    HID errors: 7
    Kernel log
        Mar 21 08:50:23 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 08:50:23 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 08:50:23 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 09:51:59 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 09:52:00 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 09:52:00 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 09:52:00 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 10:28:21 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 10:28:21 USBF:    20521.192    IOUSBHIDDriver(AppleUSBHIDKeyboard)::RearmInterruptRead  returning error 0xe00002c0 (no such device), not issuing any reads to device
        Mar 21 10:28:21 USBF:    20521.192    IOUSBHIDDriver(AppleUSBHIDKeyboard)::RearmInterruptRead  returning error 0xe00002c0 (no such device), not issuing any reads to device
        Mar 21 10:28:21 USBF:    20521.192    IOUSBHIDDriver(IOUSBHIDDriver)::RearmInterruptRead  returning error 0xe00002c0 (no such device), not issuing any reads to device
        Mar 21 10:28:21 USBF:    20521.192    IOUSBHIDDriver(IOUSBHIDDriver)::RearmInterruptRead  returning error 0xe00002c0 (no such device), not issuing any reads to device
        Mar 21 10:28:21 USBF:    20521.192    IOUSBHIDDriver(IOUSBHIDDriver)::RearmInterruptRead  returning error 0xe00002c0 (no such device), not issuing any reads to device
        Mar 21 10:28:21 USBF:    20521.224    USBF:    20521.224    IOUSBHIDDriver(IOUSBHIDDriver)::RearmInterruptRead  returning error 0xe00002c0 (no such device), not issuing any reads to deviceIOUSBHIDDriver(IOUSBHIDDriver)::RearmInterruptRead  returning error 0xe00002c0 (no such device), not issuing any reads to device
        Mar 21 10:28:21 USBF:    20521.224    IOUSBHIDDriver(IOUSBHIDDriver)::RearmInterruptRead  returning error 0xe00002c0 (no such device), not issuing any reads to device
        Mar 21 13:12:08 IO80211AWDLPeerManager::failToEnable
        Mar 21 13:12:23 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 13:12:23 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 13:12:23 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 13:12:23 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 15:21:53 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 15:21:53 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 15:21:53 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 15:21:53 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 15:42:33 SATA WARNING: IDENTIFY DEVICE checksum not implemented.
    System log
        Mar 21 16:30:27 Mail: Stream 0x600000104920 is sending an event before being opened
        Mar 21 16:34:20 CalendarAgent: Stream 0x7fedb52c0970 is sending an event before being opened
        Mar 21 16:35:27 Mail: Stream 0x600000112480 is sending an event before being opened
        Mar 21 16:40:27 Mail: Stream 0x60000011cf80 is sending an event before being opened
        Mar 21 16:41:40 launchservicesd: Application App:"loginwindow" asn:0x0-1001 pid:69 refs=7 @ 0x7fa2436194e0 tried to be brought forward, but isn't in fPermittedFrontApps ( ( "LSApplication:0x0-0x67067 pid=723 "ScreenSaverEngine"")), so denying. : LASSession.cp #1521 SetFrontApplication() q=LSSession 100006/0x186a6 queue
        Mar 21 16:41:40 launchservicesd: Application App:"loginwindow" asn:0x0-1001 pid:69 refs=8 @ 0x7fa2436194e0 tried to be brought forward, but isn't in fPermittedFrontApps ( ( "LSApplication:0x0-0x67067 pid=723 "ScreenSaverEngine"")), so denying. : LASSession.cp #1521 SetFrontApplication() q=LSSession 100006/0x186a6 queue
        Mar 21 16:45:27 Mail: Stream 0x600000119c50 is sending an event before being opened
        Mar 21 16:50:27 Mail: Stream 0x618000302250 is sending an event before being opened
        Mar 21 16:50:28 Mail: Stream 0x618000305460 is sending an event before being opened
        Mar 21 16:52:01 CalendarAgent: Stream 0x7fedb3588010 is sending an event before being opened
        Mar 21 16:55:27 Mail: Stream 0x6180003021c0 is sending an event before being opened
        Mar 21 17:00:29 Mail: Stream 0x61000011c440 is sending an event before being opened
        Mar 21 17:05:27 Mail: Stream 0x608000110230 is sending an event before being opened
        Mar 21 17:07:45 CalendarAgent: Stream 0x7fedb522ebf0 is sending an event before being opened
        Mar 21 17:07:55 AddressBookSourceSync: Stream 0x7fc201cd14e0 is sending an event before being opened
        Mar 21 17:08:30 Mail: Stream 0x610000306390 is sending an event before being opened
        Mar 21 17:08:30 Mail: Stream 0x6000001164a0 is sending an event before being opened
        Mar 21 17:10:26 Mail: Stream 0x608000106b70 is sending an event before being opened
        Mar 21 17:15:26 Mail: Stream 0x608000111b80 is sending an event before being opened
        Mar 21 17:16:34 com.apple.backupd: Backup failed with error 18: The backup disk could not be found.
        Mar 21 17:17:32 fseventsd: Logging disabled completely for device:1: /Volumes/Recovery HD
        Mar 21 17:20:26 Mail: Stream 0x608000111d30 is sending an event before being opened
        Mar 21 17:25:26 Mail: Stream 0x608000108820 is sending an event before being opened
        Mar 21 17:28:02 CalendarAgent: Stream 0x7fedb52caa70 is sending an event before being opened
        Mar 21 17:29:15 WacomTouchDriver: IOHIDEventCreateWithBytes: Failed to create event at index=0 eventCount=96 eventDataOffset=4 totalEventDataSize=292
    launchd log
        Mar 19 08:44:03 com.apple.xpc.launchd.user.501.100006.Aqua: Could not import service from caller: caller = otherbsd.226, service = QA2G25RMZ4.com.wunderkinder.wunderlist-helper, error = 119: Service is disabled
        Mar 19 19:02:48 com.apple.xpc.launchd.domain.user.loginwindow.69.4294967295: Could not import service from caller: caller = WacomTabletDriv.171, service = com.wacom.WacomTouchDriver.254496, error = 134: Service cannot load in requested session
        Mar 19 19:02:49 com.apple.xpc.launchd.domain.user.loginwindow.69.4294967295: Could not import service from caller: caller = PenTabletDriver.170, service = com.wacom.ConsumerTouchDriver.18208, error = 134: Service cannot load in requested session
        Mar 19 19:02:49 com.apple.xpc.launchd.domain.user.loginwindow.69.4294967295: Could not import service from caller: caller = PenTabletDriver.170, service = com.wacom.TabletDriver.18492, error = 134: Service cannot load in requested session
        Mar 19 19:02:50 com.apple.xpc.launchd.domain.user.loginwindow.69.4294967295: Could not import service from caller: caller = WacomTabletDriv.171, service = com.wacom.TabletDriver.254780, error = 134: Service cannot load in requested session
        Mar 19 19:03:44 com.apple.xpc.launchd.user.501.100006.Aqua: Could not import service from caller: caller = otherbsd.216, service = QA2G25RMZ4.com.wunderkinder.wunderlist-helper, error = 119: Service is disabled
        Mar 20 11:20:33 com.apple.xpc.launchd.domain.user.loginwindow.3434.4294967295: Could not import service from caller: caller = WacomTabletDriv.3445, service = com.wacom.WacomTouchDriver.254496, error = 134: Service cannot load in requested session
        Mar 20 11:20:33 com.apple.xpc.launchd.domain.user.loginwindow.3434.4294967295: Could not import service from caller: caller = PenTabletDriver.3444, service = com.wacom.ConsumerTouchDriver.18208, error = 134: Service cannot load in requested session
        Mar 20 11:20:33 com.apple.xpc.launchd.domain.user.loginwindow.3434.4294967295: Could not import service from caller: caller = PenTabletDriver.3444, service = com.wacom.TabletDriver.18492, error = 134: Service cannot load in requested session
        Mar 20 11:20:34 com.apple.xpc.launchd.domain.user.loginwindow.3434.4294967295: Could not import service from caller: caller = WacomTabletDriv.3445, service = com.wacom.TabletDriver.254780, error = 134: Service cannot load in requested session
        Mar 20 11:21:58 com.apple.xpc.launchd.domain.user.loginwindow.72.4294967295: Could not import service from caller: caller = WacomTabletDriv.167, service = com.wacom.WacomTouchDriver.254496, error = 134: Service cannot load in requested session
        Mar 20 11:21:59 com.apple.xpc.launchd.domain.user.loginwindow.72.4294967295: Could not import service from caller: caller = PenTabletDriver.168, service = com.wacom.ConsumerTouchDriver.18208, error = 134: Service cannot load in requested session
        Mar 20 11:21:59 com.apple.xpc.launchd.domain.user.loginwindow.72.4294967295: Could not import service from caller: caller = PenTabletDriver.168, service = com.wacom.TabletDriver.18492, error = 134: Service cannot load in requested session
        Mar 20 11:21:59 com.apple.xpc.launchd.domain.user.loginwindow.72.4294967295: Could not import service from caller: caller = WacomTabletDriv.167, service = com.wacom.TabletDriver.254780, error = 134: Service cannot load in requested session
        Mar 20 11:22:21 com.apple.xpc.launchd.user.501.100005.Aqua: Could not import service from caller: caller = otherbsd.208, service = QA2G25RMZ4.com.wunderkinder.wunderlist-helper, error = 119: Service is disabled
        Mar 20 13:02:54 com.apple.xpc.launchd.domain.user.loginwindow.69.4294967295: Could not import service from caller: caller = WacomTabletDriv.168, service = com.wacom.WacomTouchDriver.254496, error = 134: Service cannot load in requested session
        Mar 20 13:02:54 com.apple.xpc.launchd.domain.user.loginwindow.69.4294967295: Could not import service from caller: caller = PenTabletDriver.167, service = com.wacom.ConsumerTouchDriver.18208, error = 134: Service cannot load in requested session
        Mar 20 13:02:54 com.apple.xpc.launchd.domain.user.loginwindow.69.4294967295: Could not import service from caller: caller = PenTabletDriver.167, service = com.wacom.TabletDriver.18492, error = 134: Service cannot load in requested session
        Mar 20 13:02:55 com.apple.xpc.launchd.domain.user.loginwindow.69.4294967295: Could not import service from caller: caller = WacomTabletDriv.168, service = com.wacom.TabletDriver.254780, error = 134: Service cannot load in requested session
        Mar 20 13:03:08 com.apple.xpc.launchd.user.501.100005.Aqua: Could not import service from caller: caller = otherbsd.203, service = QA2G25RMZ4.com.wunderkinder.wunderlist-helper, error = 119: Service is disabled
        Mar 21 15:42:35 com.apple.xpc.launchd.domain.user.loginwindow.69.4294967295: Could not import service from caller: caller = WacomTabletDriv.174, service = com.wacom.WacomTouchDriver.254496, error = 134: Service cannot load in requested session
        Mar 21 15:42:36 com.apple.xpc.launchd.domain.user.loginwindow.69.4294967295: Could not import service from caller: caller = PenTabletDriver.173, service = com.wacom.ConsumerTouchDriver.18208, error = 134: Service cannot load in requested session
        Mar 21 15:42:36 com.apple.xpc.launchd.domain.user.loginwindow.69.4294967295: Could not import service from caller: caller = PenTabletDriver.173, service = com.wacom.TabletDriver.18492, error = 134: Service cannot load in requested session
        Mar 21 15:42:35 com.apple.xpc.launchd.domain.user.loginwindow.69.4294967295: Could not import service from caller: caller = WacomTabletDriv.174, service = com.wacom.TabletDriver.254780, error = 134: Service cannot load in requested session
        Mar 21 15:43:43 com.apple.xpc.launchd.user.501.100006.Aqua: Could not import service from caller: caller = otherbsd.229, service = QA2G25RMZ4.com.wunderkinder.wunderlist-helper, error = 119: Service is disabled
    Loaded kernel extensions
        com.asix.driver.ax88179-178a (1.3.0)
    System services loaded
        com.adobe.adobeupdatedaemon
        com.apple.spindump
        - status: 75
        com.apple.watchdogd
        com.google.keystone.daemon
        com.microsoft.office.licensing.helper
        com.xrite.device.xrdd.plist
    System services disabled
        com.apple.mrt
    Login services loaded
        com.adobe.AAM.Scheduler-1.0
        com.adobe.ARM.UUID
        com.adobe.AdobeCreativeCloud
        com.apple.mrt.uiagent
        com.google.keystone.system.agent
        com.wacom.pentablet
        com.wacom.wacomtablet
        com.xrite.device.softwareupdate.plist
        de.nulldesign.TymeLaunchAtLogin
    Login services disabled
        QA2G25RMZ4.com.wunderkinder.wunderlist-helper
    User services disabled
        QA2G25RMZ4.com.wunderkinder.wunderlist-helper
    User login items
        iTunesHelper
        - /Applications/iTunes.app/Contents/MacOS/iTunesHelper.app
        ScanSnap Manager
        - /Applications/ScanSnap/ScanSnap Manager.app
        i1ProfilerTray
        - /Applications/i1Profiler/i1ProfilerTray.app
        EOS Utility
        - /Applications/Canon Utilities/EOS Utility/EOS Utility.app
    Firefox extensions
        Mozilla Firefox hotfix
    iCloud errors
        bird 334
        cloudd 23
    Continuity errors
        lsuseractivityd 291
        sharingd 29
    Restricted files: 1941
    Lockfiles: 5
    High file counts
        Desktop: 70
    Contents of /Library/LaunchAgents/com.wacom.pentablet.plist
        - mod date: Aug 20 21:26:19 2014
        - checksum: 3556858023
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>EnvironmentVariables</key>
        <dict>
        <key>RUN_WITH_LAUNCHD</key>
        <string>1</string>
        </dict>
        <key>KeepAlive</key>
        <dict>
        <key>SuccessfulExit</key>
        <true/>
        </dict>
        <key>Label</key>
        <string>com.wacom.pentablet</string>
        <key>LimitLoadToSessionType</key>
        <array>
        <string>Aqua</string>
        <string>LoginWindow</string>
        </array>
        <key>Program</key>
        <string>/Library/Application Support/Tablet/PenTabletSpringboard</string>
        <key>RunAtLoad</key>
        <true/>
        ...and 4 more line(s)
    Contents of /Library/LaunchAgents/com.wacom.wacomtablet.plist
        - mod date: Nov  5 00:40:04 2014
        - checksum: 2972905917
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>EnvironmentVariables</key>
        <dict>
        <key>RUN_WITH_LAUNCHD</key>
        <string>1</string>
        </dict>
        <key>KeepAlive</key>
        <dict>
        <key>SuccessfulExit</key>
        <true/>
        </dict>
        <key>Label</key>
        <string>com.wacom.wacomtablet</string>
        <key>LimitLoadToSessionType</key>
        <array>
        <string>Aqua</string>
        <string>LoginWindow</string>
        </array>
        <key>Program</key>
        <string>/Library/Application Support/Tablet/WacomTabletSpringboard</string>
        <key>RunAtLoad</key>
        <true/>
        ...and 4 more line(s)
    Contents of /Library/LaunchAgents/com.xrite.device.softwareupdate.plist
        - mod date: Jun 23 21:26:30 2014
        - checksum: 3055576921
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.xrite.device.softwareupdate.plist</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/X-Rite/Frameworks/XRiteDevice.framework/Versions/B/Resources/XRD Software Update.app/Contents/MacOS/XRD Software Update</string>
        </array>
        <key>RunAtLoad</key>
        <false/>
        <key>StartCalendarInterval</key>
        <dict>
        <key>Hour</key>
        <integer>9</integer>
        <key>Minute</key>
        <integer>0</integer>
        </dict>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.xrite.device.xrdd.plist
        - mod date: Jun 23 21:26:30 2014
        - checksum: 1464013229
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.xrite.device.xrdd.plist</string>
        <key>RunAtLoad</key>
        <true/>
        <!--
        <key>UserName</key>
        <string>com.xrite.device.user.xrd</string>
        <key>GroupName</key>
        <string>com.xrite.device.group.xrd</string>
        -->
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/X-Rite/Frameworks/XRiteDevice.framework/Versions/B/Resources/xrdd</stri ng>
        </array>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: May 29 13:56:52 2014
        - checksum: 4116814193
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/MacOS/Updater/Adobe Acrobat Updater Helper.app/Contents/MacOS/Adobe Acrobat Updater Helper</string>
        <string>semi-auto</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
        </dict>
        </plist>
    Extensions
        /Library/Extensions/AX88179_178A.kext
        - com.asix.driver.ax88179-178a
        /Library/Extensions/EPSONUSBPrintClass.kext
        - com.epson.print.kext.USBPrintClass
        /Library/Extensions/FTDIKext.kext
        - com.wacom.kext.ftdi
        /System/Library/Extensions/EPSONUSBPrintClass.kext
        - com.epson.print.kext.USBPrintClass
        /System/Library/Extensions/FileAccessControl.kext
        - com.avira.kext.FileAccessControl
        /System/Library/Extensions/JMicronATA.kext
        - com.jmicron.JMicronATA
        /System/Library/Extensions/Pen Tablet.kext
        - com.wacom.kext.pentablet
        /System/Library/Extensions/SiLabsUSBDriver.kext
        - com.silabs.driver.CP210xVCPDriver
        /System/Library/Extensions/SiLabsUSBDriver64.kext
        - com.silabs.driver.CP210xVCPDriver64
        /System/Library/Extensions/Wacom Tablet.kext
        - com.wacom.kext.wacomtablet
    Applications
        /Applications/AdWords Editor.app
        - com.google.adwordseditor
        /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app
        - N/A
        /Applications/Canon Utilities/EOS Utility/EU2/ReadMe(EOS Utility).app
        - jp.co.canon.DocumentLauncher
        /Applications/Microsoft Office 2011/Office/Add-Ins/Solver.app
        - com.microsoft.ASApplication
        /Applications/Microsoft Office 2011/Office/Equation Editor.app
        - com.microsoft.EquationEditor
        /Applications/Microsoft Office 2011/Office/Microsoft Office Setup Assistant.app
        - com.microsoft.office.setupassistant
        /Applications/Microsoft Office 2011/Office/Microsoft Query.app
        - com.microsoft.Query
        /Applications/ScanSnap/Manual/Manual.app
        - jp.co.pfu.ScanSnap.ManualLauncher
        /Applications/ScanSnap/Manual/Manual2.app
        - jp.co.pfu.ScanSnap.ManualLauncher
        /Applications/ScanSnap/OnlineUpdate.app
        - jp.co.pfu.OnlineUpdate
        /Applications/ScanSnap/Scan to Office/Scan To Salesforce.app
        - jp.co.pfu.ScanSnap.ScanToSalesforce
        /Applications/ScanSnap/Scan to Office/Scan to E-mail.app
        - jp.co.pfu.ScanSnap.STMApp
        /Applications/ScanSnap/Scan to Office/Scan to Evernote1.app
        - jp.co.pfu.ScanSnap.ScantoEvernote1
        /Applications/ScanSnap/Scan to Office/Scan to Evernote2.app
        - jp.co.pfu.ScanSnap.ScantoEvernote2
        /Applications/ScanSnap/Scan to Office/Scan to Folder.app
        - jp.co.pfu.ScanSnap.ScanToFolder
        /Applications/ScanSnap/Scan to Office/Scan to GoogleDocs.app
        - jp.co.pfu.ScanSnap.ScantoGDoc
        /Applications/ScanSnap/Scan to Office/Scan to Print.app
        - jp.co.pfu.ScanSnap.STPApp
        /Applications/ScanSnap/Scan2Mobile.app
        - jp.co.pfu.ScanSnap.Scan2Mobile
        /Applications/ScanSnap/ScanSnap Manager.app
        - jp.co.pfu.ScanSnap.V10L10
        /Applications/ScanSnap/ScanSnap Viewer.app:̈gung:
        - N/A
        /Applications/ScanSnap/ScanToMobileTrans.app
        - jp.co.pfu.ScanSnap.ScanToMobileTrans
        /Applications/ScanSnap/Sub/RegistScanSnap.app
        - N/A
        /Applications/ScanSnap/Sub/SSLog.app
        - jp.co.pfu.ScanSnap.SSLog
        /Applications/ScanSnap/Sub/SSMagAdjust.app
        - com.fujitsu.pfu.SSMagAdjust
        /Applications/ScanSnap/Sub/ScanSnapUnInstaller.app
        - jp.co.pfu.ScanSnap.Uninstaller
        /Applications/ScanSnap/SupportTool.app
        - jp.co.pfu.ScanSnap.SupportTool
        /Applications/Utilities/Adobe AIR Application Installer.app
        - com.adobe.air.ApplicationInstaller
        /Applications/Wacom Tablet.localized/Wacom Help.app
        - com.intel.nw
        /Library/Application Support/Adobe/CEPServiceManager4/extensions/AdobeExchange/assets/ExmanMac/Conte nts/MacOS/LogTransport2.app
        - N/A
        /Library/Application Support/Adobe/CEPServiceManager4/html/CEPHtmlEngine.app
        - com.adobe.cep.CEPHtmlEngine
        /Library/Application Support/Adobe/InDesign/Version 10.0/AdobeInDesign10AppBase/JFS/Adobe InDesign CC 2014.app
        - N/A
        /Library/Application Support/Adobe/InDesign/Version 10.0/AdobeInDesign10AppBase/MFS/Adobe InDesign CC 2014.app
        - N/A
        /Library/Application Support/Adobe/InDesign/Version 10.0/AdobeInDesign10AppBase/RFS/Adobe InDesign CC 2014.app
        - N/A
        /Library/Application Support/Adobe/Installers/AdobeInDesign10AppBase/ExtraFiles/INSTALLDIR_EXE/Adobe InDesign CC 2014.app
        - N/A
        /Library/Application Support/X-Rite/Frameworks/XRiteDevice.framework/Versions/B/Resources/X-Rite Device Services.app
        - com.xrite.device.X-Rite-Device-Services
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app
        - com.adobe.air.ApplicationInstaller
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Template.app
        - com.adobe.air.Template
        /Library/Image Capture/TWAIN Data Sources/CanoScan LiDE 110.ds
        - com.twainds.lide110.scangear170100.canon
        /Library/PDF Services/Save as Adobe PDF.app
        - com.apple.automator.SaveasAdobePDF
        /Library/Printers/EPSON/InkjetPrinter2/Utility/UT4/EpsonSuppliesTool4.app
        - com.epson.ijprinter.EpsonSuppliesTool4
        /Users/USER/Documents/Sichern auf USB-Platte zuhause.app
        - com.apple.automator.Sichern auf USB-Platte zuhause
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_aohghmighlieiainnegkcijnfilokake/Default aohghmighlieiainnegkcijnfilokake.app
        - com.google.Chrome.app.Default-aohghmighlieiainnegkcijnfilokake-internal
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_apdfllckaahabafndbhieahigkjlhalf/Default apdfllckaahabafndbhieahigkjlhalf.app
        - com.google.Chrome.app.Default-apdfllckaahabafndbhieahigkjlhalf-internal
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_blpcfgokakmgnkcojhhkbfbldkacnbeo/Default blpcfgokakmgnkcojhhkbfbldkacnbeo.app
        - com.google.Chrome.app.Default-blpcfgokakmgnkcojhhkbfbldkacnbeo-internal
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_coobgpohoikkiipiblmjeljniedjpjpf/Default coobgpohoikkiipiblmjeljniedjpjpf.app
        - com.google.Chrome.app.Default-coobgpohoikkiipiblmjeljniedjpjpf-internal
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_hipbfijinpcgfogaopmgehiegacbhmob/Default hipbfijinpcgfogaopmgehiegacbhmob.app
        - com.google.Chrome.app.Default-hipbfijinpcgfogaopmgehiegacbhmob-internal
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_nlbjncdgjeocebhnmkbbbdekmmmcbfjd/Default nlbjncdgjeocebhnmkbbbdekmmmcbfjd.app
        - com.google.Chrome.app.Default-nlbjncdgjeocebhnmkbbbdekmmmcbfjd-internal
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_nmmhkkegccagdldgiimedpiccmgmieda/Default nmmhkkegccagdldgiimedpiccmgmieda.app
        - com.google.Chrome.app.Default-nmmhkkegccagdldgiimedpiccmgmieda-internal
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_pjkljhegncpnkpknbcohdijeoejaedia/Default pjkljhegncpnkpknbcohdijeoejaedia.app
        - com.google.Chrome.app.Default-pjkljhegncpnkpknbcohdijeoejaedia-internal
        /Users/USER/Library/Application Support/WebEx Folder/Add-ons/Cisco WebEx Start.app
        - com.cisco.webex.Cisco-WebEx-Start
    Frameworks
        /Library/Frameworks/Adobe AIR.framework
        - com.adobe.AIR
        /Library/Frameworks/WacomMultiTouch.framework
        - com.wacom.WacomMultiTouch
        /Library/Frameworks/XRiteDevice.framework
        - com.xrite.xritedevice
    PrefPane
        /Library/PreferencePanes/PenTablet.prefPane
        - com.wacom.PenTabletSettingsPrefPane
        /Library/PreferencePanes/WacomTablet.prefPane
        - com.wacom.settingsPrefPane
    Bundles
        /Library/Application Support/Adobe/APE/3.4/adbeapecore.framework/Versions/A/Libraries/Flash Player.plugin
        - com.macromedia.FlashPlayer-10.4-10.5.plugin
        /Library/Application Support/Adobe/Plug-Ins/CC/File Formats/Camera Raw.plugin
        - com.adobe.CameraRaw
        /Library/Application Support/DxO Labs/dvpv1/PhotoshopPlugin-automation.plugin
        /Library/Application Support/DxO Labs/dvpv1/PhotoshopPlugin-filter.plugin
        - N/A
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/AdobeCP15.plugin
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Flash Player.plugin
        - N/A
        /Library/Internet Plug-Ins Disabled/AdobeAAMDetect.plugin
        - com.adobe.adobecp
        /Library/Internet Plug-Ins Disabled/AdobePDFViewer.plugin
        - com.macromedia.FlashPlayer-10.6.plugin
        /Library/Internet Plug-Ins Disabled/AdobePDFViewerNPAPI.plugin
        - com.AdobeAAMDetectLib.AdobeAAMDetect
        /Library/Internet Plug-Ins/AdobeAAMDetect.plugin
        - com.adobe.acrobat.pdfviewer
        /Library/Internet Plug-Ins/SharePointBrowserPlugin.plugin
        - com.adobe.acrobat.pdfviewerNPAPI
        /Library/Internet Plug-Ins/WacomTabletPlugin.plugin
        - com.AdobeAAMDetectLib.AdobeAAMDetect
        /Users/USER/Library/Internet Plug-Ins/WebEx64.plugin
        - com.microsoft.sharepoint.browserplugin
        - com.WacomTabletPluginLib.WacomTabletPlugin
        - com.cisco_webex.plugin.gpc64
    Bundles (new)
        /Applications/Wunderlist.app
        - com.wunderkinder.wunderlistdesktop
        /Applications/Wunderlist.app/Contents/Library/LoginItems/WunderlistHelper.app
        - null
        /Applications/iPhoto.app
        - com.apple.iPhoto
        /Applications/iPhoto.app/Contents/Library/LoginItems/PhotoStreamAgent.app
        - null
    Library paths
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/advanced render.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/alembic.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/browser.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/ca.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/ca2.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/clothilde.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/compositing.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/dwgobjects.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/dynamics.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/expressiontag.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/hair.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/mocca.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/model.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/mograph.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/motioncam.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/newman.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/objects.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/openexr.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/python.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/sculpt.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/shader.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/sky.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/sla.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/thinking particles.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/tpoperators.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/xpressocore.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/xtensions.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/addons.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/advanced render.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/alembic.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/archigrass.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/bitmapfilter.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/bpexchange.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/browser.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/ca.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/ca2.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/cameramapper.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/cineman.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/clothilde.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/collada14.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/collada15.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/compositing.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/deployment.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/dwg.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/dwgobjects.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/dynamics.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/exchanges.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/expressiontag.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/fbx.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/hair.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/iges.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/licenseserver.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/metrics.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/mocca.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/model.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/mograph.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/motioncam.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/motiontracker.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/newman.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/objects.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/onlinehelp.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/onlineupdater.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/openexr.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/python.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/relaxuv.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/sculpt.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/sculptbrushes.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/shader.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/sketch.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/sky.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/sla.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/spacemouse.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/teamrender.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/texturemanager.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/thinking particles.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/tpoperators.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/walkthrough.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/xpressocore.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/xtensions.dylib
        /Applications/Adobe InDesign CC 2014/Plug-Ins/Dictionaries/LILO/Linguistics/UserDictionaryMigrationTool/Framewo rks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dylib
        /Applications/Adobe InDesign CC 2014/Plug-Ins/Dictionaries/LILO/Linguistics/UserDictionaryMigrationTool/Framewo rks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
        /Applications/Adobe InDesign CC 2014/Plug-Ins/Dictionaries/LILO/Linguistics/UserDictionaryMigrationTool/Framewo rks/ICUInternationalization.framework/Versions/4.0/libicui18n.40.0.dylib
        /Applications/Adobe InDesign CC 2014/Plug-Ins/Dictionaries/LILO/Linguistics/UserDictionaryMigrationTool/Framewo rks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
        /Applications/Microsoft Office 2011/Office/MicrosoftSetupUI.framework/Libraries/mbupgx.dylib
        /Applications/Microsoft Office 2011/Office/OPF.framework/Versions/14/Resources/OPF_Common.dylib
        /Applications/Microsoft Office 2011/Office/Visual Basic for Applications.framework/Versions/14/Frameworks/Fm20.dylib
        /Applications/Microsoft Office 2011/Office/Visual Basic for Applications.framework/Versions/14/Frameworks/MicrosoftOLE2TypesLib.dylib
        /Applications/Microsoft Office 2011/Office/Visual Basic for Applications.framework/Versions/14/Frameworks/RefEdit.dylib
        /Applications/Microsoft Office 2011/Office/Visual Basic for Applications.framework/Versions/14/Frameworks/RichEdit.dylib
        /Applications/ScanSnap/Lib/Intel/libFREngine.dylib
        /Applications/ScanSnap/Lib/PPC/libFREngine.dylib
        /Applications/ScanSnap/Lib/libABBYYWrapper.dylib
        /Applications/ScanSnap/Lib/libExtOCR.dylib
        /Applications/ScanSnap/Lib/libF5alocreCoreLib.dylib
        /Applications/ScanSnap/Lib/libIPP_dlib.dylib
        /Applications/ScanSnap/Lib/libMarkerOCR.dylib
        /Applications/ScanSnap/Lib/libOCRControl.dylib
        /Applications/ScanSnap/Lib/libf5alocrl.dylib
        /Applications/ScanSnap/Lib/libf5awzbin.dylib
        /Applications/ScanSnap/Lib/libf5awztbl.dylib
        /Applications/ScanSnap/Lib/libf5memctl.dylib
        /Applications/ScanSnap/Lib/pfocrwrp.dylib
        /Applications/Utilities/Adobe Application Manager/D6/D6Native.dylib
        /Applications/Utilities/Adobe Application Manager/DECore/ARKSelector.dylib
        /Applications/Utilities/Adobe Application Manager/DECore/DE5/Setup.dylib
        /Applications/Utilities/Adobe Application Manager/DECore/DE5/resources/libraries/ARKCmdCaps.dylib
        /Applications/Utilities/Adobe Application Manager/DECore/DE5/resources/libraries/ARKCmdFS.dylib
        /Applications/Utilities/Adobe Application Manager/DECore/DE5/resources/libraries/ARKEngine.dylib
        /Applications/Utilities/Adobe Application Manager/DECore/DE5/resources/libraries/AdobePIM.dylib
        /Applications/Utilities/Adobe Application Manager/DECore/DE6/Setup.dylib
        /Applications/Utilities/Adobe Application Manager/DECore/DE6/resources/libraries/ARKCmdCaps.dylib
        /Applications/Utilities/Adobe Application Manager/DECore/DE6/resources/libraries/ARKCmdFS.dylib
        /Applications/Utilities/Adobe Application Manager/DECore/DE6/resources/libraries/ARKEngine.dylib
        /Applications/Utilities/Adobe Application Manager/DECore/DE6/resources/libraries/AdobePIM.dylib
        /Applications/Utilities/Adobe Application Manager/DWA/DWANative.dylib
        /Applications/Utilities/Adobe Application Manager/LWA/PWANative.dylib
        /Applications/Utilities/Adobe Application Manager/LWA/adobe_caps.dylib
        /Applications/Utilities/Adobe Application Manager/LWA/adobe_oobelib.dylib
        /Applications/Utilities/Adobe Application Manager/LWA/adobe_upgrade.dylib
        /Applications/Utilities/Adobe Application Manager/P6/IMSLib.dylib
        /Applications/Utilities/Adobe Application Manager/P6/P6Native.dylib
        /Applications/Utilities/Adobe Application Manager/P6/VulcanBridge.dylib
        /Applications/Utilities/Adobe Application Manager/P6/VulcanMessage.dylib
        /Applications/Utilities/Adobe Application Manager/P6/adobe_oobelib.dylib
        /Applications/Utilities/Adobe Application Manager/P6/adobe_upgrade.dylib
        /Applications/Utilities/Adobe Application Manager/P6/axlib.dylib
        /Applications/Utilities/Adobe Application Manager/P7/IMSLib.dylib
        /Applications/Utilities/Adobe Application Manager/P7/P7Native.dylib
        /Applications/Utilities/Adobe Application Manager/P7/VulcanBridge.dylib
        /Applications/Utilities/Adobe Application Manager/P7/VulcanMessage4.dylib
        /Applications/Utilities/Adobe Application Manager/P7/VulcanMessage5.dylib
        /Applications/Utilities/Adobe Application Manager/P7/adobe_oobelib.dylib
        /Applications/Utilities/Adobe Application Manager/P7/adobe_upgrade.dylib
        /Applications/Utilities/Adobe Application Manager/P7/axlibv7.dylib
        /Applications/Utilities/Adobe Application Manager/UWA/UWANative.dylib
        /Applications/Utilities/Adobe Application Manager/core/AdobePIM.dylib
        /Applications/Utilities/Adobe Application Manager/core/switcher/CCM_UI.dylib
        /Applications/Utilities/Adobe Application Manager/core/switcher/DWA_UI.dylib
        /Applications/Utilities/Adobe Application Manager/core/switcher/LWA_UI.dylib
        /Applications/Utilities/Adobe Creative Cloud/ACC/C3ContainerBL.dylib
        /Applications/Utilities/Adobe Creative Cloud/AppsPanel/AppsPanelIL.dylib
        /Applications/Utilities/Adobe Creative Cloud/AssetsPanel/AssetsPanelBL.dylib
        /Applications/Utilities/Adobe Creative Cloud/BehancePanel/BehancePanelBL.dylib
        /Applications/Utilities/Adobe Creative Cloud/CEF/Chromium Embedded Framework.framework/Libraries/libcef.dylib
        /Applications/Utilities/Adobe Creative Cloud/CEF/libplugin_carbon_interpose.dylib
        /Applications/Utilities/Adobe Creative Cloud/CoreExt/ANSClient.dylib
        /Applications/Utilities/Adobe Creative Cloud/CoreExt/Analytics.dylib
        /Applications/Utilities/Adobe Creative Cloud/CoreExt/C3Prefs.dylib
        /Applications/Utilities/Adobe Creative Cloud/CoreExt/CmdCntr.dylib
        /Applications/Utilities/Adobe Creative Cloud/CoreExt/LocManager.dylib
        /Applications/Utilities/Adobe Creative Cloud/CoreExt/NotificationManager.dylib
        /Applications/Utilities/Adobe Creative Cloud/CoreExt/VulcanMessage5.dylib
        /Applications/Utilities/Adobe Creative Cloud/CoreExt/VulcanWrapper.dylib
        /Applications/Utilities/Adobe Creative Cloud/CoreSyncPlugins/ExchangePlugin/ExManCoreLib/Contents/Frameworks/libExManC oreLibCoreSync64.dylib
        /Applications/Utilities/Adobe Creative Cloud/ElevationManager/ElevationManager.dylib
        /Applications/Utilities/Adobe Creative Cloud/HEX/HEX.dylib
        /Applications/Utilities/Adobe Creative Cloud/HomePanel/HomePanelBL.dylib
        /Applications/Utilities/Adobe Creative Cloud/MarketPanel/MarketPanelBL.dylib
        /Applications/Utilities/Adobe Creative Cloud/NEX/NEX.dylib
        /Applications/Utilities/Adobe Creative Cloud/NEX/NEXUILibrary.dylib
        /Applications/Utilities/Adobe Creative Cloud/core/NXGCore.dylib
        /Applications/Utilities/Adobe Creative Cloud/utils/AdobePIM.dylib
        /Library/Application Support/Adobe/APE/3.4/adbeapecore.framework/Versions/A/Libraries/WebKit.dylib
        /Library/Application Support/Adobe/Acrobat 11 Helper Frameworks/adobe_oobelib/adobe_caps.dylib
        /Library/Application Support/Adobe/Acrobat 11 Helper Frameworks/adobe_oobelib/adobe_oobelib.dylib
        /Library/Application Support/Adobe/Acrobat 11 Helper Frameworks/adobe_oobelib/adobe_upgrade.dylib
        /Library/Application Support/Adobe/Acrobat 11 Helper Frameworks/adobe_oobelib/axlib.dylib
        /Library/Application Support/Adobe/CEPServiceManager4/lib/CSXS-Installer-Hook.dylib
        /Library/Application Support/Adobe/CEPServiceManager4/lib/ServiceManager-Launcher.dylib
        /Library/Application Support/Adobe/Installers/AdobeDigitalPublishingCC2014/CustomHooks.dylib
        /Library/Application Support/Aperture/Plug-Ins/Google/Analog Efex Pro 2/Analog Efex Pro 2.ApertureEdit/Contents/Helpers/breakpadUtilities.dylib
        /Library/Application Support/Aperture/Plug-Ins/Google/Analog Efex Pro 2/Analog Efex Pro 2.ApertureEdit/Contents/Resources/breakpadUtilities.dylib
        /Library/Application Support/Aperture/Plug-Ins/Google/Color Efex Pro 4/Color Efex Pro 4.ApertureEdit/Contents/Helpers/breakpadUtilities.dylib
        /Library/Application Support/Aperture/Plug-Ins/Google/Color Efex Pro 4/Color Efex Pro 4.ApertureEdit/Contents/Resources/breakpadUtilities.dylib
        /Library/Application Support/Aperture/Plug-Ins/Google/HDR Efex Pro 2/HDR Efex Pro 2.ApertureEdit/Contents/Helpers/breakpadUtilities.dylib
        /Library/Application Support/Aperture/Plug-Ins/Google/HDR Efex Pro 2/HDR Efex Pro 2.ApertureEdit/Contents/Resources/breakpadUtilities.dylib
        /Library/Application Support/Aperture/Plug-Ins/Google/Silver Efex Pro 2/Silver Efex Pro 2.ApertureEdit/Contents/Helpers/breakpadUtilities.dylib
        /Library/Application Support/Aperture/Plug-Ins/Google/Silver Efex Pro 2/Silver Efex Pro 2.ApertureEdit/Contents/Resources/breakpadUtilities.dylib
        /Library/Application Support/DxO Labs/dvpv1/libLoggerDll.dylib
        /Library/Application Support/DxO Labs/dvpv1/libPhotoshopPlugin-qt.dylib
        /Library/Application Support/Mozilla/Extensions/{UUID}/EMAILedotcom/components/WCFirefox_x86Extn.dyl ib
        /Library/Application Support/Mozilla/Extensions/{UUID}/EMAILedotcom/components/WCFirefox_x86_64Extn. dylib
        /Library/Application Support/X-Rite/Frameworks/XRiteDevice.framework/PlugIns/i1Pro.xrdevice/Contents /Frameworks/libi1Fun.dylib
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/WebKit.dylib
        /Users/USER/Library/Application Support/Firefox/Profiles/fhasqdkt.default/gmp-gmpopenh264/1.1/libgmpopenh264.dy lib
        /Users/USER/Library/Application Support/Firefox/Profiles/fhasqdkt.default/gmp-gmpopenh264/1.3/libgmpopenh264.dy lib
        /Users/USER/Library/Application Support/Google/Chrome/WidevineCDM/1.4.7.771/_platform_specific/mac_x64/libwidev inecdm.dylib
        /Users/USER/Library/Application Support/WebEx Folder/10_1524/cmcrypto-29.0.0.1.dylib
        /Users/USER/Library/Application Support/WebEx Folder/10_1524/libcrypto-0.1.0.6.dylib
        /Users/USER/Library/Application Support/WebEx Folder/10_1524/libssl-0.1.0.6.dylib
     

  • Show active current date and time in a Form continuously

    Hi,
    I am use Oracle Form 10.1.2 in Windows 2000.
    Can we show an active current date and time in a Form continuously?
    Perhaps in the main menu form.
    So the user can see the moving time, instantly when the time change (withour pushing F5 for refreshing the form)
    23-Sep-2006 06:00
    -- one minute later will show
    23-Sep-2006 06:01
    -- one minute later will show
    23-Sep-2006 06:02
    -- and so on
    Any help is appreciated.
    Many thanks,
    Buntoro

    Here is a quick, untested suggestion that sketches out one way of approaching this.
    If you only require updates every 60 seconds, you can use the TIMER built-in to create a repeating timer with a sixty-second delay. Each time the timer expires, update a text item to reflect the current time (obtained by selecting SYSDATE from DUAL on the database.)
    If the time is to be updated precisely when the minute changes, use two timers -- the same one described above, and a one-shot. Before you create either timer, run the following query:
       SELECT 60-TO_NUMBER(TO_CHAR(SYSDATE, 'ss')) FROM DUALThis will give the number of seconds remaining until the minute changes. Use this value to set the duration of the one-shot timer. When it expires, create the repeating sixty-second timer.
    There is a good possibility that this method will not be terribly precise, depending on factors like server resources, user load and network distance. A more network-friendly approach would be to use a JavaBean that relies on the PC's system timer to track the passage of time, and calculates server time based on the observed time difference between PC & server.
    Hope this helps,
    Eric Adamson
    Lansing, Michigan

Maybe you are looking for

  • DBCA can not use ASM for database storage due to following reason: Could no

    Hi I've a recently installed RAC11gR2(11.2.0.3) on HP-UX I installed Grid Infrastructure with grid user: Node1: # id grid uid=1100(grid) gid=1000(oinstall) groups=1031(dba),1021(asmdba) Node2: # id grid uid=1100(grid) gid=1000(oinstall) groups=1031(d

  • Tab between numeric controls?

    Hi there. I have several numeric controls on my front panel. When my vi becomes an .exe application, can I control which controls the cursor will go to if I hit the tab button? Right now when I hit the tab button, it goes to some random control on th

  • Need to reinstall acrobat after computer crash

    Need to reinstall acrobat after computer crash

  • Spotlight not finding files

    I just recently used ARD to send a Unix command to tar up some files on a bunch of lab computers and stick them into an administrative directory. I'm trying to use Spotlight to pull these files over to my computer, but I can't find them. I have set t

  • Reduce resolution with Quartz/ColorSync custom filter

    Must be missing something at this late hour, but it seems that a custom filter to reduce resolution can be configured in the Apple ColorSync Utility, but cannot be acknowleded in Apple Pages. Open the Apple ColorSync Utility, change view to Filters,