PWA Timesheet - How to limit hours per day on timesheet submission?

I've set "Maximum Hours per day" limiation to 24 hours on "Timesheet settings and defaults" and it works when a user click "Save" on "Timesheet" view. 
But when the user click "Send" without saving first, it bypasses this limitation and save the timesheet reporting with any amount of hours that the user entered.
Is there any way to solve this and limit the user so he won't be able to submit more than 24 hours per day?
Thanks

Under configure timesheet settings and defaults
In the Hourly Reporting Limits section, specify the maximum and minimum hours allowed in a timesheet and the maximum number of hours allowed to be reported in a day. If team members report time beyond these limits, errors appear on their timesheets when
they submit them.
make it 8 hours then check.
kirtesh

Similar Messages

  • Fair Usage Policy - 6 hours per day exceeded

    Hi,
    My Fair Usage Policy - 6 hours per day is about cross the limit. Is there any ways to reset it before GMT 0000hrs
    rgds

    Unfortunately no
    Otherwise if everyone could reset it on their own then there is no point for the restriction.
    Andre
    If answer was helpful please mark it with Kudos and if issue is resolved mark it with solution. This will help other users find this answer more easily. Thanks in advance!

  • Does anyone know if it is possible to change the display in week view to show 24 hours per day for those of us that work irregular hours

    Does anyone know if it is possible to change the display in week view to show all 24 hours per day for those of us that work irregular hours.
    Also is it possible to have all of the 'all day' entries showing, not just 3.5 of them.
    The app Week Cal HD was the perfect calendar until Apple removed it so could they please offer the same facilities that it offered.

    Does anyone know if it is possible to change the display in week view to show all 24 hours per day for those of us that work irregular hours.
    Also is it possible to have all of the 'all day' entries showing, not just 3.5 of them.
    The app Week Cal HD was the perfect calendar until Apple removed it so could they please offer the same facilities that it offered.

  • Row 1 Error - Please set the Full Time Equivalent Hours Per Day implementat

    Hi all
    While defining the Enable Workplan Structure in oracle projects i am getting the below error
    Row 1 Error - Please set the Full Time Equivalent Hours Per Day implementation option before enabling the Workplan Structure.
    Plesase can you share and doc or guide where can i set this implementation option
    Thanks in advance

    Hi
    Navigate to Projects> Setup > System > Implementation Options
    There is a tab named - Staffing
    On that form you should enter the Full Time Equivalent Hours - Per Day and Per Week.
    Dina

  • ASA5510 - Is it possible to give users access 2 hours per day?

    Hi!
    As the topic say; is it possible to set up so specific users only have, say, 2 hours of internet access per day?
    They should be able to log on any time of the day, and so many times they want, as long as the total usage does not exeed 2 hours per day.
    Is this possible on a ASA5510, or any other device Cisco is selling?
    Thanks.

    You would have to do that with a proxy or web security appliance. Take a look at Cisco's Ironport products.
    http://www.cisco.com/en/US/products/ps10164/index.html

  • Enterprise Global - working time v hours per day

    Hi, can someone remind me whether I can set Hours per day and default start/finish times within the enterprise global template or is that a configuration that must be made inidividually by each user with project professional installed?
    Thanks
    Steve

    Hi Steve,
    It has to be set for each user with Project Pro installed.
    That being said, you can configure GPO (Group Policy Management) to set automatically those options for all users.
    Here are some references:
    https://technet.microsoft.com/en-us/windowsserver/bb310732.aspx
    https://technet.microsoft.com/en-us/library/cc740076(v=ws.10).aspx
    https://msdn.microsoft.com/en-us/library/bb742376.aspx
    https://technet.microsoft.com/en-us/library/cc753298.aspx
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Looping through date column - Summing hours per day

    All,
    Running the query below against my timesheet tables I get the following results:
    -----SQL CODE------
    SELECT
    ts.ts_date Date,
    ts.user_name Name,
    tc.account Account,
    ts.no_of_hrs Hours,
    SUM(ts.no_of_hrs) OVER(PARTITION BY ts.ts_date) Daily_Total
    FROM
    eba_time_timesheet ts,
    eba_time_timecodes tc
    WHERE
    ts.timecode_id = tc.id AND
    ts.user_name LIKE 'JohnD'
    ORDER BY
    1
    -----RESULTS-------
    Date          Name          Account     Hours     Daily Total
    1-Dec-09     JOHND          489310          1.5     8
    1-Dec-09     JOHND          486830          1.5     8
    1-Dec-09     JOHND          481710          3     8
    1-Dec-09     JOHND          481210          0.5     8
    1-Dec-09     JOHND          486840          0.5     8
    1-Dec-09     JOHND          485710          0.5     8
    1-Dec-09     JOHND          481010          0.5     8
    2-Dec-09     JOHND          481710          1     8
    2-Dec-09     JOHND          485710          7     8
    3-Dec-09     JOHND          481710          6     8
    3-Dec-09     JOHND          488810          1.5     8
    3-Dec-09     JOHND          481310          0.5     8
    4-Dec-09     JOHND          489710          8     8
    7-Dec-09     JOHND          481110          0.5     8
    7-Dec-09     JOHND          489710          7     8
    7-Dec-09     JOHND          481210          0.5     8
    However, I would prefer the Daily Total column be a row in the results instead of a column. Here is an example of how I would prefer the results. This statement will then be sent to a calendar for each user to see there time for each account and total time per day.
    Date          Name          Account     Hours
    1-Dec-09     JOHND          489310          1.5     
    1-Dec-09     JOHND          486830          1.5     
    1-Dec-09     JOHND          481710          3     
    1-Dec-09     JOHND          481210          0.5     
    1-Dec-09     JOHND          486840          0.5     
    1-Dec-09     JOHND          485710          0.5     
    1-Dec-09     JOHND          481010          0.5     
    *1-Dec-09     JOHND          Daily Total     8*
    2-Dec-09     JOHND          481710          1     
    2-Dec-09     JOHND          485710          7
    *2-Dec-09     JOHND          Daily Total     8*
    3-Dec-09     JOHND          481710          6     
    3-Dec-09     JOHND          488810          1.5     
    3-Dec-09     JOHND          481310          0.5
    *3-Dec-09     JOHND          Daily Total     8*
    4-Dec-09     JOHND          489710          8
    *4-Dec-09     JOHND          Daily Total     8*
    7-Dec-09     JOHND          481110          0.5     
    7-Dec-09     JOHND          489710          7     
    7-Dec-09     JOHND          481210          0.5
    *7-Dec-09     JOHND          Daily Total     8*
    Any help would be greatly appreciated.
    This is my 1st post so if I've left something out or you need additional info please let me know.
    I’m using Oracle 10g

    user9160575 wrote:
    Thanks for all the input! I ended up using the GROUP BY ROLLUP and adding a CASE statement for inserting "DAILY TOTAL" in the account column.If you are on at least 10g, model solution could be simpler:
    with t as (
               select to_date('1-Dec-09','dd-mon-yy') dt,'JOHND' name,489310 account,1.5 hours,8 daily_total from dual union all
               select to_date('1-Dec-09','dd-mon-yy'),'JOHND',486830,1.5,8 from dual union all
               select to_date('1-Dec-09','dd-mon-yy'),'JOHND',481710,3,8 from dual union all
               select to_date('1-Dec-09','dd-mon-yy'),'JOHND',481210,0.5,8 from dual union all
               select to_date('1-Dec-09','dd-mon-yy'),'JOHND',486840,0.5,8 from dual union all
               select to_date('1-Dec-09','dd-mon-yy'),'JOHND',485710,0.5,8 from dual union all
               select to_date('1-Dec-09','dd-mon-yy'),'JOHND',481010,0.5,8 from dual union all
               select to_date('2-Dec-09','dd-mon-yy'),'JOHND',481710,1,8 from dual union all
               select to_date('2-Dec-09','dd-mon-yy'),'JOHND',485710,7,8 from dual union all
               select to_date('3-Dec-09','dd-mon-yy'),'JOHND',481710,6,8 from dual union all
               select to_date('3-Dec-09','dd-mon-yy'),'JOHND',488810,1.5,8 from dual union all
               select to_date('3-Dec-09','dd-mon-yy'),'JOHND',481310,0.5,8 from dual union all
               select to_date('4-Dec-09','dd-mon-yy'),'JOHND',489710,8,8 from dual union all
               select to_date('7-Dec-09','dd-mon-yy'),'JOHND',481110,0.5,8 from dual union all
               select to_date('7-Dec-09','dd-mon-yy'),'JOHND',489710,7,8 from dual union all
               select to_date('7-Dec-09','dd-mon-yy'),'JOHND',481210,0.5,8 from dual
    select  dt "Date",
            name "Name",
            account "Account",
            hours "Hours"
      from  t
      model
        dimension by(dt,name,to_char(account) account)
        measures(hours,daily_total,0 seq)
        rules upsert all(
                         hours[any,any,'Daily Total'] = max(daily_total)[cv(dt),cv(name),any],
                         seq[any,any,'Daily Total'] = 1
      order by dt,
               name,
               seq,
               account
    Date      Name  Account                                       Hours
    01-DEC-09 JOHND 481010                                           .5
    01-DEC-09 JOHND 481210                                           .5
    01-DEC-09 JOHND 481710                                            3
    01-DEC-09 JOHND 485710                                           .5
    01-DEC-09 JOHND 486830                                          1.5
    01-DEC-09 JOHND 486840                                           .5
    01-DEC-09 JOHND 489310                                          1.5
    01-DEC-09 JOHND Daily Total                                       8
    02-DEC-09 JOHND 481710                                            1
    02-DEC-09 JOHND 485710                                            7
    02-DEC-09 JOHND Daily Total                                       8
    Date      Name  Account                                       Hours
    03-DEC-09 JOHND 481310                                           .5
    03-DEC-09 JOHND 481710                                            6
    03-DEC-09 JOHND 488810                                          1.5
    03-DEC-09 JOHND Daily Total                                       8
    04-DEC-09 JOHND 489710                                            8
    04-DEC-09 JOHND Daily Total                                       8
    07-DEC-09 JOHND 481110                                           .5
    07-DEC-09 JOHND 481210                                           .5
    07-DEC-09 JOHND 489710                                            7
    07-DEC-09 JOHND Daily Total                                       8
    21 rows selected.
    SQL> SY.

  • How to backup ONCE per DAY only

    Hi
    It takes forever (2hrs+) to backup 300GB onto our Time Capsule, and the backup slows down my computer so much to the point I want to pull my hair out! I can't seem to find a way to do an automatic backup once per day only rather than hourly without turning off the automatic backup and doing it manually.
    Does anyone know how to do an automatic backup to Time Capsule once per day only?
    Thank you!

    Thank you for your assistance!
    That is exactly what I was looking for, and am very relieved to know there is something available!!
    I was hesitant to download it at first because since it is backing up all my files, I was afraid of the possibility of having a built in bug that would allow an outsider to access my files. However, I researched it, and it seems there are many happy & satisfied users of the Time Machine Editor software.
    Thanks again! Hopefully Apple will just swallow their pride and make this ability available in one of their own software updates in the future.

  • How to count pacients per day

    Hi all...
    I'm doing a system for a hospital, and I need to count the number of patients taken care of per day by some sector of the hospital.
    In the mysql database i have the day that the patient interned and the they he left the hospital...
    how can I do that???
    thx...

    Hi all...
    I'm doing a system for a hospital, and I need to
    count the number of patients taken care of per day
    by some sector of the hospital.
    In the mysql database i have the day that the patient
    interned and the they he left the hospital...
    how can I do that???
    thx...Do you have a specific Java question? If so, please post it here.

  • Land phone dial tone lost for 8 hours per day at same time

    For 2 weeks now, I lose my dial tone approximately 9:30 to 10:30 a.m. every day and intermet and then dial tone comes back on approximately 5:15 p.m. every day.  Verizon came out and checked outside box and said it is not their problem, the box is working fine, must be something with my wiring.  The same thing happened 2 years ago and Verizon fixed something on telephone wires down the block and everything was fixed.  How can it be problem with inside wiring if I only lose dial tone for approximately 8 hours every day.  Seems like it is something with maybe a switching station, something that they switch every day (maybe high volume time period), but my phone gets left behind.  One Verizon guy on the phone said he could see it was a problem with their network and it was fixed for one day.  Since then when I have called back, they keep telling me Verizon has to come into my home as there is a problem with inside wiring and cannot give me time period other than either 8 a.m. to 12 noon or 1 p.m. to 5 p.m. for them to show up.  Anyone have a problem like this?

    Your issue has been escalated to a Verizon agent. Before the agent can begin assisting you, they will need to collect further information from you.
    Please go to your profile page for the forum, and look in the middle, right at the top where you will find an area titled "My Support Cases". You can reach your profile page by clicking on your name beside your post, or at the top left of this page underneath the title of the board.
    Under “My Support Cases” you will find a link to the private board where you and the agent may exchange information. This should be checked on a frequent basis as the agent may be waiting for information from you before they can proceed with any actions.
    To ensure you know when they have responded to you, at the top of your support case there is a drop down menu for support case options. Open that and choose "subscribe".
    Please keep all correspondence regarding your issue in the private support portal.

  • Possible to show fewer Calendar hours per day?

    Is there a way to reduce the number of hours Calendar shows each day? 
    My appointments happen between the hours of 8am and 8pm.  But CAL shows all 24 hours each day.  If I have one appointment at 8am, one at 2pm, a third at 4pm and maybe a dinner at 7pm, the page view on iPhone limits my view to one or two of these appointments.  To see others I have to scroll up or down.  Not a big deal but I'd like to see all that day's appointments on one page view.
    Is there a way to do this?

    See Apple's article titled "Controlling when a user can access your network" found at:
    http://docs.info.apple.com/article.html?path=Airport/5.0/en/ap2122.html

  • Fascinate will not connect with email server 3-5 hours per day.

    All the features on the phone; text messaging, internet browsing and the phone(coming and going) work well and quickly but my email problem is driving me nuts.
    I live in Williamsburg VA and have been back to the main store several times without luck. I've been on the phone with the 800# techs at Verizon, and while they try to help, still have the problem. They have reset the phone, manually walked me through the reset process--  similar to the automatically mode by dialing *228, #1.
    Regardless if I'm on the 3G network or WiFi(both showing 3 bars) I receive no email several time a day for up to 5 hours - -this is even though my home computer is getting them. I run a small business and the lost message are killing me.
    I'm open for any suggestions

    I'm having the same issue -check the laptop or PC and the inbox is filled with new emails, yet no new emails on the Fascinate......sometimes no new messages for 12-15hrs.  Tried soft reboots, deleting the email accounts and re-installing, updating roaming and still no timely emails incoming.  Spent 1hr 47min with Verizon and Samsung tech support for this very problem.  Bottom line per Samsung tech support -Droid Operating Platform (OS) is designed to run Gmail in 'real time' and any other ISP can take up to 2 days to hit your inbox.  Droid considers this perfectly acceptable.  Samsung tech support said to Google (not on your phone) 'droid apps' and then research apps for email.  He said to look only at those with a 5 star rating and with 100 ratings or more.  When asked if he could save me the time and hassle of researching and just tell me a good app, he couldn't - he could lose his job.  He was sympathetic and agreed it was **bleep**.
     Another tip he gave was to delete your email accounts BEFORE downloading an email app.  Once the app is downloaded re-install your email account(s).  Doing it otherwise will confuse the OS and you'll have the same lag time issues of incoming email.
    I'm going to try K 9 app based on research reviews.

  • Hours per day, iMac Help solution doesn't work

    My weekly view in iCal shows 24 hour days. I need only 8 am to 10 pm, 14 hr days. I went to iCal>Prefs>general and changed it to those hours and to show only 14 hour days. This affected NO change in iCal though iCal Help says;
    "To change the days of the week or the number of hours that appear in the main calendar view, choose iCal > Preferences, and make your choices from the Week and Day pop-up menus in the General pane. For example, you can choose to only see the hours from 9AM to 5PM on Monday through Friday."
    iCal>Preferences>general pane does not offer me week and day pop up menus as the help item suggests.
    I'm trying to switch from Now Up-To-Date to iCal. Surely apple hasn't released a calendar program that can't be adjusted as desired. (I found one thread on these discussion forums but it was 34 pages long: I found no solution in the first 3 pages and figured i'd post here, as it doesn't seem reasonable to have to read 34 pages x 15 posts/page to get an answer to such a simple question.
    I hope someone will be nice enough to point out the solution i'm overlooking.
    thanks

    Hi Dan,
    Thanks. I agree that provides a hack of sorts to achieve my goal. But can we also agree that it's a workaround unworthy of apple (or anyone's) quality software? I mean, a calendar program that by default shows all 24 hours and CAN'T have that changed, only the portion of it that shows at first?
    And if this is the only solution, what, then, is the usefulness of the preference i've changed to read: "Show 14 hours at a time" ?
    thanks
    terry

  • How to add extra per day records based on maximum occurances in the week.

    Hello,
    I need to add extra records based on maximum occurances on a day in a week.
    For example, the result of the query shows that maximum occuances in a week 0 is 3 on so I need to add empty records in each day in that week.
    SQL QUERY:
    with  numbers as (
    SELECT ROWNUM N FROM dual 
      CONNECT BY LEVEL <=35
    ),months as (
    SELECT     ADD_MONTHS('01-JUN-10',n-1) AS current_month,
         TO_CHAR(ADD_MONTHS('01-JUN-10',n-1),'fmMonth-YYYY') AS current_month_label
    FROM numbers
    WHERE ADD_MONTHS('01-JUN-10',n-1) <= NVL(add_months('01-JUN-10', :monthcount-1),:p_month)
    ORDER BY n ASC
    ) , dates as (
    select     trunc(trunc(m.current_month, 'MM'), 'D') + n - 1 calendar_date,
         trunc((n - 1) / 7) AS week_num,
                    m.current_month as current_month
    from     numbers, months m
    where trunc(dom.schedule.calendar_begin(m.current_month) + n - 1, 'd') <= last_day(m.current_month)
    Order By week_num, calendar_date
    select dates.week_num, edate, name from (
    --week 0
    select '30-MAY-10' as edate, 'JJ' as name from dual union
    select  '31-MAY-10' as edate, 'MK' as name from dual union
    select  '01-JUN-10' as edate, 'MK' as name from dual union
    select  '01-JUN-10' as edate, 'BK' as name from dual union
    select  '01-JUN-10' as edate, 'JJ' as name from dual union
    select  '04-JUN-10' as edate, 'KK' as name from dual union
    select  '04-JUN-10' as edate, 'LA' as name from dual      union
    -- week 1
    select  '06-JUN-10' as edate, 'BK' as name from dual union
    select  '06-JUN-10' as edate, 'JJ' as name from dual union
    select  '07-JUN-10' as edate, 'KK' as name from dual union
    select  '11-JUN-10' as edate, 'LA' as name from dual      
    ) a  join dates on dates.calendar_date = a.edate   
    order by week_num, to_date(edate);CURRENT RESULT :
    WEEK_NUM             EDATE                NAME
    0                   30-MAY-10            JJ
    0                   31-MAY-10             MK
    0                   01-JUN-10             MK
    0                   01-JUN-10             JJ
    0                   01-JUN-10             BK
    0                   04-JUN-10             KK
    0                   04-JUN-10             LA
    1                   06-JUN-10             BK
    1                   06-JUN-10             JJ
    1                   07-JUN-10             KK
    1                   11-JUN-10             LAREQUIRED RESULT:
    WEEK_NUM             EDATE                NAME
    0                   30-MAY-10             JJ
    0                   30-MAY-10            null
    0                   30-MAY-10            null
    0                   31-MAY-10            MK
    0                   31-MAY-10            null
    0                   31-MAY-10            null
    0                   01-JUN-10             BK
    0                   01-JUN-10              JJ
    0                   01-JUN-10             MK
    0                   02-JUN-10             null
    0                   02-JUN-10             null
    0                   02-JUN-10             null
    0                   03-JUN-10             null
    0                   03-JUN-10             null
    0                   03-JUN-10             null
    0                   04-JUN-10             KK
    0                   04-JUN-10             LA
    0                   04-JUN-10             null
    0                   05-JUN-10             null
    0                   05-JUN-10             null
    0                   05-JUN-10             null
    --Number of Week 1 records should be 14 = (max occurances on 06-JUN-10)  * 7
    1                   06-JUN-10             BK
    1                   06-JUN-10             JJ
    1                   07-JUN-10             KK
    1                   07-JUN-10             null
    1                   08-JUN-10             null
    1                   08-JUN-10             null
    1                   09-JUN-10             null
    1                   09-JUN-10             null
    1                   10-JUN-10             null
    1                   10-JUN-10             null
    1                   11-JUN-10             LA
    1                   11-JUN-10             null
    1                   12-JUN-10             null
    1                   12-JUN-10             nullI would appreciate it if you could help me to find efficient way to achieve this?
    Thanks,
    GM
    Edited by: user12068331 on Sep 28, 2010 2:17 PM
    Edited by: user12068331 on Sep 28, 2010 2:48 PM

    Ok,
    Few things to clarify first :
    1 - How do you define week number ?
    Oracle has 2 different way for week number : normal week number (WW) and isoweek (IW).
    is your weeknumber one of those, or is it something else ?
    2 - Depending on the country the week doesn't start on the same day : in France (as most of Europe I think) first day is monday, where in the USA (as far as I know) first day is sunday.
    the to_char builtin function can display weeknumber :with a as (
    --week 0
    select 0 as weeknum, to_date('30-MAY-2010','DD-MON-YYYY') as edate, 'JJ' as name from dual union all
    select 0 as weeknum, to_date('31-MAY-2010','DD-MON-YYYY') as edate, 'MK' as name from dual union all
    select 0 as weeknum, to_date('01-JUN-2010','DD-MON-YYYY') as edate, 'MK' as name from dual union all
    select 0 as weeknum, to_date('01-JUN-2010','DD-MON-YYYY') as edate, 'BK' as name from dual union all
    select 0 as weeknum, to_date('01-JUN-2010','DD-MON-YYYY') as edate, 'JJ' as name from dual union all
    select 0 as weeknum, to_date('04-JUN-2010','DD-MON-YYYY') as edate, 'KK' as name from dual union all
    select 0 as weeknum, to_date('04-JUN-2010','DD-MON-YYYY') as edate, 'LA' as name from dual union all
    -- week 1
    select 1 as weeknum, to_date('06-JUN-2010','DD-MON-YYYY') as edate, 'BK' as name from dual union all
    select 1 as weeknum, to_date('06-JUN-2010','DD-MON-YYYY') as edate, 'JJ' as name from dual union all
    select 1 as weeknum, to_date('07-JUN-2010','DD-MON-YYYY') as edate, 'KK' as name from dual union all
    select 1 as weeknum, to_date('11-JUN-2010','DD-MON-YYYY') as edate, 'LA' as name from dual
    select to_char(a.edate,'IW') isoweek, to_char(a.edate,'WW') numweek, a.*
    from a;
    IS NU    WEEKNUM EDATE                          NA
    21 22          0 Sunday    30/05/2010 00:00:00  JJ
    22 22          0 Monday    31/05/2010 00:00:00  MK
    22 22          0 Tuesday   01/06/2010 00:00:00  MK
    22 22          0 Tuesday   01/06/2010 00:00:00  BK
    22 22          0 Tuesday   01/06/2010 00:00:00  JJ
    22 23          0 Friday    04/06/2010 00:00:00  KK
    22 23          0 Friday    04/06/2010 00:00:00  LA
    22 23          1 Sunday    06/06/2010 00:00:00  BK
    22 23          1 Sunday    06/06/2010 00:00:00  JJ
    23 23          1 Monday    07/06/2010 00:00:00  KK
    23 24          1 Friday    11/06/2010 00:00:00  LA
    11 rows selected.

  • How many iPhones stolen per day? Prevent shutdown.

    Dear friends.
    Since I had my iPhone stolen I'm searching for a way (without jailbreaking it) to prevent that my new iPhone gets lost.
    "Find my iPhone" is only useful when the thief is dum.b as hel.l and when nobody has found it (yet).
    Does Apple see comercial advantages on this situation? How many iPhones are stolen a day?!
    I mean, why in the world wouldn't you develop security apps and security features so we don't lose our beloved phones?
    This is serious, and it seems Apple doesn't care. I don't want to jailbreak my iPhone, but you are not helping, Apple!
    I would like to see a Restriction setting that would block the shutdown of my iPhone when it's locked. It would require a passcode to shut it down. It's so simple!
    This way thieves wouldn't be able to shut it down!
    The same works for Airplane mode and Wi-Fi. A passcode should be required to turn it off (if I enable this feature).
    Advanced considerations: DFU mode and recovery mode should "expire", the iPhone should reset itself after some time (e.g. 10 minutes) so the iPhone would come back to life and allow tracking.
    SECURITY!
    So far nothing was done in this area. I believe Apple should pay more attention to this.
    Best regards,
    Will

    Will Segatto wrote:
    Dear friends.
    Since I had my iPhone stolen I'm searching for a way (without jailbreaking it) to prevent that my new iPhone gets lost.
    "Find my iPhone" is only useful when the thief is dum.b as hel.l and when nobody has found it (yet).
    Does Apple see comercial advantages on this situation? How many iPhones are stolen a day?!
    I mean, why in the world wouldn't you develop security apps and security features so we don't lose our beloved phones?
    This is serious, and it seems Apple doesn't care. I don't want to jailbreak my iPhone, but you are not helping, Apple!
    I would like to see a Restriction setting that would block the shutdown of my iPhone when it's locked. It would require a passcode to shut it down. It's so simple!
    This way thieves wouldn't be able to shut it down!
    The same works for Airplane mode and Wi-Fi. A passcode should be required to turn it off (if I enable this feature).
    Advanced considerations: DFU mode and recovery mode should "expire", the iPhone should reset itself after some time (e.g. 10 minutes) so the iPhone would come back to life and allow tracking.
    SECURITY!
    So far nothing was done in this area. I believe Apple should pay more attention to this.
    Best regards,
    Will
    Sorry requiring a passcode to shut down the phone isn't a good idea.
    do you know how many users forget their 4 digit passcode to unlock their phones - use the search function at the top right and you'll see all the threads.

Maybe you are looking for

  • Trying to get iTunes to work on an external drive.  Help?

    Okay, so my computer's main hard drive is pretty full, so I've been moving all my music to an external drive. The issue I'm having is that I can't get iTunes to work on that drive. I know I'm probably not phrasing this very clearly, sorry. But anyway

  • DMS Migration from AIX to windows

    Dear All, We are in process of migrating of SAP landscape from AIX to windows. We have idea of migrating ECC and BI from AIX to windows. But we are confuse, how to migrate SAP DMS from AIX to windows. Need you suggestion how to proceed futhure for mo

  • Cenvat related tax code cannot be used with freight

    Hi Error Cenvat related tax code cannot be used with freight . When i am try to save A/R Invoice i am getting this error. Scenario is           Amount = 389000           Packing Charges = 12000           Sub Total = 401000           BED = 64080      

  • Adobe Reader 10.1.3 uses max CPU when closed

    We're having the problem where Adobe Reader uses all of a CPU core when a user is closing the program but the .exe file is still running in the background. We're running 10.1.3 and have been using that since it was released but the problem just recen

  • Video Player in Adobe TV

    First of all, the app is just awesome and really thanks for everything you guys are doing. I just have a little thing wanna mention, which is about the video player in Adobe TV section. I would like the video to be more flexible just as it is in Adob