Can't show balance on N900?

Hello all,
Whenever i try and call *#10# it comes up with incorrect number and wont allow me to dial it, I use this to find out my credit on the 02 network.
Any users know how to over come this issue?
Thanks
Andrew

Andrew1993 wrote:
Hello all,
Whenever i try and call *#10# it comes up with incorrect number and wont allow me to dial it, I use this to find out my credit on the 02 network.
Any users know how to over come this issue?
Thanks
Andrew
make sure you have the EXTRAS-DEVEL  &  EXTRAS-TESTING  repos installed.
then install the *# Starhash Enabler.
to make if faster, so long as you have the rootsh installed, you can do:
open x-term
sudo gainroot
apt-get install starhash-enabler
after you install this, you should be able to use your *# codes.
works for me 
if this solved your issue, please mark as a solution and click on the green star TOO.
if this helped you in any way, please share your kudos and click on the green star

Similar Messages

  • Zero Balance clearing account shows balance?

    HI All,
    My "zero balance clearing account" shows balance and hence my trial balance is not matching.
    We have posted some WA(goods receipt) documents from MM side and cancelled those due to wrongly entered of internal order in those documents.And Debit line item is missing in those cancelled documents and hence credit amount is showing in my zero balance account.
    How can i get rid of this problem and match my trial balance ?
    Regards,
    Sumeya Offrin

    Hi Sumiya,
    Check the Trial Balance GL Line Item wise through FAGLL03/FBL3N - G/L Account Line Items.
    If any correction reverse the Entry do it again.
    One more Check the MM Transactions All materials are reversed are not.
    Check the Stock Balance in MB5B through GL Wise Stock Account.
    Regards,
    Kishore K

  • Can LR show the numbers in Quick developement panel?

    Try to use quick development panel, it is easy to use but for exposure, clarity and vibrance you cannot see how many stops you have adjusted.
    Can LR show the numbers in Quick development panel?
    Any comment?

    >tt688 - 6:49am Sep 23, 08 PST (#2 of 6)
    >I think that Quick Deve function is useless if you can not see the how >many stops you have adjusted.
    When LR first came out I did not "get" the Quick Dev function. Luminous Landscape have an excellent video tutorial for LR by Michael Reichmann and Jeff Schewe.
    It explains that the QD function is there to allow you to make quick visual adjustments to images to assist in choosing picks / rejects and generally culling a shoot. Until you have the exposure / contrast / colour balance somewhere near correct, it is difficult to properly evaluate a shot. Using QD like this then makes sense, it's not supposed to duplicate or take the place of the develop module.
    Note that the adjustments you make in QD are relative, that is if you select a group of generally underexposed shots and increase the exposure the amount will be relative to each shots original exposure level.

  • HI pls i am having problem with my iphone4s since i updated to 8.2 i can't check balance of my account and secondly if somebody call me it is indicating no with out name pls what is the solution

    HI pls i am having problem with my iphone4s since i updated to 8.2 i can't check balance of my account and secondly if somebody call me it is indicating number  with out name pls what is the solution

    When you have kernel panics, the pertinent information is in the panic report.
    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    In the Console window, select
              DIAGNOSTIC AND USAGE INFORMATION ▹ System Diagnostic Reports
    (not Diagnostic and Usage Messages) from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar.
    There is a disclosure triangle to the left of the list item. If the triangle is pointing to the right, click it so that it points down. You'll see a list of reports. A panic report has a name that begins with "Kernel" and ends in ".panic". Select the most recent one. The contents of the report will appear on the right. Use copy and paste to post the entire contents—the text, not a screenshot.
    If you don't see any reports listed, but you know there was a panic, you may have chosen Diagnostic and Usage Messages from the log list. Choose DIAGNOSTIC AND USAGE INFORMATION instead.
    In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.)
    Please don’t post other kinds of diagnostic report.
    I know the report is long, maybe several hundred lines. Please post all of it anyway.

  • Can you show slideshow within Lightroom 4.4 in Adobe RGB color space?

    Can you show slideshow within Lightroom 4.4 (not export out from LR) in Adobe RGB color space provided that you are using a wide gamut monitor which is capable and hardware calibrated & profiled to show such color space?
    If this is possible, what is required to do so in Windows 8 and i7-4770 & HD Graphics 4600 platform or does LR take care of it automatically?
    This is very basic question, however, I could not find a clear answer/info from LR documentation, so wish that someone can advice.

    Those settings are probably stored in a plist somewhere in ~/Library/Preferences. If you can locate the appropriate file, you should be able to copy it to all the network user folders.

  • How can we show data in rows when it is in Columns........

    I have strucked with a simple but a complex problem.
    I have a Report with data in vertical rows..need of the hour is how can we show that data into column structure.
    here is the table sample which i have in Database..
    Location      chrg_type    Effective_date
    xxxxxxx        xxxx          xx-xx
    thhis is the structure in effective date we have several months in it in a single column i want show the effective date or effective month in various columns instead of a single column.
    my required table is....
                                Effective_date     Effective_date
    Location      chrg_type     xx-xx              xx-xx
    xxxxxxx        xxxx          xx-xx
    any tough heads?????

    Hi Sunil,
    Your 1st problem is that you are going to need one more field to accomplish you goal. What type of data do want under your new date columns?
    Anyway, once you have that you need to move on to how to move the data out into columns based on date.
    Try something like this.
    0_Date = IF DATEPART('m',{tbl.Effective_date}) = DATEPART('m',CurrentDate) AND
    DATEPART('yyyy',{tbl.Effective_date}) = DATEPART('yyyy',CurrentDate)
    THEN {tbl.DataField}
    1_Date = IF DATEPART('m',{tbl.Effective_date}) = DATEPART('m',DATEADD('m', -1, CurrentDate)) AND
    DATEPART('yyyy',{tbl.Effective_date}) = DATEPART('yyyy',DATEADD('m', -1, CurrentDate))
    THEN {tbl.DataField}
    2_Date = IF DATEPART('m',{tbl.Effective_date}) = DATEPART('m',DATEADD('m', -2, CurrentDate)) AND
    DATEPART('yyyy',{tbl.Effective_date}) = DATEPART('yyyy',DATEADD('m', -2, CurrentDate))
    THEN {tbl.DataField}
    ... Repeat this process until you have all of the columns you need, following this format.
    Hope this works for you,
    Jason

  • My Samsung TV has a USB port. I connect the cable from the iPad to the TV to view a video on the TV. The video shows on the iPad but on the TV I can only get the pictures and music available on the iPad. Why is this and can I show videos from the IPad on

    My Samsung TV has a USB port. When I connect the cable from the iPad to the TV I can only show Pictures and Music. Why does the videos not appear and how can I show videos on the TV.

    This article should help you with that:
         http://www.ehow.com/how_7211806_display-iphone-tv.html
    Take care

  • Po deleted in ME2N but GR/IR is showing balance in FI

    Hi gurus,
    MM people has deleted purchase order but GR/IR is showing balance against said PO no.Whenever po gets cancelled,the entry to be reveresed in FI.But it did not happaen.It is showing open  GR/Ir in FI
    Pl advise.
    Regards,
    Samar

    You should cancelled or reversed MM document instead of FI document before you delete the PO.

  • Forms 6.0-- How can I show records in a block in different colours.

    In a multi record block, how can I show few records in one colour and few more in a different colour depending on a condition.

    Use DISPLAY_ITEM.
    This will change the visual attribute of the item in the current(!) record,
    set_item_property changes the attributes of the item in all(!) records.

  • How can I use Balancing, if I connected to two ISP?

    Hello,
    I have NetWare6sp3 with 3 NIC's and connected to two ISP. I set two default
    gateways (One to first ISP, Another to second ISP). But all of trafic goes
    via first gateway. Can I use Balancing beetween ISP1 and IPS2?
    Maxim Cuznetov

    Maxy,
    It appears that in the past few days you have not received a response to your posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at http://support.novell.com in both the "free product support" and "paid product support" drop down boxes.
    - You could also try posting your message again. Make sure it is posted in the correct newsgroup. (http://support.novell.com/forums)
    If this is a reply to a duplicate posting, please ignore and accept our apologies and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • HOw can i show a table(name given in parameters) in a report program

    I made a report in which there is a paremeter asking for a table name ....
    PARAMETERS TBLLE_NAME(10) OBLIGATORY.
    Now when I enter the table namke then how can i show its values....
    HINT:- We have to use fiels symbols....AND THE USER CAN ENTER ANY DDIC TABLE NAME having some records ...........

    You can display the contents of the DB table inputted using ALV.
    Pass the Structure name as the DB table name inputted.
    Use CL_ALV_TABLE_CREATE=>CREATE_DYNAMIC_TABLE to create the dynamic table of the same structure as the DB table passed.
    Once the above steps are done, the internal table with data can be displayed using ALV.
    Reward points for all helpful answers.
    Thanks,
    Balaji

  • How can I show album art in the mini player when playing songs from a plugged in iPhone?

    How can I show album art in the mini player when playing songs from a plugged in iPhone?
    When I play from my phone and switch to the mini player it's always showing the music notes in the thumbnaill. It'd be nice if it could get album art off of the phone.
    I'm on iTunes version 11.0.4.4

    He @mracole,
    it is very nice that you post a solution to complete the library with artwork for album's that do not have an artwork. Your solution perfectly addresses the problem for assigning artwork, BUT this thread is about CHANGING artwork for albums already uploaded into iTunes Match. Just try to replace for example a blue artwork cover for an album with a red one. If you made it in a simple way (without deleting the album from iTunes Match and local changes on the files with an external ID3-Application or 2 or more iTunes libraries on different Mac's) this is the right place to give a solution. I really tried for hours to change the artwork to make them visible in landscape cover flow mode on my iPhone5. In rare cases I made it, but then the covers sometimes where restored to the old onces - exacly how it is mentioned by Starhawk
    As long as there is no simple way to change the cover of an iTunes Match stored album (you can change title, artist and so on without hitting "update iTunes Match" over all distributed Library on different devices - this date will be synchronized almost instantly) I considered the behaviour from iTunes as BUGGY! For me the local artwork cache (and if there is any iCloud artwork cache - I don't know) do not interfere with iCloud. Even when I delete the whole local cache (album artwork music - everything) I do not manage to change the artwork.
    Regards from Munich, Germany

  • Can I show a data label for only one point in a series?

    Forgive a newbie question from an Excel convert, but can I show a value label for only one point in a data series? If yes, how?
    There are a number of graphs where I only want to value of either an extreme value or the ending value to show. Having all the labels in a series makes the chart too busy. This is pretty easy to do in Excel.
    If this can't be done, I guess that adding a text box over those points would work.
    Thanks

    Hi W-T,
    Welcome to Apple Discussions and the Numbers '09 forum.
    wahoo_tiger wrote:
    Forgive a newbie question from an Excel convert, but can I show a value label for only one point in a data series? If yes, how?
    Sure. Here's and example labeling only the MIN and MAX points.
    Column B contains the data charted with the blue line.
    Column C extracts the MIN and MAX values using the formula below. Those two values are charted as a separate series, using the green data point markers, and are labeled with their values. The intervening empty string values appear to have doused the lines connecting the two data points.
    Formula: =IF(OR(B=MAX(B),B=MIN(B)),B,"")
    Regards,
    Barry

  • When opening a new tab how can I show previoius history in the window?

    When opening a new tab, can I show the previous history in the new window?

    You can try middle-clicking (scroll wheel) the Back button which will open a new tab with the same History.

  • How can i show Bcc in my outgoing emails for Mac Lion 10.7.2

    How can i show Bcc in my outgoing email for Mac Lion 10.7.2  Bcc does not highlite in View.
    Noomee

    Reset the SMC: http://support.apple.com/kb/ht3964
    Should fix just this sort of thing.

Maybe you are looking for

  • RDP not working after installing Windows 2008 R2 Service Pack 1

    Hi, We have Windows 2008 R2 Data center editions with Service Pack 1 which we recently implemented. Now when i create new virtual machine in Hyper-V with Windows 2008 R2 Standard edition without Service Pack then i can able to take RDP of virtual ser

  • Ive just restored my iphone but it wont let me activate it now, either by wi-fi or through itunes. what do i do?

    Ive just restored my iphone but it wont let me activate it now, either by wi-fi or through itunes. what do i do? I just bought the phone off ebay and it was working fine before I tried to update it. This is when the problems started. Firstly, it woul

  • Default tax code in PO

    Hi All, I have a simple question to make tax code defaulted in PO for a plant (remember there is no material master in PO "K").when can I do that setting. I have checked preious threads which are of no use

  • Where Has PrintCentral for iPad Gone?

    Does anyone know why PrintCentral has disappeared from the App Store and from EuroSmartz own website? I've wanted it for a while, but needed to get a wireless printer first. Now it's gone. EuroSmartz seems to have made Print n Share its flagship app.

  • CSS horizontal menu with vertical dropdowns

    What I would like my menu to look like: - solid border on top and bottom - first-level menu items horizontal and centered - first-level menu items equally spaced as opposed to same widths - second-level menu items vertical and on individual lines Wha