What is missing in the N8-00?

I don't want to start a discussion here. Just post what you found to be missing in the N8-00 and should be added as soon as possible.
A friend pointed this out:
- You can't call someone straight out of the box when you're in your "Sent" folder by clicking the receiver's phone number (you can do it in the Inbox folder).
Why should it be there? Sometimes you send an SMS to someone and you don't want to save the number. A little later, you want to call that person, wouldn't it be nice if you could go to the message and use the number without writing it down to paper or keeping it in your memory?

Someone Kinda started a similar post, always adviseable to use the search tool  !
/t5/Nseries-and-S60-Smartphones/Nokia-N8-firmware-suggestions-here/td-p/770976
If I have helped at all, a click on the White Star is always appreciated :
you can also help others by marking 'accept as solution' 

Similar Messages

  • What's missing in the Student/Teacher Edition?

    I'm looking into purchasing the "Adobe Creative Suite 5 Production Premium Student and Teacher Edition."  I imagine, because it's the Student/Teacher edition, After Effects (as well as the other Adobe programs) will be missing some features/tools, that are only available in the non-Student/Teacher edition.  What are those missing features/tools?

    Nothing is missing.
    from the "Student and Teacher Edition FAQ":
    "Adobe Student and Teacher Editions are the same full versions of some of  our commercial software titles, priced at discounts for students,  faculty, teachers, and administrators.          "

  • Can someone please tell me what I missed and the mistakes I made in package

    The following package compiled alright but did not execute because it is hung up with my ref cursor. Please help.
    CREATE OR REPLACE PACKAGE BLU_Providers IS
    NAME: BLU_Providers
    PURPOSE:
    REVISIONS:
    Ver Date Author Description
    1.0 3/16/2005 1. Created this package.
         TYPE rcRetProviderInfo IS REF CURSOR;
              PROCEDURE GetProviderList
                             (                              pi_maxResults                                                       IN                                                   smallint := 600,
                                                                pi_providerLName                                        IN                                                       varchar2,
                                                                pi_providerCity                                             IN                                                       varchar2,
                                                                pi_providerState                                        IN                                                       varchar2,
                                                                pi_SpecialtyCde                                             IN                                                       varchar2,
                                                                pi_prvNetwork                                                       IN                                                       varchar2,
                                                                pi_prvTaxID                                                                 IN                                                       varchar2,
                                                                po_out_status                                                       OUT                                                  NUMBER,
                                                                po_out_message                                                  OUT                                                  varchar2,
                                                                po_prov_list                                                            OUT                                                  BLU_Providers.rcRetProviderInfo);
    END BLU_Providers;
    CREATE OR REPLACE PACKAGE BODY BLU_Providers AS
    NAME: BLU_Providers
    PURPOSE:
    REVISIONS:
    Ver Date Author Description
    1.0 3/16/2005 1. Created this package body.
                             PROCEDURE GetProviderList
                             (                              pi_maxResults                                                       IN                                                   smallint := 600,
                                                                pi_providerLName                                        IN                                                       varchar2,
                                                                pi_providerCity                                             IN                                                       varchar2,
                                                                pi_providerState                                        IN                                                       varchar2,
                                                                pi_SpecialtyCde                                             IN                                                       varchar2,
                                                                pi_prvNetwork                                                       IN                                                       varchar2,
                                                                pi_prvTaxID                                                                 IN                                                       varchar2,
                                                                po_out_status                                                       OUT                                                  NUMBER,
                                                                po_out_message                                                  OUT                                                  varchar2,
                                                                po_prov_list     OUT BLU_Providers.rcRetProviderInfo)
                             IS
                             vsql VARCHAR2(2000);
                             vYes VARCHAR2(1);
                             NAME: GetProviderList --rcRetProviderInfo.cursorType)
                             PURPOSE:
                             REVISIONS:
                             Ver Date Author Description
                             1.0 3/16/2005 1. Created this procedure.
                             NOTES:
                             Automatically available Auto Replace Keywords:
                             Object Name: GetProviderList
                             Sysdate: 3/16/2005
                             Date and Time: 3/16/2005, 1:27:05 PM, and 3/16/2005 1:27:05 PM
                             Username: (set in TOAD Options, Procedure Editor)
                             Table Name: (set in the "New PL/SQL Object" dialog)
                             BEGIN
                                            vYes := 'Y';
                             vsql := 'SELECT
                                                                               (SELECT count(*)
                                                                                    FROM
                                                                                                                       doris.PROV_MASTER PM,
                                                                                                                       doris.PROV_SPECIALTY PS,
                                                                                                                       doris.PROV_ADDRESS PA
                                                                                    WHERE
                                                                                                                  PS.SEQ_PROV_ID = PM.SEQ_PROV_ID AND
                                                                                                                  PM.SEQ_PROV_ID(+) = PA.SEQ_PROV_ID AND
                                                                                                                  PA.PRIMARY_ADDRESS = vYes) AS numProviders,               
                                                                               PM.PROVIDER_ID,
                                                                               PM.LAST_NAME || '' '' || PM.FIRST_NAME AS ProviderName,
                                                                               PS.SPECIALTY_TYPE AS SpecialtyCde,
                                                                               (                                                                                SELECT
                                                                                                                                                                                                       DESCRIPTION
                                                                                                                                                                    FROM           
                                                                                                                                                                                                       doris.PROV_TYPE_MASTER PTM
                                                                                                                                                                    WHERE
                                                                                                                                                                                                  PS.SPECIALTY_TYPE = PTM.TYPE_OR_SPEC_CODE) AS Specialty,
                                                                               PA.SITE_CODE AS prvLocNum,                                                                                                                   
                                                                               PA.ADDRESS_LINE_1,
                                                                               PA.ADDRESS_LINE_2,
                                                                               PA.CITY,
                                                                               PA.STATE,
                                                                               PA.ZIP_CODE,
                                                                               PA.INACTIVE_IND
                                                 FROM
                                                                          doris.PROV_MASTER PM,
                                                                          doris.PROV_SPECIALTY PS,
                                                                          doris.PROV_ADDRESS PA,
                                                      doris.PROV_CONTRACT PC
                                                 WHERE
                                                                               PS.SEQ_PROV_ID = PM.SEQ_PROV_ID AND
                                                                               PM.SEQ_PROV_ID(+) = PA.SEQ_PROV_ID AND
                                                                               PM.SEQ_PROV_ID = PC.SEQ_PROV_ID AND ';
                                                      -- If there is no null field in the provider last name          
                                                      if (pi_providerLName IS NOT NULL) THEN
                                                                     vsql:=vsql || 'UPPER(PM.LAST_NAME) like ' || '''' || UPPER(pi_providerLName) || '%' || '''' || ' AND ';
                                            END IF;     -- If there is no null field in the provider last name                    
                                                      -- If there is no null field in the provider City     
                                                      if (pi_providerLName IS NOT NULL) THEN
                                                                     vsql:=vsql || 'UPPER(PA.CITY) like ' || '''' || UPPER(pi_providerCity) || '%' || '''' || ' AND ';
                                            END IF;     -- If there is no null field in the provider City
                                                      -- If there is no null field in the provider state          
                                                      if (pi_providerLName IS NOT NULL) THEN
                                                                     vsql:=vsql || 'UPPER(PA.STATE) like ' || '''' || UPPER(pi_providerState) || '%' || '''' || ' AND ';
                                            END IF;     -- If there is no null field in the provider state
                                                      -- If there is no null field in the provider Specialty Code          
                                                      if (pi_providerLName IS NOT NULL) THEN
                                                                     vsql:=vsql || 'UPPER(PS.SPECIALTY_TYPE) like ' || '''' || UPPER(pi_SpecialtyCde) || '%' || '''' || ' AND ';
                                            END IF;     -- If there is no null field in the provider Specialty Code          
                                                      -- If there is no null field in the provider Network or LOB          
                                                      if (pi_providerLName IS NOT NULL) THEN
                                                                     vsql:=vsql || 'UPPER(PM.LAST_NAME) like ' || '''' || UPPER(pi_providerLName) || '%' || '''' || ' AND ';
                                            END IF;     -- If there is no null field in the provider Network or LOB     
                                                      -- If there is no null field in the provider Tax ID          
                                                      if (pi_providerLName IS NOT NULL) THEN
                                                                     vsql:=vsql || 'UPPER(PC.TAX_ID) like ' || '''' || UPPER(pi_prvTaxID) || '%' || '''' || ' AND ';
                                            END IF;     -- If there is no null field in the provider Tax ID                         
                                                      --Finish the query
                                                      vsql:=vsql || 'PA.PRIMARY_ADDRESS = ' || '''' || vYes || '''' || ' AND ROWNUM <= ' || pi_maxResults || ' ';
                                                      --Pass all the dynamic sql above to the ref cursor
                                                      OPEN po_prov_list FOR vsql;
                                                 po_out_status := 0;
                                                 po_out_message := 'Got Provider Data';
                             EXCEPTION
                             WHEN OTHERS THEN
                                                      po_out_status := SQLCODE;
                                                                               po_out_message := SUBSTR(SQLERRM,1,100);
                             END GetProviderList;
    END BLU_Providers;

    Did you get a particular error when you ran the stored procedure?
    As an aside, I would generall do this in static SQL via something like
    SELECT *
      FROM <<table name>>
    WHERE (parameter_1 IS NULL OR
            UPPER(column_1) LIKE UPPER(parameter_1))
       AND (parameter_2 IS NULL OR
            UPPER(column_2) LIKE UPPER(parameter_2))If you have not already created function-based indexes on UPPER(column_1), UPPER(column_2), etc. that would probably be a performance benefit.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • What is missing from Photoshop CS6 ???

         I tried the new PhotoShop CS6 (beta) but aside from some innovations of which my favorite is the interface (The interface is one of the best innovation that Adobe have made finally an interface that does not make you eyes hurt) and content aware move tool (content aware is definitely the best technology in Photoshop, may in the future in Photoshop CS20 will be voice-activated and will do exactly what you say even to draw for you) and maybe the new brushis, nothing that new, especially for those who draw in Photoshop concept artists, Ilustrators and so on ... etc
          In my opinion what is missing from the famous Photoshop CS 6 and should have been is :
         1 : Live symmetry drawing (horizontal and vertical) even the simplest programs like Alchemy / Sketchbook Pro and new Painter 12 has the function they have gone beyond the horizontal and vertical with the function of Kaleidoscope. I really like how the brush works in Alchemy especially in symmetry, in Sketchbook Pro are not so good in symmetry, unless thei are round but if you have a strange shapes thei tend to function as a parallel very strange but it is ther why the famous Photoshop does not have this function ??? I hoped that in PS CS6 (beta) to be, but no, I do hope maybe in the CS7 will be,
         2: I would like to make several sets of brushes, but in different windows on the screen at the same time not only a big one something like Corel Painter 12
         3: If you put a 3d function why do you tried to do something like the Google SketchUP fast, simple to use and easy to learn, or a simplified version of ZBrush sculpture in 3d clay ???
         Ok now let's talk about Bridge CS6: same functions, nothing so new, I hope that in the cs6 to implement something like the function of ACDSee Photo Manager 12 for example:
         Preview Thumbnails in a files, shortcuts that can be modified, such as double click I want to open fullscreen preview not send in photoshop or Camera Raw etc, why not the same as Photoshop, to make what I want to what I want, preview window to have the option of framing the image even if it is small or large (fit image, reduce or enlarge) the same for full screen mode the image will be framed by the edges of the screen (fit image height or widthand reduce or enlarge) from there if you want 100%, 200% etc. and many others
         What is right, there are many other features that I like and love in Bridge much more than ACDSee 12 such as preview multiple images at the same time in preview window and Review Mode (one of my favorite) and many others but ...   ... What was more important to me I said maybe for someone else is something else missing ...

    Trevor.Dennis wrote:
    …Why on earth would you want to restrict Photoshop?…
    Because I may consider it to be bloated already?
    Because I don't need to be driving around in a motor home when my car fills my needs?
    Because I don't need a hammer that doubles as a screwdriver or water-heater when I need to drive a nail?
    Because a scalpel may be more useful for my purposes than a Swiss-army knife?
    Because I would prefer the engineering team to work on refining existing features and improving stability rather than add features that are better served in drawing and painting applications?
    Because I'm not particularly impressed by some of the new "features"?
    Because I would prefer to see improvements to the History panel as have been suggested and requested over the years?
    I could think of many more such reasons why.
    Trevor.Dennis wrote:
    …I suspect there are a great many features in existing versions of Photoshop that you don't use…
    Duh!    Precisely! 
    Software bloat adds to the cost of developing and maintaining an application, delays the release of bug fixes and genuine improvements of existing features and eventually demands greater hardware resources.
    I have no clue as to what the he!! your "Prime Minister" quote is supposed to mean in the context of this discussion, unless you're implying that you feel like a 21-year-old whippersnapper who knows everything.  From your avatar picture you look younger than I am.  Besides, I know of very few "prime ministers" who are, were or have been particularly knowledgeable about "everything", so that may not even be a requirement for the job. 

  • I run a mac air on a single user account but multiple people using it, which is ok for the situation. All have their accounts in the apple mail app. what is missing for me is a separate password to access the mail account. otherwise anyone can see anyones

    I run a mac air on a single user account but multiple people using it, which is ok for the situation. All have their accounts in the apple mail app. what is missing for me is a separate password to access the mail account. otherwise anyone can see anyones
    Any clue, how i can add a mail account to apple mail app, but with separate password / pin to open it.
    Years ago there was a program called mail switcher which added this functionality, but thats gone.
    cheers
    Tom

    They would have to be logged in as separate users in order not to see your account in Mail. Whatever accounts put in Mail under your account will show up. All mail accounts usually have there own user and password. The only thing you can do is to remove the password from Keychain and take the account offline so you don't keep getting prompts for passwords each time it checks for mail.
    Not a great solution.
    Best way is to give the other user their own user account with their own mail and enable fast user swithcing to log between the different users if all access the computer frequently.

  • While installing windows with bootcamp error showing "A require Cd/Drive driver is missing" in the middle of installation. Please help what to do ??

    While installing windows with bootcamp error showing "A require Cd/Drive driver is missing" in the middle of installation m not able to install windows on my mac . Please help what to do ??

    What DVD drive are you using?

  • HT201210 Itunes will no longer open with the error message MSVCR80.dII is missing from the computer, and I'm advised to reinstall itunes but that hasn't worked.  What else can I try?

    Itunes will no longer open with the error message MSVCR80.dII is missing from the computer, and I'm advised to reinstall itunes but that hasn't worked.  What else can I try?
    Thanks for your help
    Pippa

    Click here and follow the instructions.
    (98708)

  • Safari is giving me a missing plug in message when I try to view things like movie trailers. The trailers play on Firefox, so I'm not sure what's missing from Safari.

    Safari is giving me a missing plug in message when I try to view things like movie trailers. The trailers play on Firefox, so I'm not sure what's missing from Safari.  I have Safari 5.0.6 and Mac OS X 10.5.8.

    I just noticed that it won't play some newsite videos anymore either. What plug in do I need to update (if that's the problem)?

  • What does this mean: "The program can't start because MSVCR80.dll is missing from your computer.  Try reinstalling the program to fix this problem"?  I tried reinstalling, but I get an error message saying something about permission to launch services.

    What does this mean: "The program can't start because MSVCR80.dll is missing from your computer.  Try reinstalling the program to fix this problem"?  I tried reinstalling, but I get an error message saying something about permission to launch services.

    Solving MSVCR80 issue and Windows iTunes install issues.

  • Which log file will give the info about what is missing in sales document

    Hello SAP gurus
    I am trying to send a quote from our application to get saved in SAP using .Net Connector. I get the following error messages
    S  V4   233  SALES_HEADER_IN has been processed successfully
    S   V4  233  SALES_ITEM_IN has been processed successfully
    W  V1  555  The sales document is not yet complete: Edit data
    I am looking for any kind of incompletion log that will give more info about what is missing etc.,
    Where can I find such a log. Your feedback will be greatly appreciated.
    Tks
    Ram

    Hi,
    Just check this path.
    Go to sales order->Edit->Incompletion log.
    This  tells your docuement status. If at all your document is incomplete,you can just see what all you are missing.
    Thanks
    KV

  • HT201412 what do you do when your phone numbers no longer have the contact persons name just a number. Also names are missing from the address  book where contacts are.

    what do you do when your phone numbers no longer have the contact persons name just a number. Also names are missing from the address  book where contacts are.

    I, too, love everything about my phone. The other day I tried to crash my Z10 by running multiple apps and having videos running in the background. Do you think my Z10 showed any signs of slowing down? Nothing doing! It ran as smooth as silk. I'm very impressed.
    Cheers.
    - If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

  • What is SMbus? What do I miss if the OS (Windows 7) does not detect it?

    This weekend I tried the public beta of Windows 7 and all hardware in my PC is detected except the ICH10 SMBus controller of my P45 Neo 3 FR mainboard.
    What does the SMBus do? What functionality do I miss if the OS does not detect it? (or rather: detects it, but offers no drivers)
    Would it be safe to use the brand new "all OS" Intel Inf (9.1.0.1028 WHQL) drivers in Windows 7?

    You could DL the INF Update Utility from intel....once downloaded and extracted you will see a folder in it called "all"
    http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&ProductID=816&DwnldID=16026&strOSs=163&OSFullName=Windows Vista*&lang=eng
    Goto control panel>device manager than click on SM bus controller properties...update driver manually and point it to the folder called "all"
    It will go thro the folder an find your proper driver 
    this thread should probally be moved to the W7 section

  • What will happen to the organization of library if I removed the songs from windows explorer? Will iTunes automatically updated without all the deleted songs, or it will indicate 'missing location'? Any fast ways to clear this 'missing location' songs?

    What will happen to the organization of library if I removed the songs from windows explorer?
    Background: I found it easier to identify duplicated songs in windows explorer as the songs will be renamed .... 1.mp3, thus enabling me to remove the duplicated songs; unlike in iTunes where I know the trick of showing duplicate songs, but you don't know which one is the one with 1 at the end of the file name.
    Will iTunes automatically update the library without all the deleted songs, or will it indicate 'missing location' songs? Any fast ways to clear this 'missing location' songs by highlighting them all and delete all at one go?
    Thanks.

    One way is to use iTunes Folder Watch with its option to check for dead tracks on start up.
    Another option is with a set of Lost & Found playlists.
    Lost & Found
    Create a playlist called Found, select everything in Music and drag it into the Found playlist. Create a smart playlist called Lost matching All the rules Playlist is Music and Playlist is not Found. Your lost tracks will be in this playlist. You can delete them all with a Ctrl-A to select them and Shift-Delete to remove them.
    You can then delete the Lost & Found playlists.
    tt2

  • HT1819 I noticed that some of my podcast are missing from the iTunes store. What is the cause of that?

    I noticed that some of my podcast are missing from the iTunes store. What is the cause of that?

    That suggests that the tracks are damaged.
    If your country's iTunes Store allows you to redownload purchased tracks, I'd delete your current copies of the dodgy tracks and try redownloading fresh copies. For instructions, see the following document:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    Otherwise, I'd report the problem to the iTunes Store.
    Log in to the Store. Click on "Account" in your Quick Links. When you're in your Account information screen, go down to Purchase History and click "See all".
    Find the items that are not playing properly. If you can't see "Report a Problem" next to the items, click the "Report a problem" button. Now click the "Report a Problem" links next to the items.

  • I have Mac mini and there is partition of boot camp but some miss understanding the osx 10.8.2 is deleted and while I m going to recovery mode the portition can not removing and the also cant repaired what I do I need urgent help ???? Please ?????

    I have Mac mini and there is partition of boot camp but some miss understanding the osx 10.8.2 is deleted and while I m going to recovery mode the portition can not removing and the also cant repaired what I do I need urgent help ???? Please ?????

    Do you have a Time Machine backup or clone?  If not,
    all is lost if you have in fact deleted your OSX partition
    and you will have to do a reinstall from Recovery HD
    and install all else.

Maybe you are looking for