How to check iphone 4 original or not ?

Actually i brought i phone 4 from Bangkok yesterday. i doubt its not a original i phone 4..
1. In box, they mentioned " iphone 4G " instead of iphone.
2. @Handset,
On apple site images: below "I phone 4" charecters one line space, where in my phone its specified 32GB.
3. Since in my phone i able to insert big sim (india model), where i read only micro sim accept iphone 4.
Please clarify me whether its fake or original..
sry if i posted this at wrong section.
thx, Sam

Hi there, can you show me some website to check original iphone 4. Thanks all
http://www.nhommuasam.vn

Similar Messages

  • How to check iphone 4s is original factory unlocked

    How to check iphone 4s is originaly factory unlocked 

    Purchase an unlocked phone from a legitimate source (i.e. Apple if they sell unlocked phones in your country or a carrier who sells unlocked phones. See this list: http://support.apple.com/kb/ht1937).
    If you already have one, you should be able to call AppleCare and give them the serial number. They should be able to tell you if it's locked and who it's locked to.

  • How come my Iphone 4 keeps saying not enough storage to take any more pictures and can't get updates yet I keep deleting apps and photos off my phone and my itunes on my computer and yet I feel like I don't have many apps or that many photos?

    How come my Iphone 4 keeps saying not enough storagespace to take any more pictures and can't get updates yet I keep deleting apps and photos off my phone and my itunes on my computer and yet I feel like I don't have many apps or that many photos?

    Check Settings > General > Usage to display what's taking all your space.

  • How to check table is creating or not

    Hi,
    I am creating only one table by running a table creation script(table.sql) which contain 366 partition.but I dont know whether table is creating or not.it is taking long time,sometimes I feel like script is hanging.even before running the script I have even spooled but spool file shows nothing. so how to check table is creating or not from background? can anyone please let me know abt this.this is bit urgent
    sql>spool table.log
    sql>@table_partition.sql

    hi,
    I am running the script table_partition which consist of 366 partition and 31 sub partition but the script is hanging.there is no hint in alert log file or anything wat might be the reason is it because of extent size? as extent size for this tablespace where table has to be create is 1mb,wat i suspect is do i need to set for higher value inorder to avoid this?
    with regards;
    Boo

  • How to check Reconcilliation has happened or not for a payment document

    Hi,
    How to check Reconcilliation has happened or not for a payment document? Payment doc ABCDEF was created on 2nd. Now i am not sure whethr RECON has happend ot not
    Please help.

    Dear,
    If you have made payment to vendor and want to know whether reconciliation happened or not then check if this document exist in table BSIK then reconciliation has not been done.
    Regards,
    Chintan Joshi.

  • How to check table is NULL or not when a form load?

    How to check table is NULL or not when a form load?
    I want to make the form when it load it check the data in table, if there are no data in table other form will be load.
    Sorry for bad English... 

    Maybe you can do this in form1's Form_Open event:
    if dcount("*", "table1") = 0 then
      Cancel = True
      Docmd.Openform "form2"
    end if
    -Tom. Microsoft Access MVP

  • How to check iphone 3gs is factory unlock

    how to check iphone 3gs is factory unlock

    Put a SIM from another carrier in it...
    Where did you get it from? If you're in the U.S. There is no such thing as a factory unlocked iPhone 3Gs.

  • How to check one table exist or not in SAP

    Hi, Gurus:
    How to check one table exist or not in the SAP.
    Thanks,

    Hi,
    Query the table DD02L..
    Select single * from DD02L where tabname = 'Your table name'
                          AND TABCLASS = 'TRANSP'.  " For transparent tables.
    Thanks
    Naren

  • How to check internal table sorted or not

    Hi all
    I need to check internal table sorted or not which is without header line and having only one field and six values. please let me know how to check it is sorted or not because i need to display message if it is not sorted.
    thanks,
    Minal

    Hi Minal,
    Go through  this info.
    Sorted tables
    This is the most appropriate type if you need a table which is sorted as you fill it. You fill sorted tables using the INSERT statement. Entries are inserted according to the sort sequence defined through the table key. Any illegal entries are recognized as soon as you try to add them to the table. The response time for key access is logarithmically proportional to the number of table entries, since the system always uses a binary search. Sorted tables are particularly useful for partially sequential processing in a LOOP if you specify the beginning of the table key in the WHERE condition.
    Stable sort
    The option
    SORT <itab> ... STABLE.
    allows you to perform a stable sort, that is, the relative sequence of lines that are unchanged by the sort is not changed. If you do not use the STABLE option, the sort sequence is not preserved. If you sort a table several times by the same key, the sequence of the table entries will change in each sort. However, a stable sort takes longer than an unstable sort.
    Examples
    DATA: BEGIN OF LINE,
            LAND(3)  TYPE C,
            NAME(10) TYPE C,
            AGE      TYPE I,
            WEIGHT   TYPE P DECIMALS 2,
          END OF LINE.
    DATA ITAB LIKE STANDARD TABLE OF LINE WITH NON-UNIQUE KEY LAND.
    LINE-LAND = 'G'.   LINE-NAME   = 'Hans'.
    LINE-AGE  = 20.    LINE-WEIGHT = '80.00'.
    APPEND LINE TO ITAB.
    LINE-LAND = 'USA'. LINE-NAME   = 'Nancy'.
    LINE-AGE  = 35.    LINE-WEIGHT = '45.00'.
    APPEND LINE TO ITAB.
    LINE-LAND = 'USA'. LINE-NAME   = 'Howard'.
    LINE-AGE  = 40.    LINE-WEIGHT = '95.00'.
    APPEND LINE TO ITAB.
    LINE-LAND = 'GB'.  LINE-NAME   = 'Jenny'.
    LINE-AGE  = 18.    LINE-WEIGHT = '50.00'.
    APPEND LINE TO ITAB.
    LINE-LAND = 'F'.   LINE-NAME   = 'Michele'.
    LINE-AGE  = 30.    LINE-WEIGHT = '60.00'.
    APPEND LINE TO ITAB.
    LINE-LAND = 'G'.   LINE-NAME   = 'Karl'.
    LINE-AGE  = 60.    LINE-WEIGHT = '75.00'.
    APPEND LINE TO ITAB.
    PERFORM LOOP_AT_ITAB.
    SORT ITAB.
    PERFORM LOOP_AT_ITAB.
    SORT ITAB.
    PERFORM LOOP_AT_ITAB.
    SORT ITAB STABLE.
    PERFORM LOOP_AT_ITAB.
    SORT ITAB DESCENDING BY LAND WEIGHT ASCENDING.
    PERFORM LOOP_AT_ITAB.
    FORM LOOP_AT_ITAB.
      LOOP AT ITAB INTO LINE.
        WRITE: / LINE-LAND, LINE-NAME, LINE-AGE, LINE-WEIGHT.
      ENDLOOP.
      SKIP.
    ENDFORM.
    ************rewords some points if it is helpful.
    Rgds,
    P.Naganjana Reddy

  • How to check oracle properly installed or not?

    Hello Friends,
    How to check oracle properly installed or not. cause during installation time the person who installed faced many problems. we have RISK base IBM p5 Series server and Oracle 10g RAC.
    i want to check installation made properly or not.
    Thanks,
    Nikunj Patel

    Installation for RAC environments means you are not only talking about one single installation, but several installations, and the number of installations and checking processes depend on factors such as the clusterware you are using, if you are using the Oracle clusterware or the proprietary clusterware, if you are using a separate oracle home to install the ASM or if you are using the same oracle home for both, the ASM and the RDBMS.
    First you must ensure you have installed all prerequisites according to your platform, i.e. patches, packages, kernel parameters, etc. which are listed at the install guide corresponding to your platform. Then you should use the cluvfy (cluster verifier tool) to check if the different install phases are properly installed
    The most critical and most of the times, problematic installation phase is the clusterware. So you should specify if you installed the Oracle clusterware or the proprietary clusterware. In a RAC environment if your clusterware is not properly installed, most probably you won't have a running RAC, so if your environment is functional there you may have high probabilities that it is OK, but to make sure, launch the cluvfy tool.
    The cluvfy tool verifies the process since the beginning and it ensures your environment meets the required minimum requirements to be at an operational level, it checks the pre/post install phases for the clusterware, pre/post install of the rdbms, and it is launched from the OS. It can be obtained as a standalone product or you can use the one found at the clusterware Oracle Home. For further references on this tool I suggest you to read this
    Oracle® Database Oracle Clusterware and Oracle Real Application Clusters Installation Guide
    10g Release 2 (10.2) for AIX
    Part Number B14201-04
    ~ Madrid

  • HT4061 How to check iPhone warranty

    How to check iPhone 4 warranty?

    Look here on the right of this page "More Like This"   iPhone4 warranty
    or goto  https://discussions.apple.com/message/17288610#17288610

  • How to check iPhone 5S is not refurbished

    Hi there.
    I have a ques ...
    I wanna buy an iPhone 5S but quite concern about the device quality (original and not refurbished).
    Actually I am not able to but the iPhone from Apple directly as at my Country no Apple store available yet unfortunately. So I need to buy from a local smartphone store at my Country.
    Can anyone please advise me ... the best way to check iPhone 5S is original and not refurbished?
    Thanks in advance.
    Regards.

    Hi Ralph.
    Few more ques please.
    - From the serail check result of selfsolve.apple.com, by which parameter I can undersatnd its not refurbished?
    - Is there any other way to get Serial number rather than Settings > General > About?
    Sorry to ask silly ques ... I dont have any iPhone nearby right now to check.
    Thanks.
    Regards.

  • How to activate iPhone without original sim?!

    So bear with me as I explain this predicament.
    SO I bought a brand new phone off ebay, I check and the phone was not blacklisted.  However the phone was linked with the sellers phone number and I needed the last four of his social and billing zip to activate.  I call AT&T and they tell me just to go get a new sim card and it will work.  I go and get a new sim and the guy at AT&T throws away the original sim (remember that!!!!)
    So that doesn't work, they tell me to go restore it and THAT doesn't work.
    The seller ends up giving me his zip code and last 4 SSN, but now the phone says that it can not activate because the sim that was shipped with the phone is not in the phone currently. 
    What do I do?! I have a $600 paperweight just sitting here right now.

    So the iPhone was activated and working on the AT&T network before you took it to AT&T? If it was then why did you take it in?
    There is no requirement that the iPhone has to be activated with the original AT&T nanoSIM it came with. If there was such a requirement then if the nanoSIM was defective you could never replace it. There is no requirement that you have to have the previous owners last 4 of SSN and billing zip UNLESS you are trying to use their AT&T cell account.
    They seller should have erased all content and settings from the iPhone and then sold it to you. At that point you would be able to activate it on your AT&T account without having to know any information from them.
    Return it and get your money back.

  • I want to know if my iphone is original or not

    My sister has purchased a iPhone for me and i am not able to make sure if it is original or not...I would like to know if there is a method to know if the iPhone is original or not

    Plug the SN in here:
    http://www.chipmunk.nl/klantenservice/applemodel.html
    Or here:
    https://register.apple.com/cgi-bin/WebObjects/GlobaliReg.woa

  • How to check program is running or not

    Hi,
    Is it possible to check whether a program is running or not?
    I know when you try to compile a package which is running, oracle does not allow you compile it, it hangs. That is, somehow, Oracle knows the program is running. How can we check this information?
    Suppose procedure below. If i ran it in one session, how can check that procedure p is running in other session?
    I searched the forum. There is one( checking if a package procedure is already running ) thread but noone has replied.
    Thanks....
    SQL> DROP TABLE T;
    Table dropped
    SQL> CREATE TABLE T AS SELECT DUMMY D FROM DUAL;
    Table created
    SQL> CREATE OR REPLACE PROCEDURE p IS
      2    s VARCHAR2(12);
      3  BEGIN
      4    SELECT d INTO s FROM t;
      5    LOOP
      6      EXIT WHEN s = 'Y';
      7      SELECT d INTO s FROM t;
      8    END LOOP;
      9  END p;
    10  /
    Procedure created
    SQL> exec p;

    I found the answer from another thread.( Package Compilation Hangs )
    Answer is : http://www.ixora.com.au/scripts/sql/executing_packages.sql

Maybe you are looking for