How To see previous Call duration and timing in C3

I had an Nokia C3 which i bought a week ago, i want to get the call duration and timing of calls which i get previously from the same number.
For ex.
I got a call from number say 123456789 at yesterday evening, but if i get call from same number today morning then call details like timing and call duration of yesterday got lost.
so how to get them and see them

Hit the green call key in standyby
now look at top of screen you should see three boxes,scroll across with the DPAD
Or go to menu then apps then log this brings you to same as above
If  i have helped at all a click on the white star below would be nice thanks.
Now using the Lumia 1520

Similar Messages

  • Reg: how to see the vendor details and general ledger details in tables

    HI all
    how to see the vendor details and general ledger details in tables.
    regards
    JK Rao

    General ledger transactions are available in following table;
    1. BKPF & BSEG
    2. BSIS - Open Items
    3. BSAS - Cleared Itesm
    For vendor
    1. BSIK - Open Items
    2. BSAK - Cleared Items
    For Customers
    1 BSID - Open Items
    2. BSAD - Cleared Items
    Regards
    Rakesh Pawaskar

  • How to see detail call text info on myverizon

    HHow can I see all call and texts made through my verizon.  Want to see all callas made and received and same for texts.

        @Gmw1951,
    Keeping track of you call and messaging history is definitely important! And your online My Verizon is a great way to get this done.
    You can view your call history for the last 12 statements as well as the messaging details for the last 3 months. There you will be able to view the date, time, and number of the calls and message send and received. If you are looking for iMessage history that will not appear in the message history.
    I am not exactly sure what specific information you're looking for. Please provide details so I can better assist. Is there a particular call or message you're looking for?
    To view the call or message details follow the below steps:
    Sign in to My Verizon.
    If necessary, expand the left hand Manage My Account menu.
    Click the View Usage link (or the Get Usage Details link on the home page). The My Usage page displays an Overview of usage combined for all lines on the account.
    An Account Members only sees his usage.
    If you want to see usage for one line only, click the desired line.
    Note: After a plan change, only the prorated amount shows.
    If you want to see more detail about a usage type do one of the following:
    Click a usage type tab from the top navigation bar (MINUTES, MESSAGES or DATA).
    Click the Breakdown of Recent Activity link by the desired usage type.
    The Breakdown by Usage Type displays for your line selection (All Lines or the one you selected).
    If you are viewing the Breakdown by Usage Type, choose a line from the CALL, MESSAGE, or DATA dropdown list.
    Unbilled call detail may be a little delayed displaying.
    Keep me posted if you need further assistance.
    JohnB_VZW
    Follow us on Twitter @VZWSupport

  • How to see ALL CALLS on iPhone 4

    I read in one of these forums from 2012 that to see ALL CALLS received/made from an iPhone, not just recent calls, you need to create a My Verizon account, then go to usage, then click on usage details and you will be able to see all your calls. This, however, does not seem to be working. It only shows me how many minutes, calls, texts, etc. i've made, not which phone numbers I called or which phone numbers called me. How do I access this information from farther back than just my recents? Thanks :-)

    kateCO1652 wrote:
    I read in one of these forums from 2012 that to see ALL CALLS received/made from an iPhone, not just recent calls, you need to create a My Verizon account, then go to usage, then click on usage details and you will be able to see all your calls. This, however, does not seem to be working. It only shows me how many minutes, calls, texts, etc. i've made, not which phone numbers I called or which phone numbers called me.
    It sounds like you are on a family plan, but not the account owner... or as MatthewS pointed out, you did not set yourself as the account owner when you set up the account.
    If you are a secondary line, you will only see summary information; the account owner can see the details for all lines (all numbers called and received). 
    HTH.

  • How to see lock on table and query?

    Hi All,
    How do we see lock on table and query?
    Thanks,
    Rafi

    Yes Rafi,
    It is working fine at my end. See below:
    Opened Session 1 with scott/tiger and:
    update emp set ename='xx' where empno=7499;
    Opened Session 2 with scott/tiger and:
    update emp set ename='xx' where empno=7499;
    <<Its lock here>> This session is locked by above one.
    Opened Session 3 with sys/pw as sysdba and:
    SQL> set serveroutput on
    SQL> BEGIN
      2  dbms_output.enable(1000000);
      3  for do_loop in (select session_id, a.object_id, xidsqn, oracle_username, b.owner owner,
      4  b.object_name object_name, b.object_type object_type
      5  FROM v$locked_object a, dba_objects b
      6  WHERE xidsqn != 0
      7  and b.object_id = a.object_id)
      8  loop
      9  dbms_output.put_line('.');
    10  dbms_output.put_line('Blocking Session : '||do_loop.session_id);
    11  dbms_output.put_line('Object (Owner/Name): '||do_loop.owner||'.'||do_loop.object_name);
    12  dbms_output.put_line('Object Type : '||do_loop.object_type);
    13  for next_loop in (select sid from v$lock
    14  where id2 = do_loop.xidsqn
    15  and sid != do_loop.session_id)
    16  LOOP
    17  dbms_output.put_line('Sessions being blocked : '||next_loop.sid);
    18  end loop;
    19  end loop;
    20  END;
    21  /
    Blocking Session : 139
    Object (Owner/Name): SCOTT.EMP
    Object Type : TABLE
    Sessions being blocked : 134
    PL/SQL procedure successfully completed.HTH
    Girish Sharma

  • How to update previously modified Image and prevent from reverting?

    Below is my code for updating a painComponent:- it basically zooms in on a particular image. The zooming works for the first try. But since the Image ITSELF isnt updated if i try to zoom in on the zoomed image its actually trying to zoom the original image since my g.drawImage() has the original Image (not zoomed). Is there anyway to update the Image so that it is the previously zoomed image and not the original? I searched for "zoom" throughout the boards and no one seemed to brough this "problem" up. Can someone help me out? thanks
    public void paintComponent(Graphics g) {
    g.drawImage(zoomingImage,0,0,(int)zoomFrame.getWidth(),(int)zoomFrame.getHeight(),((Point) zoomStartPoints.lastElement()).x,((Point) zoomStartPoints.lastElement()).y,((Point)zoomEndPoints.lastElement()).x,((Point) zoomEndPoints.lastElement()).y,Color.WHITE,null);}
    setOpaque( false ); // background will not be painted by super.paintComponent()
    if (startPoint != null && endPoint != null) {
    int x = Math.min(startPoint.x, endPoint.x);
    int y = Math.min(startPoint.y, endPoint.y);
    int width = Math.abs(endPoint.x - startPoint.x);
    int height = Math.abs(endPoint.y - startPoint.y);
    g.drawRect(x, y, width, height);
    if (dragged ) {
    g.drawImage(zoomingImage,0,0,(int)zoomFrame.getWidth(),(int)zoomFrame.getHeight(),((Point) zoomStartPoints.lastElement()).x,((Point) zoomStartPoints.lastElement()).y,((Point) zoomEndPoints.lastElement()).x,((Point) zoomEndPoints.lastElement()).y,Color.WHITE,null);
    dragged = false;
    super.paintComponent(g); }

    http://feeds.feedburner.com/
    http://feeds.feedburner.com/scottwimberly/JDaY is my URL to see what I have done.

  • How can i see previous sent mail and junk mail on my new iMac?

    Hi guys.
    I'm new imac user.I use Mavericks 10.9.When i install my mail accounts one of them which is Hotmail my imac downloaded whole incoming box.this is ok.But didnt download previous sent outgoing mail.So my outgoing folder empty.And how can i see my junk mail on my new imac's mail app.
    Thanks all

    Is anybody know these answers?

  • 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

  • Numbers Files: How to see previous versions

    How do you see all previous versions of the files

    If you are using Numbers on the Mac and you have a document open, try this (in your File menu):
    If you don't have a document open (perhaps because it refuses to open) you can use Time Machine.
    In Finder hold down the option key and Go > Library > Mobile Documents > com~apple~Numbers.
    Go back in Time Machine on the folder and 'Restore' the version you want.
    SG

  • How to see data being downloaded and uploaded by Mac?

    hey guys, i just saw a screenshot of a Lion desktop which had the user's memory usage, data being downloaded and uploaded and CPU usage at the top right near the clock. i was just wondering how i could get this on my desktop.    
    thanks

    Yes it is is like a small istat..Same developers,same website,i see you didn't check muck ...
    Here it is anyways:
    http://www.islayer.com/apps/istatnano/

  • HT201303 how to see my security question and answer

    Is there any way to see my old security question and answer? I know my I.D and password, but lets all admit...security questions are a B. I can't remember any of them and i'm trying to download N.O.V.A 3 on the computer to de-compress the file then transfer it to my phone. This is a new macbook and it says something to the effect "Since your using a new computer, plese provide your security question answer." I mean...honestly....I put in my password..is that not enough?? Anyways, if anyone can direct me or instruct me how to view these, it would be greatly appreciated! HURRY! NOVA3 is on sale for .99! I don't want it to end because I ran out of time.

    Nevermind .____. Its working. I got it. Its ok.

  • How to see previous document version in the new Pages?

    I found the new Pages missed the function of back to previous version? This is a very useful and unique function on Pages, I found that it is also disappeared in Pages 09 after I upgraded to OSX 10.9, anybody know where to find out this function?
    Tony

    The feature is now a bit hidden. Go to the menu bar under File > Revert To > Browse All Versions…. – there you'll find the good old version browser.

  • How to see SA subject area and access SA_TABLE in database

    Helo,
    Iam using OBI EE 10.1.3.3.1.
    I need to send the ibots alerts to the people who are not the OBI users.
    So, I read in the post to make some configurations changes in SA subject area.
    But, I am not able to see this in Answers. Also, how to access the tables for this?
    thx,
    parag

    I don't know.. maybe it is deleted from the repository?
    On this page:
    http://download.oracle.com/docs/cd/E12096_01/books/admintool/admintool_RepositoryFinal23.html
    you can read:
    NOTE:  For Oracle BI Application customers, the SA System subject area is preconfigured in their Oracle BI repository.
    Regards,
    Stijn

  • How to see previous frame in light grey?

    Im using adobe pro flash cs3. Im trying to draw a simple
    stick figure, but its hard to draw in the next frame because I cant
    see the previous stick figure to accurately draw the next position.
    Please Help

    zj0nzj0n wrote:
    > Im using adobe pro flash cs3. Im trying to draw a simple
    stick figure, but its
    > hard to draw in the next frame because I cant see the
    previous stick figure to
    > accurately draw the next position. Please Help
    >
    Use the Onion Skin button.
    It's a first button on the left hand side down the timeline
    where is you FPS
    (frame per second) indicator.
    This features is meant just for that purpose.
    Best Regards
    Urami
    "Never play Leap-Frog with a Unicorn."
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • How do record my calls incoming and outgoing on my iPhone 3gs

    A friend of mine has an application on his Nokia mobile that allows him to record all incoming and outgoing calls, this is useful to allow the review of conversations to make sure you get what has been requested correct, I receive numerous calls during the day from customers and this would make sure my memory has got things right.
    Is there a similar application for the iPhone?

    If you have a Mac, import through iPhoto, and if you have WIndows, select import Photos in Autoplay.
    http://support.apple.com/kb/ht4083
    Once they're on your computer, send the files into a folder that will show up in iTunes, which you can then sync with your iPad.

Maybe you are looking for

  • Encoding problem (c++ parser v2).

    Hi, I have problems with parsing XML that contains locale specific chars. My ORACLE_HOME and ORA_NLS env. vars are set correctly. Here is a sample: <?xml version="1.0" encoding="ISO-8859-1"?> <ROOT> <TEST>i</TEST> </ROOT> After xmlparse() method call

  • Server name not showing up in Chooser

    mac OS 10.1.3 server. The server name is not showing up in the Chooser,. I can get to it by typing in the IP address, but this is a pain for my teachers. It showed up for a long time, but now it will not show up. Any ideas?

  • Mtrace profiling on tomcat war

    I wanted to see a very simple example of JVMTI. For that I included the sun provided sample mtrace.dll and mtrace.jar (with couple of sysouts and again I created a jar) in tomcat 6.0 bin directory and also from Tomcat configuration I provided -Xbootc

  • Duplicates in iTunes Media Folder

    Okay, so first a little background. I had to reformat my Mac awhile back due to an issue with some beta software. Now, my Mac is back to working again... but since I had to redownload everything from iTunes Match to keep from having to redo the match

  • Point of View errror

    Ok this worked last week, now today in class its not functioning...I can go in and set up the POV but I don't see it in cube navigator or the Personal variable selections...anybody else ran into this??? Version 6.5 thanks