ICloud messages using rules do not get notifications

I use severall rules to redirect my iCloud mail messages to different folders and doing so i do not get notifications when I receive a message corresponding to a rule. Does anyone have the same problem and does anyone have an solution to this issue?

do you have call forwarding turned on in settings/phone?

Similar Messages

  • If you bought a used ipod and activation icloud is locked and can not get the owner how do you fix the ipod

    If you bought a used ipod and activation icloud is locked and can not get the owner how do you fix the ipod

    Hi Blands02!
    Here is an article that will help you troubleshoot this issue:
    Find My iPhone Activation Lock: Removing a device from a previous owner’s account
    http://support.apple.com/kb/ts4515
    Thanks for being a part of the Apple Support Communities!
    Cheers,
    Braden

  • Not getting notification e-mail in case of time based publication

    Hi,
    We are working with subscription service.
    We have one document subscribed by some users.
    Users are getting notification mail whenever there is any modification in that particular document.
    But when I am setting the lifetime property of the document.
    Users are not getting notification e-mail when that document get published or get expired.
    We checked in the Subscription Service.In the Allowed Admin Notification field we have to mention the proper event.
    But we don't know which event name to mention.
    It will be very helpful if any one let me know about it.
    We are using EP 7.0.
    Regards,
    Biswarup

    Hi Biswarup,
    From the official documentation http://help.sap.com/saphelp_nw04s/helpdata/en/e8/a9a76828b8dc469969ff450ec81ced/content.htm this definitely should work out of the box.
    Anyhow, what kind of subscription do you have chosen, immediate subscription or regular (daily, weekly, ...)?! If you are talking about an immediate subscription, try to alter this to a regular subscription. <i>Maybe</i> the change event which triggeres immediate subscriptions isn't thrown correctly by the TBP.
    But even in this case, please open an OSS message, as this should be considered as a bug (or at least as a lack of documentation on help.sap.com).
    Hope it helps
    Detlev

  • 0PS_C02 update rules are not getting activated when i install 4rm BI conten

    Hi All,
    In BI Dev. sys for PS module-  Project System - Dates 0PS_C02 cube-  update rules are not getting activated when i install from the business content and its giving the error  " IC=0PS_C02 IS=0PS_DAT_PRJ error when checking the update rules                Message no. RSAU461" .
    I deleted the inactive update rules(6 nos) and installed again from BI Content, then the same issue raising.
    Can anyone help me out as i stuck up with this to move to go-live.
    Thanks,
    Sakali

    Hi Vassu,
    here are some of the reasons for getting error in update rules activation.
    1. Check the formula or routines that are used in Update rules and check is there any syntax errors.
    2. check whether the mappings are correct or not.
    3. check the info objects which ur used for mapping are in active or not..
    (or) if the info object may be deleted which ur using for mappings.
    Thanks
    Sai Chand.

  • HT4972 i am not getting notification on most of my apps, e.g twitter and facebook...except i go to the app and refreshed manually. its an iphone 4 and running on ios5...i have gone through everything and its still the same..help please........I seem to be

    i am not getting notification on most of my apps, e.g twitter and facebook...except i go to the app and refreshed manually. its an iphone 4 and running on ios5...i have gone through everything and its still the same..help please........
    I seem to be having the same problem on my brand new iPhone 4S. Everything was working fine on the phone until I updated to iOS 5.1.1, but now I no longer receive push notifications for the native Mail app, Instagram, or the Facebook app. I still seem to be receiving SMS texts and iMessages via push, but the aforementioned apps need to be opened before I can receive missed notifications (having them open in the background seems to make no difference).
    Thanks for any help that you may provide!

    did you try notifications under settings? You can customize it as per your requirement, for each application.
    check this out: http://www.gottabemobile.com/2011/10/12/ios-5-how-to-use-notification-center/ or http://reviews.cnet.com/8301-19512_7-20120625-233/ios-5-notifications-a-deeper-l ook/

  • I am having a big problem. I am not getting notifications from snapchat and only snapchat. I've made sure every notification setting was on and it just won't work. I have also restored my phone and deleted the app and re-downloaded it multiple times. Help

    I am having a big problem. I am not getting notifications from snapchat and only snapchat. I've made sure every notification setting was on and it just won't work. I have also restored my phone and deleted the app and re-downloaded it multiple times. It just wont give me my notifications. Help please.

    Go to Settings > Privacy > Location Services.
    Turn off SnapChat.
    Go to Settings > Notification Center
    Turn off SnapChat.
    Restart the device.
    Go to Settings > Privacy > Location Services.
    Turn on SnapChat.
    Go to Settings > Notification Center
    Turn on SnapChat.
    Test the issue.

  • Rules are not getting fired - urgent

    Hello
    I am a newbie to the oracle rules engine (10.1.3) and introducing the rules engine in our architecture.
    I have started to fire a simple rule but looks like the rules are not getting fired.
    Here is my code snipped: I am setting a value in the fact if another value is null.
    ==========
    RuleDictionary rDict = RuleFactory.getRuleDictionary(RadiusConstants.RADIUS_REPOSITORY, RadiusConstants.RADIUS_DICTIONARY, RadiusConstants.DICTIONARY_VERSION);
    RuleSession ruleSession = new RuleSession();
    ruleSession.executeRuleset(rDict.dataModelRL());
    ruleSession.executeRuleset(rDict.ruleSetRL(taskName));
    RuleMessage ruleMessage = new RuleMessage();
    ruleSession.callFunctionWithArgument("assert", moduleVo);
    ruleSession.callFunction("run");
    ruleSession.callFunctionWithArgument("assert", moduleVo);
    // ruleSession.callFunctionWithArgument("assert", moduleVo);
    System.out.println(" Module Status " + moduleVo.getStatus());
    ========
    Any help is greatly appreciated. I am not sure if I am missing. I am suing rule author to create the rules.
    I am asserting the fact in the rules engine. Here is the RL file generated from the rule author.
    ==================
    ruleset MODULE_CREATE
    2.
    3. {
    4.
    5. rule ModuleId_Null
    6. {
    7. priority = 0;
    8. if
    9. (
    10. (
    11. fact gov.sec.radius.admin.service.module.vo.ModuleVO v0_ModuleVO && (
    12. (v0_ModuleVO.moduleId == null)))
    13. )
    14.
    15. {
    16. v0_ModuleVO.status = "P";
    17. assert(v0_ModuleVO);
    18. }
    19. } //end rule ModuleId_Null;
    20. }// end ruleset MODULE_CREATE
    =================
    thanks very much in advance
    Yugandhar

    You need to specify the ruleset or rulesets that should be run. If there is only one, you can do:
    ruleSesion.callFunctionWithArgument("run", taskName);
    or
    ruleSesion.callFunctionWithArgument("pushRuleset", taskName);
    ruleSession.callFunction("run");
    If there are multiple rulesets you want to run in order, then call pushRuleset in stack-order that you want their actions executed.

  • Since one week my iphone, after synchronisation, gives me error message 13 objects could not get synchronized, look in itunes for more information. however, I dont find any info there

    since one week my iphone, after synchronisation, gives me error message "13 objects could not get synchronized, look in itunes for more information." however, I dont find any info there, neither on the mac I synch with nor on the iphone

    Launch Disk Utility in /Utilities. Then, click on the volumes under the top-level disk. The one that has this listed on the bottom is the boot volume.

  • HT1386 i have recently lost my iphone. Both mine and my husbands phones are synced to same apple account and now his phone is recieving ll of my i messages and i am not getting them. How do i stop this?

    i have recently lost my iphone. Both mine and my husbands phones are synced to same apple account and now his phone is recieving ll of my i messages and i am not getting them. How do i stop this?

    Sounds like your sharing the same apple id.  settings - message -  send&receive - make sure the cell number is the default for both phones.

  • Not getting notifications for push emails

    I have an iPhone 5s with IOS 7.1.2 installed. I have a mail account set up pointing to my company's Exchange server. I will frequently not get notifications of new email until I open the email app on my phone. I won't get them when the email actually arrives in my mailbox (which is the purpose of push technology). Any ideas why I'm not getting these notifications? I have alerts turned on (banner, badge app icon, show in notification center, show preview), so ideally, I believe I have everything I need turned on. The account is also configured as 'Push' in the 'Fetch New Data' section of the menu.
    Thanks in advance for any help with this.

    Hi fletchi18,
    Welcome to Apple Support Communities.
    It sounds like there is an issue with your iPhone receiving push notifications from your companies Exchange server. The article linked below has a lot of great information and suggestions which will resolve most issues like the one you described.
    iOS: Troubleshooting Exchange ActiveSync 'Push' issues
    http://support.apple.com/kb/TS1868
    I hope this helps.
    -Jason

  • My Iphone 5 will not notify me when I have a text message. There is not banner notification, not sound, or vibration. I have to click on the message icon to even see if I have a text message.

    My Iphone 5 will not notify me when I have a text message. There is not banner notification, not sound, or vibration. I have to click on the message icon to even see if I have a text message.

    Settings app > Notification Center > Messages (you will need to check both the INCLUDE and DO NOT INCLUDE sections). Set the alerts you wish to see.

  • Not getting notifications on final WP 8.1 / Skype ...

    On a brand new retail version of Nokia Lumia 630 (dual sim variant), after installing updates to all apps, I am not able to get notifications from Skype. It does not update the live tile, does not display them in the Action Center, does not display toast.
    After clean boot, launching Skype, switching to start screen by either using Windows button or Back button, it does not work. It does not work when staying in the app and locking the phone by power button and no sounds are played even when in the app, visible on screen.
    In the settings in the Skype app itself both options for notifications (Skype and Messenger) are set to ON. User visibility is set to "available" and I am able to send and receive messages. In the action center, the Skype is set to display notifications everywhere, play sound and vibrate. Skype app is allowed to show notifications on the lock screen as well, and it is allowed to run in background under battery saver.
    I am a developer and know how to use the system and apps carefully to avoid as many bugs as possible, but I am unable to get this to work. It is a phone for my 60+ year old mom, and I really cannot imagine she would be able to figure it out .
    The only thing I did at some point after getting the phone was that I moved skype app to SD card and then back to phone by using Intelligent Storage app.
    Are you guys experience the same issue? Microsoft/Skype, please do something with this piece of sh*t, it is really horrible app since the WP7 and you were not able to improve it in 2 or 3 years? I would think that you can afford 2 or 3 good developers for building a client app on a platform nobody cares about .

    Tech support Chat
    Cyril G: at 10:21:37
    And this is a bug in the system
    don't worry we already forwarded it to our engineers and developers
    Cyril G: at 10:21:52
    To get this fix as soon as possible
    jason: at 10:22:40
    there is no known work-around? Why does it happen between particular contacts and not others?
    Cyril G: at 10:24:58
    as of now we cannot offer other work arounds because it is a known bug only happening on windows phone 8 and also to a particular contact
    Cyril G: at 10:25:15
    We just need to wait for the new update of the version
    Cyril G: at 10:25:26
    and all of the bug on this app will be fixed
    jason: at 10:26:40
    Someone needs to go put a message at the bottom of every community thread on this issue saying "this is a known issue with no work around which we are working on fixing". That would have saved me a LOT of time searching for a solution on my own.
    Cyril G: at 10:27:21
    We really apologize for the inconvenience
    Cyril G: at 10:27:44
    I will take note of your feedback
    Cyril G: at 10:28:31
    And as soon as possible we will will update in regards to releasing the new version of skype for Windows phone

  • Cosuming web service using consumer proxy - not getting the output

    Hello All,
    I am not getting the consumer proxy output structue filled though the web service is successfully executed. I did the following steps.
    1. Created a webservice form RFC BAPISDORDER_GETDETAILEDLIST
    2. Created a consumer proxy for the above created WSDL document.
    3. Tested the service by executing the proxy directly by feeding the input in the XML (sales document and partner view). it is working fine
    4. Created a program to access the consumer proxy by passing the input(same input as per XML). I am not getting the output in the proxy output structure ( but I can see the RFC is successfully executed and having the right values in the debugging mode).
    Is this the issue is due to the date fields (XML cannot consider a blank date )?
    Please note: the partner output table parameter in the bapi (output I am looking for ) is not having any date fields.
    Please help me to sort out this issue.
    Thanks,
    Gopi

    Hi Gopi,
    From your description, I assume you used the SE37 transaction's menu option Utilities -> More Utilities -> Create Web Service -> From the Function Module, to expose the BAPI concerned as a Web Service.
    If this is the case, then it is possible that you are falling foul of your SAP User ID not having the necessary Remote Function Call authorization to execute the BAPI.
    A prerequisite for successfully calling an RFC-enabled Function Module (which is what a BAPI is) is that the User ID used to call the function module must have the required RFC authorization (Authorization Object S_RFC).  For example, when calling function module BAPI_CUSTOMER_GET_ROOT, if the User ID lacks the requisite authorization in the target system, the following error message will be received by the Consuming application:
        User <User ID> has no RFC authorization for function group V02HBAPI.
    Notice, as you can see from the above message, RFC execution authorization is implemented at the Function Group level, not at the Function Module level.  In othere words, granting a user the authorization to a function group (authorization object S_RFC) enables the user to execute all RFC-enabled function modules contained within that function group.
    I am guessing the BAPI works for you in debug mode because you are not calling the BAPI remotely.
    Let me know if this helps.
    Best Regards,
    Andy.

  • My iMac does not start up as usual. Start up disk is full message and I do not get normal desk top. Please can you help? Thanks

    My iMac does not start up as usual. I now get a ' start up disk is full. You need to make space available on your start up disk by deleting files' message.
    I am able to key my log on password however I just get the purple galaxy screen with no desktop.
    If I try to use the keyboard I get a tone when pressing the keys.
    Has worked perfectly well up until I got this dusk full message.
    Can anyone help please. Thanks

    Your going to have to follow the Data Recovery Efforts page here to be able to access your drive and remove files without booting the computer.
    You can't open the iMac so you will need OS X booted from a external drive or via Firewire Target Disk Mode using another Mac.
    https://discussions.apple.com/docs/DOC-3172
    I would concentrate on Movies as this is a big source of large files to free up room.
    Read Storage Drive here
    https://discussions.apple.com/docs/DOC-3045
    If you not handy with computers, your going to have to hire a local service or provide the info above to someone you know who can, it's not easy.

  • Hi i am not getting notifications of facebook messanger in ios 7.0.2 and not even sound for facebook notification also

    hi i am not getting facebook messanger messages on my lock screen and no sound notification on my ios 7.0.2 ....i have to open application and check messages

    Slide up from the very bottom of your Home screen, this brings up "Control Center". Far top right is Orientation Lock...tap on/off.

