Keeping track of total call time within current mo...

My new phone account has limited calltime included.. how can I keep track of the total time on outgoing calls in a given month? ( N8 )

Would you prefer a third party app or an inbuilt one? You can use the call log option on your phone, and check the "dialled numbers" timer. You would see how many minutes you have used. You can just clear these counters at the end of each month.
For third party app, you can try this: http://store.ovi.com/content/132391
If you find my post helpful please click the green star on the left under the avatar. Thanks.

Similar Messages

  • Keeping track of total running time for a quiz

    Is there a way to record how long it takes a student to complete a quiz in captivate? Would be interesting to see who takes 1 minute and who takes 10 minutes and compare their results.

    Not simply by default, but it's possible.
    See Lilybiri's humoursly post here:
    http://lilybiri.posterous.com/timer-widget-to-stress-your-learners
    Alternatively, if you are delivering via LMS, the LMS itself may be able to do this; some LMS products track a user's time within a lesson (from launch to close) automatically, and some do not.

  • How do I keep track of how many times a method is called inside anthr clas?

    I am writing code for a program that solves a Knight's Tour. A Knight's Tour is a path a Knight Chess piece can take around the board starting at any spot, touching every square once, and only once. I have to write 2 classes and one is provided. The provided class is encrypted and written by our professor. All I know that it does is simulates the game using the two classes I write and provides a print out and prompts to ask the user which square they want to move to next.
    The square class I have to write consists of a constructor that makes a square object that keeps track of its color (white/black) and its status (whether it has been visited, is occupied by the knight, or is free and has not be visited).
    The GameBoard class I have to write is what I am having problems with. I am writing a method that determines how many squares have been visited. The previous mentioned class that my professor wrote for me contains a method moveKnight();. The way the program works is that every time moveKnight() is called a square's status is changed to occupied and therefore visited later. moveKnight() will only work if the move requested by the user is a valid move.
    SO! My main problem (sorry for all the explaining, just trying to give you all the information) is that I don't know how to keep track of how many times moveKnight() is called by the program. If i can figure this out it should be simple. I'm new to java but i believe...
    if(moveKnight() is called)
    {count++;} //count is a member variable already initialized
    return count;
    the moveKnight() is called section within the if() statement is what I am unclear how to do. Please help.
    Thanks, Veritas

    in your case you want 'count' to be a class attribute rather than a local variable. But yes, incrementing it each time that the method is called will serve your purpose.

  • How to keep track of how many times a link has been clicked?

    How to keep track of how many times a link has been clicked or accessed? Do I need to use database for this?

    Hi
    Proably something like this can work,
    1> Have a servlet/bean invoked when the link is linked
    2> have a static variable in that servlet/bean wich gets incremented before the control is passed to another desired page..
    The problem with this approach is that care has to be taken that the servlet/bean is not re-instalised, in case of which the static variable will also be instalised and the data would be lost.
    The best thing is to store the count in the database.
    Regards
    Arathi.

  • '%Total Call Time ' in AWR report

    Hi.
    I have a quick question here,
    For the awr report, the ‘Top 5 Timed Events’ section, does anybody knows how the ‘%Total Call Time ‘ is calculated for each event listed there?
    Top 5 Timed Events Avg %Total
    ~~~~~~~~~~~~~~~~~~ wait Call
    Event Waits Time (s) (ms) Time Wait Class
    PX Deq Credit: send blkd 5,682,600 3,816 1 39.8 Other
    db file scattered read 91,236 1,681 18 17.5 User I/O
    CPU time 1,347 14.0
    log file sync 99,426 752 8 7.8 Commit
    log file parallel write 97,921 523 5 5.4 System I/O
    Thanks,
    Lei

    922884 wrote:
    Hi,
    Db version is 10.2.0.4.0
    What is meaning of waits and % Total Call Time in Top 5 Timed Events in AWR report? Waits is the number of times a session waited on a particular call
    % Total Call Time is the total time spent in this event divided by the db time, converted to a percentage.
    It gives you some idea of how signifcant this event was in the total time spent waiting by the user. Unfortunately the SQLNet times are excluded in the calculations, so there is a component of time that (from the end-users' perspective) is lost.
    How to read AWR report?Where i have to start from it?
    The best place to start is probably still the white paper about statspack produced by Oracle 11 years ago: http://www.oracle.com/technetwork/database/focus-areas/performance/statspack-opm4-134117.pdf
    How the values are calculated in awr? For example db time is 556.15 and elapsed time is 1,439.73 .
    elapsed time is the clock time between the start and end time of the snapshots, reportedin in minutes - in your case your report covers 24 hours which is generally far too long to be useful.
    db time is the time your sessions were active "inside" the database - again in minutes - and it's a measure of how much time you spent working. It is the sum of wait time and CPU time.
    Regards
    Jonathan Lewis

  • ITunes 11 and keeping track of number of times a track is listened to

    iTunes 11 does not keep track anymore of number of times a song is played. It keeps the number you had before but does not increase the number after it is played. Anybody else has the same problem?

    For that you need to have a shift register or a feedback node and keep counting whenever the case structure case is executed the count will be increased by one see the attached snippet.
    Good Luck
    The best solution is the one you find it by yourself
    Attachments:
    CaseStructure count.png ‏10 KB

  • How to track total call duration & data usage for ...

    How do I track my total call & data usage for Nokia Lumia 620. I had search for datasense from the store however unable to find? Is there any other applications that can be use to track.

    Datasense requires network support so if you can't see it your network doesn't support it. Some networks have their own apps in the store for monitoring data and some have mobile websites for that purpose.
    The only other app that can do it is "call credit" but it doesn't support every network, install it and see if yours is supported.
    http://www.windowsphone.com/en-gb/store/app/call-credit/cdd917a0-bef7-df11-9264-00237de2db9e

  • Keeping track of the number of hits

    Hi,
    I'm developing a website in JSP and what I want is to keep track of how many times a link on my site has been clicked on...
    Let me explain a little further: I have a links section with all types of links and i want to know how often these links are used
    Now, what's the "best" solution for this problem?
    Putting my links in a database or a just a file or XML, and how can I detect when someone has clicked on that link?
    Every solution is welcome
    Thx in advance
    GekkeGwuido

    The traditional way to do this is with a redirect. Basically you have a servlet or JSP that will be called anytime anyone clicks on a like. It contains a redirect parameter. For example, your HTML might look something like:
    <a href="http://www.yourdomain.tld/redirector.jsp?linkid=1234" />Then, in redirector.jsp you look up in, likely, a database what linkid 1234 is. Assuming you find it you update your database with whatever information you want about link 1234 and send a redirect to the URL that link 1234 is for.

  • How to access phone call timer iphone 4

    does the iphone 4 have call timers for phone calls anf if so how are they accessed

    With the Phone app, select Recents.
    Select the right facing arrow in a blue circle icon to the right of a call to view the call time.
    For total call time, Settings > General > Usage > Cellular Usage > Call Time. There is a Current Period and Lifetime. You can reset the Current Period time for calls and data.

  • Keeping count of how many times a case structure has been entered.

    I have a "Case" structure (when a button is pressed, it is "case True").
    I want to keep track of how many times this "case True" has been entered.
    How can I do this?
    Solved!
    Go to Solution.

    For that you need to have a shift register or a feedback node and keep counting whenever the case structure case is executed the count will be increased by one see the attached snippet.
    Good Luck
    The best solution is the one you find it by yourself
    Attachments:
    CaseStructure count.png ‏10 KB

  • How do I keep track of when a signal hits a certain voltage?

    I am fairly new to Labview, and I am having trouble with the following.  I am working on replacing a Digital Vector Filter with Labview software.  I have a rotating shaft with eccentricities, which are measured by X and Y proximitors.  Also, a keyphasor voltage keeps track of the rotation rate, which enables me to relate X and Y to each other. Essentially, I have to find when the keyphasor voltage hits -11 volts, and keep track of when that happens, then, keep track of the next time that happens, in order to get the time it takes for one revolution. I don't know if this makes a difference, but the data is coming in as dynamic data.  I want to be able to tell the user what the rotational rate is as the program is running.

    Thanks for the help!
    I have taken the vi you gave me and changed it to a bit.  The voltage going in is being sampled rather quickly, and thus there is no actual point that equals -11 Volts. I want to do something like the following: Check timer time, tm, and check:
    if tm-1 > -11 Volts   and tm < -11  
    do the following calculation to get the actual value time that voltage crosses -11 Volts, tk.
    tk= (tm-1) + (  (tm- (tm-1)     ) / ( Km - (Km-1)  ) )  *  (-11-(Km-1)),      where Km is the voltage at tm.
    I want to be able to do this streaming, to show the user what the tk value is live.  The only times I really need to save are tm and tm-1, from there I can save all the tk's in an array for further analysis.
    Please let me know if this is possible.
    Thanks 
    Attachments:
    keyphasordata.xls ‏1773 KB
    Barebones.vi ‏90 KB

  • Keeping track of VI numeber of exits.

    Hello 2 all !
    I was wondering ... is there a way to keep track of how many times a vi is stopped even if the user exits labview ?
    I mean like a counter for that vi. This counter should not be affected if the user exits LabView itself.
    Any ideas ?
    Can global variables be used to accomplish this task ?
    Thank you very much !
    Andrew.
    Solved!
    Go to Solution.

    Hello Mike !
    I've made a small and simple application and i want to distribuite it as a demo program. 
    So i was thinking to let the user run my application only a few times in the "evaluation mode" and then if he enters the correct pasword the program switches to "registred mode".
    Thank you 4 your suggestion! I was thinking at the same thing but i'm afraid that using this approach could get my little program cracked. 
    So i was thinking to use the global variables. Do they retain their values even if the user exits LabView ?
    Thank you very much 4 your time !
    Andrew.

  • IPhone Call time(lifetime) - Reset

    Is Apple plan to add an option to reset the liftime call time? Current reset statistic option only reset the current period time but not the lifetime.
    The only solution is to erase the content to factory setting and setup it up as new phone (cannot restore from the backup as the lifetime min will carried fwd from old phone)

    You have described the behavior exactly. Not sure what Apple might be thinking, but you can let them know your thougths by going to the feedback page, www.apple.com/feedback and click on the appropriate link.

  • Adding a counter that keeps track of the total number of times a loop has run, even if LabVIEW has been restarted.

    Hi all,
    I am writing a VI for measuring data and inserting it into a database. The measurements are controlled by a loop that runs once every minute. I want to give each measurement a unique id number and store this too in the database.
    To do this, I want to add a counter to this loop so that I can count the number of times the loop has executed in total. This is, even if the VI, LabVIEW or even th PC is restarted, I want the counter to keep track of the number of executions. If say, the loope executes two times and then the VI is stopped and restarted, I want the following number on the counter to be three.
    Does anyone have an idea about how to do this? I am gratefule for any help!
    Clara
    Message Edited by Clara G on 05-11-2010 08:21 AM
    Solved!
    Go to Solution.

    Not allowed to give away code but I can describe one of my "Totalizers" used to keep track of how much stuff has passed through a fliter so we know when to change it.
    THe Total izer is implemented as an Action Engine.
    It has three actions (methods)
    1) Init - Opens an ini file and reads the last values read and cahces these in shift registers. It also inits a timer so we now how long since the last file I/O.
    2) Update - Uses the data passed by the caller to update the totals. It also checks how long since the last save and if more than one minute it writes to the ini file (forced write).
    3) Read - returns the totals for display and evealuating if a an alarm should be triggered to change the filter.
    Note:
    THe pre-LV 8.6 version of the ini file exposed methods to allow writing to the file. The new ini functions do not expose that functionality and require closing the file.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • How to keep track of which tab is currently active in the page using Session object?

    Hi,
    Just curious as to whether it is possible to have a PL/SQL event fire on an active tab.
    The reason is I want to keep track of which tab is currently active on the page is that I have "generic" forms and reports published as portlets that I wish to be able to determine from the session object what page/tab the user is coming from and apply certain restrictions etc.
    kind regards,
    Matt.
    null

    Hi Konstantina,
    Yes You can do like that 2012-->q1-->January
    Steps:
    1. Create time dimension hierarchy as by following like Total--> year--> Quarter--> Month--> if you need you can keep Description.
    2. Drag the Year column from period dimension table to the dimension hierarchy of year.
    3. Drag the quarter column from period dimension table to the dimension hierarchy of Quarter.
    4. Drag the month column from period dimension table to the dimension hierarchy of month.
    5. Drag the hierarchy to period dimension table in presentation layer.
    In Answer side keep as it as Default: drill in primary and secondary interaction under column properties.
    For more refer : http://mkashu.blogspot.com
    Regards
    VG

Maybe you are looking for

  • Displaying Japanese in Browser from MySQL query

    Hi All, I have the following jsp where I am trying to query a MySQL database for japanese words and display them on a web page. <html> <head> <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%> <%@page import="java.sql.*" %> </head>

  • "The word ****" appears on my Itunes playlist. All other tunes appear to be deleted. Why did this happen

    "The word #### appears on my Itunes playlist. All other tunes appear to have been deleted.

  • Tabs open in new windows

    i use firefox with multiple tabs open.it always opens tabs i click on in new windows every time.im not dragging anything and its super f'ing annoying. == This happened == Every time Firefox opened == since the last update

  • Call bpws:getVariableData from xslt

    Hello, I need to access a global xml BPEL variable from my xslt script called by a ora:processXSLT function, from an assign block. In order to have this, I tried to call “bpws:getVariableData” inside the xslt, but I receive the following error at

  • Import excel to UDT by SDK

    Hi all, I am trying import excel to UDT by SDK. But I have a difficult to solve. In the UDT, it has a Time column and has been formated is hour type, I create a excel file have a Time column, too. I format Time column in the Excel is number type. In