Mac not wakening for scheduled task

I own an iMac 27inch with these  characteristics:
  Model Name:          iMac
  Model Identifier:          iMac12,2
  Processor Name:          Intel Core i7
  Processor Speed:          3,4 GHz
  Number of Processors:          1
  Total Number of Cores:          4
  L2 Cache (per Core):          256 KB
  L3 Cache:          8 MB
  Memory:          4 GB
  Boot ROM Version:          IM121.0047.B1F
  SMC Version (system):          1.72f2
OS is 10.9.1
After restoring data from Time Machine because of a harddisk failure ( all done by apple certified reseller) my mac doesn't wake up at night to perform backup, as well Time Machine as in Carbon copy cloner.
In fact it even goes to sleep during CCC activity.
With my previous harddisk all settings were as they are now, and 'all messages' in Console showed activity during the whole night with backups performing while I was asleep..... no problems of this kind!
Now I have to wake up the mac, it starts CCC, which slows the processor for other activities, so much that I hardly can use the mac for two - three hours.
Energy saver is set to defaults.
In console I find following lines:
12/01/14 00:04:35,523 iTunes[1368]: Entered:_AMMuxedDeviceDisconnected, mux-device:346
12/01/14 00:04:35,523 iTunes[1368]: Entered:__thr_AMMuxedDeviceDisconnected, mux-device:346
12/01/14 00:04:35,524 iTunes[1368]: tid:1e2e7 - Mux ID not found in mapping dictionary
12/01/14 00:04:35,524 iTunes[1368]: tid:1e2e7 - Can't handle disconnect with invalid ecid
12/01/14 00:04:54,731 com.apple.usbmuxd[26]: _SendAttachNotification Device 0c:74:c2:65:77:d9@fe80::e74:c2ff:fe65:77d9._apple-mobdev2._tcp.local. has already appeared on interface 5. Suppressing duplicate attach notification.
12/01/14 00:05:00,515 iTunes[1368]: Entered:_AMMuxedDeviceDisconnected, mux-device:347
12/01/14 00:05:00,515 iTunes[1368]: Entered:__thr_AMMuxedDeviceDisconnected, mux-device:347
12/01/14 00:05:00,516 iTunes[1368]: tid:11c73 - Mux ID not found in mapping dictionary
12/01/14 00:05:00,516 iTunes[1368]: tid:11c73 - Can't handle disconnect with invalid ecid
12/01/14 00:05:17,504 OsiriX[4431]: Bonjour service gone: <NSNetService 0x83e089b0> local. _dicom._tcp. iMac-van-Jean-Lu
12/01/14 00:05:22,000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x3400 ****
12/01/14 00:05:25,000 kernel[0]: 238960.132043: ar9300WowEnable: Skip PCIE WA programming
12/01/14 00:05:25,000 kernel[0]: Wake reason: RTC (Alarm)
12/01/14 00:05:25,000 kernel[0]: RTC: Maintenance 2014/1/11 23:56:15, sleep 2014/1/11 23:05:25
12/01/14 00:56:15,000 kernel[0]: Previous Sleep Cause: 5
12/01/14 00:56:15,000 kernel[0]: 238960.317701: ar9300WowWakeUp: Skip PCIE WA programming
12/01/14 00:56:15,000 kernel[0]: 238960.317731: setDISASSOC from ATH_INTERFACE_CLASS disconnectVap
CCC is programmed to start at 00:05 and does not appear here...
The lines
12/01/14 00:05:25,000 kernel[0]: Wake reason: RTC (Alarm)
12/01/14 00:05:25,000 kernel[0]: RTC: Maintenance 2014/1/11 23:56:15, sleep 2014/1/11 23:05:25
12/01/14 00:56:15,000 kernel[0]: Previous Sleep Cause: 5
and likes appear constantly during the night: about every hour.
Has anyone suggestions as to this behavior?
NOTE/ I am not more than a little bit acquainted wih IT: I am Dr Med. I gleaned over the years how to find what is above.  Please simple terms in your answer, for which many thanks.
Dr J.L.Liessens