Maybe you are looking for

  • How to remove the buttons in ALV GUI?

    Hi All, I am using the FM REUSE_ALV_GRID_DISPLAY for disaplying the ALV grid. i need how to remove these buttons ( mail word processing, loal file, Mail recipient,  ABC analysis, Microsoft Execl and Graphics ) from the ALV Gui? please give solution.

  • Vendor Invoice with Same Reference Number in two fiscal years.

    Vendor Invoice entered in SAP. DocumentNum 1600000612  Reference "47026723WA" Vendor Number "637278" Year "2008" DocumentNum 1600000667  Reference "47026723WA" Vendor Number "637278" Year "2009" We are thinking SAP will not allow/generate invoice wit

  • Digital Signature problem : Adobe forms

    Hi Experts, I am facing one issue in Adobe forms while implementing Digital Signature in one of the Custom Adobe form. I am following some steps as mentioned in the below link <link to blocked site removed by moderator> The problem is when I execute

  • Lion messed up display.

    Until yesterday, before updating to Lion, I could connect my computer to my Panasonic TV, and it would cover the whole screen. I forget what resolution it was at  since it worked and it looked fine (No, it was not 1200x800). No, I plug it in, and the

  • Xorg 6.8/7.0 ATI fglrx 8.22.5 Kernel-Independent Packages

    -------NOTICE------- Iphitus has now made available a lovely set of packages for ATI drivers and xorg 7 in the [testing] repo.  I have helped him put them together, and they run like a charm for me.  See this thread for more info. Since these package