HT201493 why is the notify me feature not work sometimes

some times the notify me feature is avalable for some ppl and othere not?

They have to update to ios6 for it to work all devices have to have ios6 to work with the new notify me to work.
You can tell if the button on your device  is shaded out they need to update on there end.

Similar Messages

  • Why has the "resume play" feature never worked on rented on demand movies.

    I've had Fios for over 2 years now and have been generally happy, but there is one feature that is driving me and my family crazy! The resume play on rented movies does not work, has never worked, and from reading these forums Verizon has no fix for it. It's been a known issue and it boggles my mind that it can't be fixed. When will there be a fix?

    This problem seems to have been known to Verizon for several years.  I just completed a Live Chat with a Verizon representative and was told "This should be resolve in few days.".    Is this the standard response Verizon has been providing their customers over the past few years when questioned about the problem?  When I questioned why it's taken so long, I was told "It was resolved in between but there were few settings that were still suppose to be changed and they are working on it. "  If Verizon spent as much time actually fixing the problem as they have in addressing all the inquiries that have been made about the problem, this issue, most likely, could have been resolved a long time ago.  Enough excuses.  Let's have a solution!

  • Why does the address/status bar not work?

    After updating to 9.0.1, my status bar will not work, or my address bar. If I try to type in anything and press enter into the address bar, nothing happens. Also, I cannot press forward or back as they always remain grayed out. The only way I can get to a website is by pressing home, which is thankfully google. I have to google the url to go to it.
    Remembering now actually, I copied all the folders from the main firefox folder and pasted them into a new install of firefox (I had this problem actually before firefox updated). I was hoping that copying these folders would save my addons and etc. after I downloaded a new firefox and re-installed it. I put the folders back and firefox is still messed up :/
    I just want it to work more Q_Q

    That issue can be caused by an extension that isn't working properly.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode

  • My iMessage and facetime is not working after updating to ios 7... My ipad works perfectly and it's the same apple id.  Any answers or reasons why on the iPhone 5 is not working???

    My iMessage and facetime is not working after updating to ios 7...
    Any answers on how to fix it?  I've tried to restart, restore connected to itunes, but nothing.

    ACTIVATING FACETIME AND IMESSAGES
    Activating Facetime and Imessages on your phone requires the ability to send SMS messages and depending upon where you are that might be an international SMS.  Check with your carrier to see if your plan supports sending of international SMS messages.  If you are having trouble activating Facetime or Imessages turn them both off on your device and reset the device (Hold down the Sleep/Wake button and the home button together until the apple logo appears (ignore the ON/OFF slider) then let both buttons go and wait for device to restart (no data will be lost)).  Wait for the device to restart and wait a minute and turn Facetime and imessage back on and wait for activation.  If that does not fix things read the following articles:
    http://support.apple.com/kb/TS4268
    http://support.apple.com/kb/ts3367

  • Why is the map in uae not working

    hi
    In UAE we face problems with maps. we can select one place but cannot go their (direction not working). Another this is Passbook doesn't work in UAE

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Why is the GROUP BY clause not working in my Query?

    Dear All,
    Below is the Query for a Summary Debtors Aged Analysis.
    The GROUP BY clause does not seem to be working.
    The Query returns all the unpaid invoices, instead of a single total row for each Customer.
    If a Customer X has 10 unpaid invoices, 10 rows are displayed - one for each invoice.
    I was expecting only 1 row for Customer X, 1 for Customer Y, etc.
    This is what GROUP BY is supposed to do, but it is not doing its work.
    What has gone wrong?
    Thanks
    Leon Lai
    Here's my Query:
    declare @taxdt datetime
    set @taxdt
    /*select 1 from jdt1 t0 where t0.TaxDate*/ = [%1]
    SELECT
    CASE
                 WHEN T0.Account = 1220101 THEN 'Prim Cust'
                 WHEN T0.Account = 1220102 THEN 'Fgn Cust'
                 WHEN T0.Account = 1220103 THEN 'Local Cust'
                 WHEN T0.Account = 1220104 THEN 'Staff Loan' 
                 WHEN T0.Account = 1220105 THEN 'Dep with TP'
                 WHEN T0.Account = 1220106 THEN 'Adv to Cust'
                 WHEN T0.Account = 1220108 THEN 'Sund Drs'
                 ELSE 'Error ! ! !'
    END AS 'Control A/c',
    T1.CardCode AS 'BP Code',
    T2.Notes2 AS 'BP Name',
    SUM ((T0.Debit - T0.Credit)) AS 'Orig. Rs',       
    SUM ((T0.BalDueDeb - T0.BalDueCred)) AS 'Bal. Rs',     
    ((SELECT SUM(T0.BalDueDeb) - Sum(T0.BalDueCred)
        WHERE DateDiff(mm, T0.TaxDate, @taxdt) = 1))    
        AS '1 Mth Ago' 
    /* Similarly for other age brackets*/
    FROM JDT1 T0
    INNER JOIN OCRD T1 ON T0.ShortName = T1.CardCode
    LEFT OUTER JOIN OCPR T2 ON T1.CardCode = T2.Cardcode
    LEFT OUTER JOIN OJDT T3 ON T0.TransID = T3.TransID
    LEFT OUTER JOIN OINV  T4 ON T3.TransID = T4.TransID
    LEFT OUTER JOIN ORIN  T5 ON T3.TransID = T5.TransID
    WHERE
    T1.CardType = 'C'
    and (Balance) != 0
    and (T0.BalDueDeb - T0.BalDueCred) != 0
    GROUP BY T0.Account, T1.CardCode, T2.Notes2, T0.TaxDate

    Dear Neetu,
    Thanks for your reply.
    This Query is a modification of the Query you posted in SAP B1 SQL TIPS & TRICKS
    http://wiki.sdn.sap.com/wiki/display/B1/SAPB1SQLB-FNDebtorsAgingReportbydate
    So, maybe instead of referring to my Query, let's refer to yours. It may be easier for you to understand me.
    Once I understand the problem, I can adapt your query to suit my requirements
    So, let's start with a clean slate:
    The Query you have posted is for a DETAILED Debtors Aging Report.
    This lists all outstanding invoices, and ages them in the Age Brackets.
    What I want is a SUMMARY Debtors Aging Report.
    This will give the total amount owed by each Customer, and this amount is broken down in the Age Bracket Columns
    There will be a single row listed for each customer, something like this:
    Customer     Total Due     Current      1 Mth          2 Mth         3 Mth  etc
    Alfred       500,000       300,000       200,000
    Charles      800,000                     100,000       300,000       400,000
    How can you modify your query to make it become a Summary Report (1 line for each customer even if he has many invoices)?
    Thanks
    Leon Lai
    Here's your code
    SELECT T1.CardCode, T1.CardName, T1.CreditLine, T0.RefDate, T0.Ref1 'Document Number',
         CASE  WHEN T0.TransType=13 THEN 'Invoice'
              WHEN T0.TransType=14 THEN 'Credit Note'
              WHEN T0.TransType=30 THEN 'Journal'
              WHEN T0.TransType=24 THEN 'Receipt'
              END AS 'Document Type',
         T0.DueDate, (T0.Debit- T0.Credit) 'Balance'
         ,ISNULL((SELECT T0.Debit-T0.Credit WHERE DateDiff(day, T0.DueDate,'[%1]')<=-1),0) 'Future'
         ,ISNULL((SELECT T0.Debit-T0.Credit WHERE DateDiff(day, T0.DueDate,'[%1]')>=0 and DateDiff(day, T0.DueDate,'[%1]')<=30),0) 'Current'
         ,ISNULL((SELECT T0.Debit-T0.Credit WHERE DateDiff(day, T0.DueDate,'[%1]')>30 and DateDiff(day, T0.DueDate,'[%1]')<=60),0) '31-60 Days'
         ,ISNULL((SELECT T0.Debit-T0.Credit WHERE DateDiff(day, T0.DueDate,'[%1]')>60 and DateDiff(day, T0.DueDate,'[%1]')<=90),0) '61-90 Days'
         ,ISNULL((SELECT T0.Debit-T0.Credit WHERE DateDiff(day, T0.DueDate,'[%1]')>90 and DateDiff(day, T0.DueDate,'[%1]')<=120),0) '91-120 Days'
         ,ISNULL((SELECT T0.Debit-T0.Credit WHERE DateDiff(day, T0.DueDate,'[%1]')>=121),0) '121+ Days'
    FROM JDT1 T0 INNER JOIN OCRD T1 ON T0.ShortName = T1.CardCode
    WHERE (T0.MthDate IS NULL OR T0.MthDate > [%1]) AND T0.RefDate <= [%1] AND T1.CardType = 'C'
    ORDER BY T1.CardCode, T0.DueDate, T0.Ref1

  • Why is the Watch ESPN app not working?

    All I get is that it is unavailable

    Yep, same here...ESPN app on the Apple TV quit today May 26 for me.  It just says 'not available, try again later'.  Have not found the answer anywhere on the web.  So I have to pull it up on the iPad ESPN app and send it to the Apple TV via Airplay.  This works great, full screen picture just as sharp.  So, uh, I guess I don't care if they fix it.  Except I can't use the iPad for anything else while I am watching the tennis games in Paris this week.  If I had to blame someone, I would select the blamee du jour.  Vlad.  Vlad is responsible for everything bad, everywhere.

  • Why is the a:visited style not working?

    Hello.  I have created a horizontal menu and would like the a:visited text and background colors to be the reverse of a:link.  The a:link and the a:hover work well.  But when I make the a: visited color and background color different from a:link, all of the links text turn black and the background turns white for all of them.  The links were not cicked on.  But when a link was clicked on, a thin border of the text color appears around the box surrounding the link that was clicked on.  I would appreciate knowing how to correct this.  I have included the following styling link information that is in the head and body of the the html and css documents :
    html document:                                                                                css document:
    ul {                                                                                                     .navigation {
        list-style-type: none;                                                                           width:   960px;
        text-align: right;                                                                                   height:    50px;
        padding-top: 6px;                                                                               margin-top:  50px;
        padding-bottom: 6px;                                                                         font-size: 18px;
                                                                                                                     z-index: 5     
    li {
        display: inline;
    a:link {
        color:#FFF;
        text-decoration: none;
        background-color:#000;
        text-align: center;
        padding: 0px;
    a:visited {
        text-decoration: none;
        color: #000;
        background-color: #FFF;
    a:hover {
        text-decoration: none;
        color:#000;
        background-color:#FFF;
    a:active {
        text-decoration: none;
        color: #FFFFFF;
        background-color: #000;
    </head>
    <body>                   
    <div class="navigation">
        <ul>
            <li><a href="index.html" target="_self">HOME</a></li>
            <li><a href="digital.html" target="_self">DIGITAL</a></li>
            <li><a href="drawing.html" target="_self">DRAWING</a></li>
            <li><a href="painting.html" target="_self">PAINTING</a></li>
            <li><a href="about.html" target="_self">ABOUT</a></li></ul>
    </div>
    </body>
    Thank you.

    You have to clear your browser history/cache or all of the links you have visited in the past (while previewing) will show as the visited style which is a white background and black text.

  • Why is the letter p is not working on my iPhone 4s?

    Using the keyboard, the letter "p" does work when the iPhone is held in the vertical position.

    Does the area the p letter is located on work with touch when the keyboard is not there?

  • Does the bluetooth headphone feature not work at this time?

    I have tried 2 different bluetooth headphones. They work with iPhone and iPod, but not the PowerBook.
    My PowerBook recognizes and pairs with the headphones, but won't connect. Am I missing a step?

    Hello -
    I had a set of bluetooth headphones - a while back. And I was able to make them work. Though, they aren't as great as you might think. My audio quality was "okay" at best. And you can also only have one bluetooth device hooked up at a time (I prefer to have a mouse!)
    You may need to go into the System Prefs and set where the audio output is going to. I do not remember if I had to this but it seems a logical step as I sometimes need to this on my PowerBook when I hookup to new speakers.
    - Erin -

  • Why is the New Flash Player not working on Firefox?

    I have recently updated my Flash Player and since then the Videos are no longer running on Firefox..
    Is there something that I have done Wrong?
    What can be done about it?
    Thanks
    Manager Sales
    www.djewels.org

    Tools>Add-ons
    Make sure it's:
    1. Enabled
    2. Always activated

  • Versamail Auto-sync feature not working with AOL mail w/Treo 700p (Verizon)

    I'm having a problem with the Auto-sync feature not working with my 700p (verizon) with my aol mail.  It had worked perfect since May 2007.  Just started having problems End of April 2008.  Sounded like I needed another incoming mail server from aol other than:  imap.aol.com, aol told me they also use pop.aol.com, that isn't working either.  I get an error message that says "last auto-sync attempt failed."....Anyone else having this issue?  I'm trying to decide whether to get rid of my aol mail of 14 yrs and use other address to continue using versamail 3.5  or keep aol and use Verizon Wireless sync.  I do not like how wireless sync sends mail to outbox and then syncs vs sending right away.   Please help...
    Post relates to: Treo 700p (Verizon)

    I am having the EXACT same problem: Palm 700p, Versamail, AOL, Verizon. 
    It started about 1 month ago.  The GET still works, but AUTO-SYNC does not...After spending hours on the phone with Palm tech support, and reaching someone who said AOL had changed something in their servers.  They suggested TRYING Chatteremail, another Palm product.  I have tried it for 20+ days out of the 30 days you get for free.  It works pretty well, but NOT every e-mail that goes to my AOL acct is making it to my phone.  The thing that's great about Chatter is that can be "live" all of time.  Not auto-syncing every 15 minutes.
    It's very frustrating....The same way the Versamail just stopping auto-syncing is very frustrating.  With Versamail, sometimes I did not even get the error message.  If Chatteremail worked consistently, I would bite the bullet, and pay for it, but to pay for it, and have it not pull down all the e-mails, all the time is not good.
    I spoke to Palm Tech Support in N. America today, and they say the way AOL uses IMAP servers is in a non-traditional way, and it's very hard to deal with.  They suggest ditching AOL, and using something reliable for syncing purposes like GMAIL.  It's just hard to cut the cord.  The man I was on the phone with knew of my problem, and he solved it by getting rid of AOL.  It's just tough, since so many people have the e-mail address for me. 
    On http://mobile.aol.com/aolproducts/mobile-email/mai​l-client
    there seems to be some indication when you click on Smart Phones on left, that Coming Soon is Palm, but I don't know if that's going to be downloadable for 700p, or Palms moving forward.  Or how far away that is.
    I tried wireless sync and hated it.
    This is really a pain in the butt.
    *** Who did you speak to at AOL? 
    *** How did you reach them?  e-mail?  phone #?
    I also did a search and found another program called "Snappermail", which I might try, and see if it's any better than Chatteremail.
    http://www.handango.com/SoftwareCatalog.jsp?jid=24​BX5EEAD31DXE6AB588D59X31E95BD5&osId=904&siteId=1&N​...
    If you find anything out, please let me know here, ok?  This is very bad for me. 
    Post relates to: Treo 700p (Verizon)

  • Why is the iPages 5.0 (not beta on iCloud) getting such bad reviews? I was interested in trying it.

    Why is the iPages 5.0 (not beta on iCloud) currently getting such bad reviews? I was interested in trying it on a MacBook Air or Pro.

    mingsai
    We would be grateful if you could point out any errors in the list, but we do check.
    The list does not claim features moved to the System are "missing". There are separate lists of added and changed features.
    There are many people who claim to know what they are talking about but on closer examination it becomes clear they really do not know much about iWork, nor about the features they claim to have "found" in Pages 5.
    I would be hesitant to claim that you were part of the beta testing of Pages 5 for 2 reasons.
    1. Apple does ask you to sign a non-disclosure agreement
    2. You then are part of the problem
    Maybe, now you have disclosed that you were testing, you can explain how on Earth something so bad  was released on an unsuspecting public, with no warning of what Apple had done and that it would alter/damage users' work.
    Peter

  • I have downloaded a trial version of Dreamweaver CS6 to my MacBook. Why do some features not work?

    I have downloaded a trial version of Dreamweaver CS6 to my MacBook. Why do some features not work? I have OSX 10.6.8. I am using this trial version for a class I am taking on coding webpages using Dreamweaver. there are features I am using in class that will not open up or appear as options when I use the trial version. Are certain features locked out until I buy a copy or download a purchased copy?

    Trial versions have no functional limitations, though your setup/situation might not be supportive of all functionality.  You'll need to identify specific issues to get help with them.  You should be posting in the DW forum instead of here if your issue does not have to do with downloading/installing.

  • Why is the new CC Library not included in Indesign ?

    Hello,
    Why is the new CC Library not included in InDesign ?
    It works great between Photoshop and Illustrator but now I really miss this feature in Indesign.

    Don't know why, but CC Library is a totally different thing compared with InDesign's own library format stored in *.indl files. So I suggest, that you'll make a feature request here:
    Adobe - Feature Request/Bug Report Form
    Hope, that it will work again today. Heard, some users had problems with the bug report form yesterday…
    (For the "why": Sometimes the developer teams of the individual CC products do not talk to each other that much, I think.)
    Uwe

Maybe you are looking for

  • IS there a way to view all the queries executed against a table in sql server 2008 R2

    Hi, We would like  to see if a table is getting updated or deleted from external source. Hence we want to know how to see list of queries run against a particular table in sql server 2008 R2. Thanks, Preetha

  • Error while creating Salesorder using BAPI

    hello frnds, I m new to abap and tryin to make use of BAPI_SALESORDER_CREATEFROMDAT1 to create Sales Order I have used the progrtam below. *& Report  ZSALESBAPITRIAL REPORT  zsalesbapitrial. TABLES : vbak , vbap. Parameter Screen. Sales Document Type

  • Problems With Install CD

    I recently purchased a refurbished Apple iBook G4, which came with Mac OS X 10.3.9 installed on it. In the box, I found the Mac OS X Tiger 10.4 install DVD, but my computer does not have a DVD drive. (It only has a CD drive.) Is there any way that I

  • FM/BAPI to Retrieve Classfication Data of Material

    Hi, Anybody have used any BAPI or FM to retrieve the characteristic value of a material in the classification tab? Thanks!

  • Can't find my external HD in HD case

    I have recently removed a working hard drive from a dead macmini (bad logic board) and place it in a USB 2.5 HD case to be used as an external drive for back up on my eMac. I plugged it into the usb (two, one for power), the light on the HD case went