Oracle Identity Manager typically is defined as being "Agentless". This means that the only means of getting (reconcile) information from a trusted source, is by scheduling a task to retrieve the information.
So if you want information from a trusted source to appear in OIM in real time, you should develop a sort of Agent that delivers the create, update or delete events in real time to OIM.
OIM contains enough API's to do so.
I can also think of another way, that would be to just create a external application that triggers a real time reconciliation process to retrieve the events from the trusted source.
As you can see none of this is out of the box (depending the type of connector though).

Similar Messages

  • Which solution is better for schedules task? Console application or windows service?

    I have a "MULTI-LEVEL" XML file that I will be getting on daily basis and I want to accomplish following tasks:
    1) I have to read and parse the "MULTI-LEVEL" XML data
    2) Then I have to set or create some kind of .net service (c#) that read the xml and parse the data once a day (daily)?
    3) Now I have SOAP service from other software where I want to feed this XML data to. The schedules service will compare the XML data with software data and update (or add) based on the comparision.
    For this task, I come to conclusion that there are 2 best ways to do this:
    1) Create a console application and use windows task scheduler to run it everyday
    2) Create a windows service that runs in the background
    Which is a better way (or reliable)  solution to do this task? Please advise

    There are several things to keep in mind when writing an app that is designed to run without a user logged in. One of the most common mistakes is requiring some sort of user input.  Since the task will run without user intervention you don't want
    any sort of calls to Console.ReadLine, MessageBox.Show, etc.  They will cause the task to freeze and eventually need to be terminated.  You also don't want to rely on any sort of desktop apps running since a user may or may not be logged on at the
    time.
    Also be aware that a task can be scheduled to run under any user context.  As such you either need to ensure it runs under an account with sufficient privileges or that your app needs no special privileges.  You mentioned you tried to run it from
    bin\debug but you most likely have your project under your Documents directory.  Only you would have permissions to that folder and therefore will run into issues if the task is run under a different context.  You also mentioned you put it in the
    C:\ but users don't have write privileges to that folder and therefore if you tried to write a file out it would fail. If you need to read/write files then you should pick a common location that all users have access to or at least the one that will run the
    scheduled task. Be aware that, by default, Task Scheduler will not run a task elevated. You need to check the option to run elevated when you configure the user to run the task under.
    One of the key things to ensure you do with a task is verify it is working properly as a normal app.  You should also ensure that you have good logging so that if it does fail you can trace down the failure more easily.  One common thing that people
    tend to do in console apps is put a try-catch around the main function and display a message if an unhandled exception occurs. This is going to cause problems in a task.  Simply log the exception and rethrow it so Task Scheduler will flag the run as a
    failure.
    If you still cannot figure out why your task is failing then please add some logging and then tell us what code is being run at the time and what the failure is.

  • Using Automator for scheduled tasks for my media folder.

    Anyone with automator experience that are able to help me set up a scheduled task for my media folder, using for example iCal?
    I have 2 programs for cleaning and adding metadata for my media folder:
    iFlicks and iDentify.
    And I want them to scheduled clean new files in my folder. iFlicks first, and iDentify next.
    Complicated? Doable?

    If you are not too keen on running those commands you might want to try http://www.igetter.net/iGetter.html This download manager seems to allow the scheduled downloading that you need. I think you would have to go to the Apple site and find the url for the standalone updaters to find the link after Software Update identifies them. Then use this program to schedule the downloads. Sometimes those seem more stable anyway.
    The program us shareware. It appears from the description that the program remains fully functional but puts up a nag screen if the program has not been registered.

  • Exchange 2010 GAL Export script working from EMS but not as a scheduled task

    I have been asked to get a script together to export the GAL on an Exchange 2010 server and then email it to a manager. I have been playing it with days, and have pruned it to the very minimum to at least try and get it working before improving it. At the
    moment I have the text as below:
    Del c:\GALexport.csv
    Get-Recipient -ResultSize unlimited | where {$_.HiddenFromAddressListsEnabled -eq $false} | Select DisplayName,PrimarySMTPAddress,sAMAccountName,alias | Export-Csv "c:\GALexport.csv"
    This works just fine in Exchange Management Shell and deletes the previous report before creating a new one. However, when I set it up as a scheulded task, it does nothing.
    The task is set up as follows:
    Action - Start a Program
    Program/ Script C:\Windows\System32\WindowsPowerShell\v1.0\PowerShell.exe
    Add arguments -version 2.0 -NonInteractive -WindowStyle Hidden -command ". 'C:\Program Files\Microsoft\Exchange Server\V14\bin\RemoteExchange.ps1'; Connect-ExchangeServer -auto; d:\Scripts\GalExportReport.ps1"
    This is set to run under my administrator account with the highest privileges and I have the logon as batch right.
    Unfortunately, when I run it as a scheduled task, nothing happens. The last run result is (0x0) and in the history it says 'task completed', but no report is produced. Can anyone advise please?

    Does it delete the c:\GALexport.csv file? If not, then its not even executing the ps1 script...
    - Open cmd prompt and run below command to confirm that there isn't any typo or any other small error...
    C:\Windows\System32\WindowsPowerShell\v1.0\PowerShell.exe -version
    2.0 -NonInteractive -WindowStyle Hidden -command ". 'C:\Program Files\Microsoft\Exchange Server\V14\bin\RemoteExchange.ps1'; Connect-ExchangeServer -auto; d:\Scripts\GalExportReport.ps1"
    - If above works then something wrong with task scheduler configuration...
    Blog |
    Get Your Exchange Powershell Tip of the Day from here

  • Document flow is not updated for Scheduling agreement

    Hi Gurus,
    Can you please advise on the below issue..
    Some deliveries created with reference of schedule agreement are not displayed in scheduling agreement in forecast delivery schedule under delivery tab and as well as not updated in document flow for VBFA table.
    There are two ways to create delivery with reference of Scheduling agreement , 1)  Create Delivery order (Order Type   : TAM) with reference of SA, then delivery for TAM order.
    2) we can add the line item in existing TAM order with reference of SA .
    Advance thanks for your valid points.
    Best regards,
    Venkat.

    Hi Ram,
    Thanks for the reply, there is no issue in copy control settings.
    Best regards,
    Venkat.

  • Header text not printed for scheduling agreement

    Hi All,
    I have issue with header text print out for scheduling agreement (SA).
    In SA when I am manually writing some note and then taking print out, system is giving me correct output with maual note.
    I have one standard text (ST) which I need to be printed in evry SA, so in SPRO I created new head text for vendor and in copying rule for text for SA, I created linkage of SA header text with Vendor head text.
    In vendor master, I inserted ST in newly created vendor header text.
    So now when ever I create new SA for vendor system will determin header text from vendor master.
    Now after creating SA when I check the SA, I am able to my ST in SA, but at the time of print out this ST in not printing.
    Please let me know what could be the reson.
    Regards,
    Sameer

    I dont understand about what you mean by expand.
    When you a print PO, PO text  (header or item) it will check to the configuration setting.
    The system didnt care if its adopted from vendor master or info record, or whatever you make in the copying rule.
    In your case : you create a standard text then it get copied into PO , then you set the standard text to the PO for print out, example the standard text : word is
    "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
    Then in the PO the text appear will be like below(the same, because it get copied)
    "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
    If you configure it in define text for SA, then it the print out it will also (the same)
    "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
    So what text need to expand?

  • Approval process not waiting for approval tasks to be completed

    Hi All,
    I created an Approval process for a resource. When a request is created for this resource an approval task is assigned to the manager of the user.
    Before the approval task is completed by the manager the resource is getting provisioned. Is there something I am missing out here. Any suggestions about what I am missing here.
    Thanks

    The statuses shown are sometimes misleeding. There is a status for when the approval starts. There is a status when the Standard Approval process completes (this is normally set to auto complete). There there is a status for when the object specific approval starts, a status for if any of the approvals have been completed, and then one for when the whole request is completed. These don't neccessarily provide you with a sure answer to the status of the request.
    I think you need to disregard the statuses for now, and just configure the approval tasks as you intend to do so. If you do not want the standard approval to be required, set the Approve task to use the auto complete adapter. Then create an approval process specific to your resource object, and set it to the default. Then create an approval task and make to uncheck the "conditional" checkbox so that it always runs. Set your assignments appropriately, and you will be done. The provisioning will not start until all tasks are completed with a complete status for the tasks within.
    If you want to know the statuses between steps, then check those between all of the steps.
    -Kevin

  • Custom ribbon button does not show for a Tasks list

    I created a simple app using Visual Studio 2012 to add a custom ribbon button for a tasks list. After deploying the app to the SharePoint online, the button does not appear on the ribbon. The exact same button gets displayed properly
    when added to the ribbon for a custom list.  The elements file with the location of the button gets generated, so I can't imagine it would be wrong, but just in case, this is what I have:
    <CustomAction Location="CommandUI.Ribbon"....
    <CommandUIDefinition Location="Ribbon.ListItem.Actions.Controls._children">...
    Any help is greatly appreciated.
    One more thing, if I add this button using SharePoint Designer 2013, the button does not get displayed either. I have a feeling it might be problem with the Tasks list?
    Thanks

    Hi Danny,
    The button needs to be displayed only for one specific list. And as I mentioned, the elements file for the ribbon button was generated by VS, here is the content:
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <CustomAction Id="02aa4c3b-bb73-4dfa-989c-d63a9591dcee.RibbonCustomAction" RegistrationType="List" RegistrationId="{$ListId:Lists/Projects;}" Location="CommandUI.Ribbon" Sequence="10001" Title="Create Project Site">
    <CommandUIExtension>
    <CommandUIDefinitions>
    <CommandUIDefinition Location="Ribbon.ListItem.Actions.Controls._children">
    <Button Id="Ribbon.ListItem.Actions.RibbonCustomActionButton" Alt="Create Project Site" Sequence="100" Command="Invoke_RibbonCustomActionButtonRequest" LabelText="Create Project Site" TemplateAlias="o1" Image32by32="_layouts/15/images/placeholder32x32.png" Image16by16="_layouts/15/images/placeholder16x16.png" />
    </CommandUIDefinition>
    </CommandUIDefinitions>
    <CommandUIHandlers>
    <CommandUIHandler Command="Invoke_RibbonCustomActionButtonRequest" CommandAction="~remoteAppUrl/Pages/Default.aspx?{StandardTokens}&SPListItemId={ItemId}&SPListId={ListId}"/>
    </CommandUIHandlers>
    </CommandUIExtension >
    </CustomAction>
    </Elements>
    If the same button is added for a custom (not a Tasks) list, the button shows up fine.
    Thanks

  • Extended Notification not working for Dialog Task with agent assignment

    Hi Friends,
    I have an issue where I have a user decision step and a sub workflow contains a dialog task with agent assignment.
    Extended notification is configured properly and is working properly for user decision step but its not working for the dialog task created as an activity.
    Batch jobs are configured to run report SWN_SELSEN.
    I was checking SDN and found this discussion handy :
    http://help.sap.com/saphelp_nw73ehp1/helpdata/en/4f/3bed495cc018c8e10000000a42189e/content.htm
    One thing that wonders me is that notifications show up in SOST 4-5 seconds before the user decision step starts execution.
    See screenshot from SOST and WF log.
    SOST log :
    2 questions here: Why is notification not being sent for Dialog task?
                              Why is user decision notification being sent that early even before the User decision task starts execution?
    Please provide your valuable inputs.
    Regards,
    Sandip

    An activity step with agents is supported by the extended notifications if it is a decision task or not, I have used it many times and it works well just no approval/rejection links if it's not a decision task.
    From your screenshot you can see that a mail has been created and is found in SOST, usually this cases are problems with the mail server or connection to it, check the mail settings in the SMTP node in transaction SCOT, also check with mail server team if there is a block to/from the SAP server.

  • Masked attribute for Schedule Task paramter

    Hello,
    I have a custom schedule task and it takes some parameters like FilePath, Username, and password.
    Now, after I have created my job, in parameters I want the Password field to be masked.
    Does changing the parameter encrypted ="true" makes this masked or it will encrypt the field at run time and in code I have to decrypt that.
    <string-param required="true" encrypted="true" helpText="AdminPassword">AdminPassword</string-param>
    Please suggest any for this.
    Thanks
    Sjit

    Ideally It should be masked. But, I don't think this is happening. And there is no other way to mask as well
    Oracle doc given below info
    encrypted:
    By default, it has a value of false and this can take a value of either true or false.
    If the value of the encrypted attribute is true, then the entered value for the parameter at run time is stored in encrypted form.
    If the value of the required attribute is false, then the entered value for the parameter at run time is stored in plain text.
    So the given value won't be masked rather stored in encrypted form at run time.

  • Find My Mac not working for a non-admin account

    I would appreciate some advice, or comment, on what I perceive is "Find my Mac" not working.
    I use a Mac Mini (late 2009) to run my home media; it on 7/24, connected to a drobo drive and is running the latest Mac OX X Lion. I did a complete erase and install of the OS, and the recovery partition IS there.
    I use an auto-login account, but with no administrative privileges. There is no monitor, keyboard or mouse connected to it, but in case it gets stolen, I want to find it.
    When I log in with an admin account, I can turn on Find My Mac, under icloud prefs. When I relog into the normal user account, this preference is greyed out, and says "Needs administrative authorization".
    So, is Find my Mac running, cause I turned it on with an admin account, or not?
    If no, how do I make sure it is always running?
    thanks

    These are the notes of the steps I took which finally got my MBP to appear in FMM:
    I clicked on the MBP remove device-> I took the MBP Wi-Fi off line-> I went to iCloud Pref's, unchecked find my Mac-> turned Wi-Fi back on-> went to iCloud pref's re-checked 'Find my Mac'-> went online to iCloud.com, selected the MBP, which had found it's location. I sent a message and sound to the MBP from the Mac mini, which instantly came up on the MBP.
    SO, eventually my MBP 'Find my Mac' is working.

  • EDI Message not Transmitted for Scheduling Agreement

    Hi guys!
    Does anybody know what should I check to see why the EDI message for a delivery line in the scheduling agreement has not been transmitted? Would really save me
    Regards,
    Ileana

    Hi
    First check the message whether it has been processed properly or not . goto ME39 , Check the message(Shift +F1)
    if the message is in red, check the processing log,
    If the message is in yellow , process the same using ME9E
    If the message is in grren means the Idoc's are generated.
    Now got Transaction WE05 & Check the IDoc's giving the Basic type  - DELFOR02
    Give from & to dates based on the rpocessing date of the message.
    Here check the Idoc's are in Red or green . If in red check the Message in the Status.
    Thanks & Regards
    Kishore

  • Custom field not visible for Project task in PPM 5.0

    Hi,
    I have done the SPRO configuration required to add a custom field in Project task
    1. Enhance DB table. added  the field in structure DPR_TS_TASK_EXTENDED_ATTR, object type TTO
    2. Define field groups for custom fields
    3. Set up field control.
    The custom field tab has come after making SPRO changes. But the field is not visible on the tab.
    Please let me know if I am missing any steps.
    Thanks,
    Yomesh

    Dear Yomesh;
    You have to config the view or subview at:
    SAP Portfolio and Project Management -> Portfolio Management -> Global Customizing -> Global Field Settings -> Assign Fields to Views/Subviews
    Here try to to setup the view that you want to see the custom field.
    Hope you help you.
    Regards.
    Mariano

  • Office for mac not working for all users after migration

    Recently purchased macbook retina display and used migration assistant to move everything over from a macbook pro 17" (late 2011). After the migration my login (admin rights) has no problem on the new macbook, but my wife login cannot use the Office for Mac without being asked to do an install.
    Problem is, the version we have goes through the install and then asks to 'register' the product and the version is no longer supported so you cannot register, therefor the program will not run.
    Am I missing something here? Everything still works on both of our sign in's on the old macbook pro, and on the new macbook retina, office works on my sign in only.
    The original install was a download version, so there are no 'disks' to do a re-install.
    Any suggestions?

    You need Acrobat 7.1
    Is your Office 2004 up to date?

  • Exchange 2013 CU3 Retention Policy Not working for Calendar & Tasks

    We are currently on Exchange 2013 CU3 with Online Archiving Enabled for the user
    Default policy is set to move  all the items in mailbox which are  older than 30 days to online archive mailbox.
    Calendar and Tasks Items are also getting archived alongwith other Outlook items from Inbox,Deleted Items etc
    Followed Technet website and created RPT for Calendar and Tasks with retention disabled
    Still DPT takes precedence and move all the items under Calendar and Task to Online Archive Mailbox

    Hi Sam,
    I recommend you refer to the following article, despite this for Exchange 2010, however the same applies to exhcnage 2013:
    Prevent archiving of items in a default folder in Exchange 2010
    To prevent the <acronym title="Default Policy Tag">DPT</acronym> from being applied to a default folder, you can create a disabled <acronym title="Retention Policy Tag">RPT</acronym> for that folder (or disable
    any existing RPT for that folder). The Managed Folder Assistant, a mailbox assistant that processes mailbox items and applies retention policies, does not apply the
    retention action of a disabled tag. Since the item/folder still has a tag, it's not considered untagged and the DPT isn't applied to it.
    Why are items in the Notes folder still archived?
    If you create a disabled <acronym title="Retention Policy Tag">RPT</acronym> for the
    Notes folder, you'll see items in that folder are not deleted, but they do continue to be moved to the archive! Why does this happen? How do you prevent it?
    It's important to understand that:
    A retention policy can have a <acronym title="Default Policy Tag">DPT</acronym> to
    archive items (using the Move to Archive retention action) and a DPT to
    delete items (using the Delete and Allow Recovery or
    Permanently Delete retention actions). Both apply to untagged items.
    The move and delete actions are exclusive of each other. Mailbox folders and messages can have both types of tags applied - an archive tag and a delete tag. It's not an either/or proposition.
    If you create a disabled RPT for the Notes folder to not delete items, the archive DPT for the mailbox would still apply and move items.
    When it comes to archiving, there's only one archive policy that administrators can enforce – the <acronym title="Default Policy Tag">DPT</acronym> with 'Move to archive' action.
    You can't create a <acronym title="Retention Policy Tag">RPT</acronym> with the 'Move to archive' action. This rules out using the disabled RPT approach to prevent items from being moved.
    Best regards,
    Niko Cheng
    TechNet Community Support

