Calendar: Setting an alert for more than "2 days before"?

I'm sure there is a way to set an alert for more than "2 days before" when creating a new event. Every PDA out there allows infinite options in this regard, yet I can't do this on the iphone?
How can set my iPhone calendar alerts for "7 days before" or something to this effect? Can I change the defaults? What can I do?

You can set the reminder in your computer, instead of on the iphone as the iphone's longest option is two days.
From the manual:
"Alert time—from five minutes to two days before the event "
http://manuals.info.apple.com/enUS/iPhone_UserGuide.pdf

Similar Messages

  • How do I set calendar alerts on iPad for more than 2 days?

    How do I set a calendar alert on iPad for more than 2 days.
    Thanks,
    John

    When you add a event it says alert. Tap alert then change to 1 week before.

  • Setting color codes for more than one photo at a time

    Is there any way to set color codes for more than one photo at a time?

    Hi John,
    I will look at keywords. My issue is speed. Right now I am culling and editing an event shoot that spanned a week with 35 separate events and more than 5000 images. So I use the fastest most convenient method I can and it still takes a long time to have a completed and final shoot. On this shoot I will end up with a final set of around 1500 images. Right now I am finishing processing a show that will hang in the Deutsches Amerikanish Zentrum in Stuttgart.
    As I am sure you are aware by now, having seen enough of my inane questions that over the last two years or since Lightroom version 1.xx if I could not figure out how to do something I skipped it. So many things in Lightroom are buried and unless you have a mind like a steel trap (and think that some of you guys in the forum do) locating how to do something is not obvious.
    For example, I only learned (in the last hour) that I could assign colors as a group of selections by using Shift + number. I found this in a side head in Martin Evenings Lightroom book. I still do not know how to find a way to display the color filter "selection" set in Library mode. Is there a way?
    To top it off, Stuttgart Media University asked me if I would add a Lightroom module to my schedule this year. Now I have a compelling reason to learn all those missing pieces that I have created workarounds for. Hence the number of posts you have been seeing from me over the past few of weeks.
    I tell my class that there are no such things as stupid questions, only questions. Now I am practicing what I have been preaching for the last gazillion years. Guys like you have been great.
    My workflow is
    1. I first separate all images by event. I do that at the time of import.
    2. I do a fast pass rejecting all the obviously bad images
    3. I do a second pass grouping the images by sub-group (speeches, people talking, performances, etc.) This is where I run out of selection methods and your key-wording could work but it would probably take too much time to establish a keyword set for a single event. Where I have more than five subgroups I set up different collection sets with one collection for each sub group. However I would like to keep a single event in one collection.
    4. I then select the images to be used by color code.
    5. Next I process the final images (crop develop etc) by collection.
    6. Last I output the set according to client requirement.
    If you have a better workflow, I am all ears.
    By the way, what is your photo specialty and where are you located?
    Jim

  • Quota deduction when EE has been inactive for more than 180 days / Advance quota days when employee does not have enough balance

    Dear experts,
    We have two requirements regarding to the "Anual leave" quota.
    1. Quota reduction when employee is inactive for more than 180 days
    2. Advance quota days when employeee does not have enough balance
    We have in place an "Anual Leave" quota related to a calendar year period, that gets generated dialy in time evaluation. This quota gets the employee entitlement from a set of rules that stored the corresponding balance in a period time type, that is the one that we defined in the customizing. This is working fine. The problems start when we try to incorporate the other two requirements.
    Regarding the first requirement, if the employee has been inactive for more than 180 days in a calendar year due to unpaid leave, we need to start quota reduction as follow,
    First, we need to clear the balance that was calculated above in the schema.
    Then, we need to calculate one leave day for every 20 days worked till the end of the year, considering as such, everyday the employee is expected to work, except days on which the employee has been absent on unpaid leave.
    For the second requirement we created a manual quota call "Advance Anual Leave". So, if the employee, wishes to take 20 working days holiday, but in his/her Anual Leave quota has only 10 days available, we have to create an "Advance Anual Leave" quota manualy for 10 days. When the quota for next year gets generated, we need to deduct these advanced 10 days from it. This deduction should stop the year after.
    The problem we are finding with these two requirements is that, due to the Anual Leave quota gets generated dialy, we can't get the balance right.
    Thanks in advance!
    Kind regards,
    Alex

    Hello binbingogoABC,
    Shopping on BestBuy.com should be easy and fun and not fraught with the kind of trouble that you describe. I regret very much that this has been your experience.
    Using the information you provided when you signed up for Best Buy Unboxed I was able to locate your cancelled orders. I have requested more information from my back-office partners. As soon as I have additional details about your situation, I will reply again to this message. In the interim, I'm sorry that I must impose upon your patience.
    I'm very grateful that you wrote to us with your concerns.
    Sincerely,

  • Accounts that have not been logged into for more than 90 days

    Hi Folks,
    Good Day.
    Can anyone help me to update below powershel script?
    below script find in my domain all the AD users accounts that have not been logged into for more than 90 days and export the report to .csv file. in addition what I want:
    1. OU=Others, Sales --> exclude this OUs
    2. Disable all the user based on 90 days export report .csv file 
    import-module activedirectory 
    $domain = "test.com" 
    $DaysInactive = 90 
    $time = (Get-Date).Adddays(-($DaysInactive))
    $timer = (Get-Date -Format yyyy-mm-dd)
    # Get all AD User with lastLogonTimestamp less than our time and set to enable
    Get-ADUser -Filter {LastLogonTimeStamp -lt $time -and enabled -eq $true} -Properties LastLogonTimeStamp |
    # Output Name and lastLogonTimestamp into CSV
    select-object givenname,Name,@{Name="Stamp"; Expression={[DateTime]::FromFileTime($_.lastLogonTimestamp).ToString('dd-MM-yyyy_hh:mm:ss')}} | Export-Csv c:\temp\90DaysInactive-$(Get-Date -format dd-MM-yyyy).csv –NoTypeInformation
    Many thanks for advance Help:

    Hi Anna,
    Good Day.
    Many thanks for your responce.
    with your help i can manage to exclude the OUs as wellas can get the .csv report via mail.
    Now i want to disable all the user based on 90 days export report .csv file.
    could you help me on this please? the report will come everyday like below:
    filename=90DaysInactive-dd-mm-yyyy.csv
    sample output:
    Given name User Name
    Last LogOn
    Test User1 user1
    03-10-2006_05:30:59
    Test User2 user2
    02-10-2006_12:00:34
    import-module activedirectory 
    $domain = "test.com" 
    $DaysInactive = 1 
    $time = (Get-Date).Adddays(-($DaysInactive))
    $timer = (Get-Date -Format yyyy-mm-dd)
    $FileName="c:\temp\90DaysInactive-$(Get-Date -format dd-MM-yyyy).csv"
    $from = "[email protected]"
    $to = "[email protected]"
    $smtpHost = "smtpservername"
    $Subject = "90 Days Inactive Accounts"
    $body = "90 Days Inactive Accounts report"
    # Get all AD User with lastLogonTimestamp less than our time and set to enable
    Get-ADUser -Filter {LastLogonTimeStamp -lt $time -and enabled -eq $true} -Properties LastLogonTimeStamp | where {($_.distinguishedname -notlike "*OU=HR*") -and ($_.distinguishedname -notlike "*OU=OT*")} | 
    # Output Name and lastLogonTimestamp into CSV
    select-object givenname,Name,@{Name="Last Logon"; Expression={[DateTime]::FromFileTime($_.lastLogonTimestamp).ToString('dd-MM-yyyy_hh:mm:ss')}} | Export-Csv c:\temp\90DaysInactive-$(Get-Date -format dd-MM-yyyy).csv -NoTypeInformation
    Send-MailMessage -From $from -To $to -Subject $subject -cc $cc -SmtpServer $smtpHost -Attachments $FileName -Body $body -BodyAsHtml
    Thanks for your advance help.

  • REQUEST RUNNING FOR MORE THAN ONE DAY - HOW INVESTIGATE ABOUT THIS

    Hi Everyone ...
    As you know when you submit any request throigh concurrent manager . The request completed normal or give warning or error .
    My probelm I have request running for more than one day .but I don't know right tool how invetigate about this issue .
    I checked alert log and database lock but nothing wierd .
    We are using 11.5.10.2 with 10.2.0.4 DB .
    Thanks in advance ...
    Edited by: user12010537 on 26/09/2010 05:39 ص
    Edited by: user12010537 on 26/09/2010 05:46 ص

    Hi,
    schavali wrote:
    Use MOS Doc 735119.1 (How to Find Database Session & Process Associated with a Concurrent Program Which is Currently Running) to determine the PID of the concurrent request, then follow the steps identified in MOS Doc 1058210.6 (How to Enable SQL_TRACE for Another Session or in MTS Using Oradebug)
    enable tha trace
    Re: enable tha trace
    Thanks,
    Hussein

  • HP LaserJet 1300 not connected for more than 1 day

    Since Apple came out with the Yosemite printing system, I cannot print wirelessly for more than one day. I have reset my modem, changed the location of my network, unplugged and repowered Airport Extreme, started in Safe Mode, and more.
    No matter what I do: I either get:  a printer name with a number in parenthese or a long Bonjour number when deleting and adding a printer on my laptop.
    Whatever I do, it only works from about 24 to 36 hours. Then when i go to print it says Printer is Not Connected. I can delete and add again, usually it will find the printer, add it, print, and then a day or two later, the printer is not connected again.
    But I have to keep redoing this both to my laptop and my wife's, and we have not had reliable printing since Yosemite cane out about October 18, 2014.
    Equipment
    iMac:
    Operating Sysem: 10.10.1
    Printer: HP LaserJet 1300
    Network: Comcast
    Router: Airport Extreme
    The only thing I have not done I can think of is reset Airport Extreme.  I can do that, but don't know if I will then have additional problems.
    This all started with the YIosemite update but at this point I don't know if it is an HP-related problem or a general Yosemite-related problem.
    I appreciate any help I can get. Have wasted probably 40 hours over two-plus months trying to get this fixed. When Apple could not fix it back in October, the person referred me to HP. The person at HP Business did not know my printer was supported for Yosemite although his own web site said it was. So that was not much help And after resetting printers, deleting and adding printers, etc., I don't know what else to do.
    Thanks for listening.

    Did it start not syncing after the iOS 4.2 update?

  • Attach Database running for more than 2 days

    Hi,
    I have a sql sever 2005 database of SAP development which is having a deferred transaction error while DBCC.  After restart the SQL log says the below. Still the DBCC error exists.
    2013-04-19 14:27:22.10 spid14s     Recovery of database 'BDS' (5) is 99% complete (approximately 3 seconds remain). Phase 2 of 3. This is an informational message only. No user action is required.
    2013-04-19 14:27:22.10 spid14s     1830496 transactions rolled forward in database 'BDS' (5). This is an informational message only. No user action is required.
    2013-04-19 14:27:22.71 spid14s     Recovery of database 'BDS' (5) is 99% complete (approximately 3 seconds remain). Phase 3 of 3. This is an informational message only. No user action is required.
    2013-04-19 14:27:23.34 spid14s     CHECKDB for database 'BDS' finished without errors on 2012-10-14 19:22:43.603 (local time). This is an informational message only; no user action is required.
    I have copied the mdf, ndf and ldf file to another location and try to attach the database it is running for more than 2 days now. Still not given any error.  DVM  shows the create database  status as running.  The SQL Log shows the below
    message.
    2014-03-29 19:19:52.04 spid52      Recovery of database 'BDS' (8) is 99% complete (approximately 3 seconds remain). Phase 2 of 3. This is an informational message only. No user action is required.
    2014-03-29 19:19:52.04 spid52      5313464 transactions rolled forward in database 'BDS' (8). This is an informational message only. No user action is required.
    2014-03-29 19:19:52.29 spid52      Recovery of database 'BDS' (8) is 99% complete (approximately 3 seconds remain). Phase 3 of 3. This is an informational message only. No user action is required.
    Please help me to solve this issue.  
    Regards,
    suren

    >I have copied the mdf, ndf and ldf file to another location and try to attach the database it is running for more than 2 days now.
    It is safer to:
    1. Backup the database:
    http://technet.microsoft.com/en-us/library/ms187510.aspx
    2. Copy backup file over to destination server
    3. Restore the database
    Kalman Toth Database & OLAP Architect
    SELECT Video Tutorials 4 Hours
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • SCCM 2012 Secondary site some client's are scan hardware inventory for more than 30 days

    Hi, 
    In our SCCM 2012 environment we have secondary site configured which connected with 8500 computers, on those 5500 machines scanning hardware inventory and send latest inventory details to Secondary Site Management Point, but remaing 3000 machines are not
    sending latest hardware inventory for more than 30 days. I verified clients log  found it is generating report on inventory agent.log however it is not available with secondary site Management Point.
    Are anyone experienced this issue, please share your thought how to fix this issue.
    Thanks in advance. 
    Madhan

    Yes i did verify but the client isn't listed on both log files. Also i couldn't open IIS log because of it size has more than 800MB. currently this site has connected with 8500 machines do you think these many clients are supported by secondary site server. 
    If you can't open the IIS log then how do you know that the Client's IP is not listed within them?
    5000 is the max for a secondary site. You will need to secondary sites at this location.
    http://technet.microsoft.com/en-us/library/gg682077.aspx#BKMK_SupConfigClientNumbers
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • SCCM 2012 Secondary site client's are not doing hardware scan for more than 30 days

    Hi, 
    On our SCCM environment around 2500 active clients mapped for particular secondary site not performed hardware scan for more than 30 days. Can anyone provide suggestion how to fix this. 
    Regards,
    Madhan

    Yes i confirmed it is listing correct MP and software scan is working fine. we have around 8500 machines connected to that site buy only 3000 machines are having this issue. anyone has faced this issue ?
    Only 5000 Computers are supported by a secondary site.
    http://technet.microsoft.com/en-us/library/gg682077.aspx#BKMK_SupConfigClientNumbers
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • My macbook pro won't hold a charge for more than a day...do I need a new battery?

    my macbook pro won't hold a charge for more than a day...do I need a new battery?  I have a 13" early 2011 model.

    A: did you leave most of the time or always plugged in?
    B: did you often drain the battery very low?
    If so, then thats the issue
    From Apple on batteries:
    http://support.apple.com/kb/HT1446
    http://www.apple.com/batteries/
    Storing your MacBook
    If you are going to store your MacBook away for an extended period of time, keep it in a cool location (room temperature roughly 22° C or about 72° F). Make certain you have at least a 50% charge on the internal battery of your Macbook if you plan on storing it away for a few months; recharge your battery to 50% or so every six months roughly if being stored away. If you live in a humid environment, keep your Macbook stored in its zippered case to prevent infiltration of humidity on the internals of your Macbook which could lead to corrosion.
    Considerations:
    Your battery is subject to chemical aging even if not in use. A Lithium battery is aging as soon as its made, regardless.
    In a perfect (although impractical) situation, your lithium battery is best idealized swinging back and forth between 20 and 85% SOC (state of charge) roughly.
    Further still how you discharge the battery is far more important than how it is either charged or stored short term, and more important long term that cycle counts.
    Ultimately counting charge cycles is of little importance.  Abuse in discharging (foremost), charging, and storing the battery and how it affects battery chemistry is important and not the ‘odometer’ reading, or cycle counts on the battery. 
    Everything boils down to battery chemistry long term, and not an arbitrary number, or cycle count.
    Keep your macbook plugged in when near a socket since in the near end of long-term life, this is beneficial to the battery.
    Peace

  • Excise for more than 180 days wt Sub Contractor

    We have listed some Raw materials that is being stable with the subcontractor more than 180  days. Now we are liable to pay the Excise Duty. Instead of paying this Excise Duty we want theCredit the CENVAT payable Account so that  we can adjust in the utilization later in J2IUN.
    For that,Accounting Entry has to happen like the same entry happening inSales Excise Invoice. 
    Please Guide Me
    Regards,
    R.Ramakrishnaraj,

    Dear,
    1. First try to identify "Selection Profile" which is used. In "CM01" go to menu Planning->Profiles->Selection Profile.
    2.Check the defination of this profile using transaction "OPA2". Here you need to look for "Work center Set" which is assigned.
    3. Now look at the defination of the workcenter set using transaction "CMS3", here is were we define as how the list is to be fetched.
    Hope this helps.
    Regards,
    R.Brahmankar

  • Pending Payments for more than 90 days

    Hi,
    I have two pending payments for more than 90days. I cant buy any more subscription, kindly help me cancel those where it would be better to save money on calling my home country. The status is pending from 14-Feb-2014. Thanks in advance.
    BR
    DJ

    please contact Skype customer service
    TIME ZONE - US EASTERN. LOCATION - PHILADELPHIA, PA, USA.
    I recommend that you always run the latest Skype version: Windows & Mac
    If my advice helped to fix your issue please mark it as a solution to help others.
    Please note that I generally don't respond to unsolicited Private Messages. Thank you.

  • SCCM 2012 R2-CU3 Collection Query not a report to generate Computers no longer logon to Active Directory for more than 90 Days.

    Dear Brothers,
    I want to use SCCM to have a
    Query Collection to generate computers no longer active by detecting more than 90 days of no logon to our AD (Dead or not Pinging but still in AD), after this activity I will delete this computers
    to completely clean both AD and SCCM records as Well.
    Why instead of Reports I prefer collection is because, I want it to be more Dynamic and once you open the console the computers will be displayed immediately.
    Regards,

    It is not possible for a collection to be more dynamic than a report. If anything the collection will be behind what is listed in a report.
    How exact do you think that you determine that a PC is not ping able via a collection? This might be possible via a report but it will be a very, very complex report to do this.
    As for logon details this is NOT collect by CM12 by default and it is could be update 15-22 days out of sync with reality.
    If I remember right there are a few scripts that will do this for you available via the favorite search engine.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ
    Thanks Garth,

  • AEBS can't keep an internet connection for more than 1 day...why?

    I continually have to reset my Ethernet cable on my cable modem to get connected to the internet.This is very frustrating. I had Apple send me a new unit and that still hasn't fixed the problem. The only thing that works is printer sharing.
    Is anyone else experiencing the same problems?

    According to Adobe...
    http://www.adobe.com/products/creativecloud/faq.html
    Do I need ongoing Internet access to use my Creative Cloud desktop applications?
    No. Your Creative Cloud desktop applications (such as Photoshop and Illustrator) are installed directly on your computer, so you won't need an ongoing Internet connection to use them on a daily basis.
    An Internet connection is required the first time you install and license your desktop apps, but you can use the apps in offline mode with a valid software license. The desktop apps will attempt to validate your software licenses every 30 days.
    For annual members, you can use the apps for up to 99 days in offline mode. Month-to-month members can use the software for up to 30 days in offline mode.
    Seems like you would be ok, but I understand what you're saying, hopefully a Staff member will confirm.

Maybe you are looking for

  • Logical operator

    Hi Experts, Can we use logical operator in where clause of select statement????? My requirement is i want to CA logical operator in select statement.Is there any possibility???????? If there please tell me???????????\ Nice answers reward with maxi po

  • I am unable to print using firefox message is "unknown printer error" No problem with other browsers

    I tried to print a coupon from an e-mail and the message I got was "unknown printer error". I am able to print from word and other items on my desktop and also from another browser. I cannot print anything using Firefox. I have not had any updates re

  • How to validate the selection screen

    Hi, I am developing a program. In selection screen I face one problem. For three scenario three blocks I prepared. and another block for three radio button for three scenario. My objectives is if we select one readio button for one scenario, another

  • Problem with new data-sources format

    Hi, I m moving to Oracle IAS 10.1.3, so i m testing the application with the standalone version. I use the datasource converter just like the manual say. this is how datasources looks.. <?xml version = '1.0' encoding = 'UTF-8'?> <data-sources> <manag

  • Help regarding Charts

    Hello, I am currently developing an application and I have a requirement. The table structure is as below: Table - leaves_months_test Columns - email, jan, feb, mar, apr, may, jun, jul, aug, sept, oct, nov, dec, total This table stores the leaves tak