Maybe you are looking for

  • Hr-abap report cateogeory

    hi all, could u pls help me on my thread. my problem is how to create our own report cateogeory . i want to create my own report cateogeory and assign it to pnp ldb. and i want only two fields what i create earlier in the selection screen.           

  • Work Around for a Panasonic AJ-D750 deck

    I recently upgraded to FCP 5 from 4.5. Since the upgrade I can not digitize from my Panasonic AJ-D750 DVC Pro deck, RS422 connection. Does anyone know a work around for this? Any information would be great!

  • Firefox 5 won't access the Internet

    Installed Firefox 5.0 and it now will not access the Internet. I tried uninstalling my earlier versions and re-installing the new version with no better results. Keeps saying "Problem loading page" I have no problem loading pages with IE.

  • IPod nano 6G, cracked screen

    My iPod fell out of my pocket and hit the pavement perfectly to crack the screen.  (For reference, I listen to my device in the car and remove it when entering a store/business/etc to prevent theft.)  I understand it is not covered under warranty, an

  • While Executing the Sp in Query manager Getting Error.

    hi. i need a small information. I Created a small table in Sql  ccode varchar no 250 cname varchar no 250 ctype varchar no 250 My Stored Procedure at  Sql i am inserting values in to the temporary table by using below one after passing the parameter