How to check for cell made country by Serial numbe...

Hi there...
Anyone can explain me how to check a E71 made by which country looking at serial number ?   
this mobile i purchased with Finland made stickers
Regards,
Personal detail removed by a moderator. We kindly ask you not to your phone's IMEI number publicly on this forum.

Hello,
What is the question?
Now you have line closed but delivery is still open?
Run this request OM > Shipping > Interfaces > Inventory Interface–SRS set debug to 1.
In requests you have Inventory Interface–SRS, Shipping.... SRS and another with SRS. I do not remember correct name now but you have to pick last one:) and set debug to 1. I will give proper name tomorrow.
Look into results and look for errors.
Regards,
Luko
Edited by: Luko on 2010-04-29 20:48

Similar Messages

  • How to look for my ipod using the serial number

    Looking for my stolen ipod using my serial number. Where do I go to do this?

    You do not. The SN will only help identify the iPod as yours if it is recovered.
    - If you previously turned on FIndMyiPod on the iPod in Settings>iCloud and wifi is on and connected go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up.
    - You can also wipe/erase the iPod and have to iPod play a sound via iCloud.
    - Change the passwords for all accounts used on the iPod and report to police
    - There is no way to prevent someone from restoring the iPod (it erases it) using it.
    - Apple will do nothing
    Reporting a lost or stolen Apple product              

  • How to check for a function module with its description and functionality

    Hi all,
    How to check for a function module,with its description and its functionality,in detail how can I know the purpose of a particular function module,how to search for a function module which suits my requirement .

    Hi,
    You can search a FM of your requirement by putting in the Key words and searching for a FM. Like * KEYWORD * and then pressing F4.
    Say for example you need to search something regarding converstion.
    Search for * CONVERT * and press F4.
    If there is something specfic like converting date to something you can give
    DATE * CONVERT *
    OR
    CONVERT * DATE *  and press F4.
    Once you narrow down your search you will have a Function module documentation inside the Function module. Please note that all the FMs willl not have documentation.
    Regards,
    Pramod

  • Want to know how to check for new line character in text file

    Hi All,
    I`m trying to read data from text file. However I`m not sure whether the data is in 1st line or nth line. Now I`m trying to read the text from the readline. But if text is "" and not NULL then my code fails. So I want to know how to check for new line character and go to next line to find the data. Please help.
    Thanks
    static int readandwriteFile(Logger logger,String filepath){
              BufferedWriter out = null;
              BufferedReader in = null;
              File fr = null;
              int get_count = 0;
              try     {
              if(new File(filepath).exists())
              fr= new File(filepath);
                        System.out.println("FileName: "+fr);
                   if(fr != null){
    in = new BufferedReader(new FileReader(fr));
                             String text = in.readLine();
                             if(text != null){
                             get_count = Integer.parseInt(text);
                             in.close();
                             else{
                                  get_count = 0;
         else{                    
    out = new BufferedWriter(new FileWriter(filepath));
         out.write("0");
                out.close();
                   }          //Reading of the row count file ended.
              catch(Exception e) {
                   e.printStackTrace();
              finally {
                   try{               if (in != null) {
                             in.close();
              if (out != null) {
                             out.close();
              catch(Exception e) {
                        e.printStackTrace();
              return get_count;
         }

    You are calling the readline() only once which means you are reading only the first line from the file...
    Use a loop (Do-While preferably)
    do{
    //your code
    }while(text == "")

  • How to check for the sub folder in the document library Is already Exist using CSOM?

    Hi,
    My requirement is to create the  folder and sub folder in SharePoint document library. If already exist leave it or create the new folder and the subfolder in the Document library using client side object model
    I able to check for the parent folder.
    But cant able to check the subfolder in the document library.
    How to check for  the sub folder in the document library?
    Here is the code for the folder
    IsFolder alredy Exist.
    private
    string IsFolderExist(string InputFolderName)
    string retStatus = false.ToString();
    try
    ClientContext context =
    new ClientContext(Convert.ToString(ConfigurationManager.AppSettings["DocumentLibraryLink"]));
                context.Credentials =
    CredentialCache.DefaultCredentials;
    List list = context.Web.Lists.GetByTitle(Convert.ToString(ConfigurationManager.AppSettings["DocumentLibraryName"]));
    FieldCollection fields = list.Fields;
    CamlQuery camlQueryForItem =
    new CamlQuery();
                camlQueryForItem.ViewXml =
    string.Format(@"<View  Scope='RecursiveAll'>
    <Query>
                                            <Where>
    <Eq>
    <FieldRef Name='FileDirRef'/>
    <Value Type='Text'>{0}</Value>
                                                </Eq>
    </Where>
    </Query>
                                </View>",
    @"/sites/test/hcl/"
    + InputFolderName);
                Microsoft.SharePoint.Client.ListItemCollection listItems = list.GetItems(camlQueryForItem);
                context.Load(listItems);
                context.ExecuteQuery();
    if (listItems.Count > 0)
                    retStatus =
    true.ToString();
    else
                    retStatus =
    false.ToString();
    catch (Exception ex)
                retStatus =
    "X02";
    return retStatus;
    thanks
    Sundhar 

    Hi Sundhar,
    According to your description, you might want to check the existence of sub folder in a folder of a library using Client Object Model.
    Please take the code demo below for a try, it will check whether there is sub folder in a given folder:
    public static void createSubFolder(string siteUrl, string libName, string folderServerRelativeUrl)
    ClientContext clientContext = new ClientContext(siteUrl);
    List list = clientContext.Web.Lists.GetByTitle(libName);
    CamlQuery camlQuery = new CamlQuery();
    camlQuery.ViewXml =
    @"<View Scope='RecursiveAll'>
    <Query>
    <Where>
    <Eq>
    <FieldRef Name='FSObjType' />
    <Value Type='Integer'>1</Value>
    </Eq>
    </Where>
    </Query>
    </View>";
    //camlQuery.FolderServerRelativeUrl = "/Lib1/folder1";
    camlQuery.FolderServerRelativeUrl = folderServerRelativeUrl;
    ListItemCollection items = list.GetItems(camlQuery);
    clientContext.Load(items);
    clientContext.ExecuteQuery();
    Console.WriteLine(items.Count);
    if (0 == items.Count)
    //create sub folder here
    Best regards
    Patrick Liang
    TechNet Community Support

  • How to check for locks on a table inside a program?

    Hi Gurus,
    Kindly let me know how to check for a lock on a particular table inside a program.I know that we can see locks on table held by a user from transaction SM12 but my requirement is to check for lock on MARA/MARC/MARV if lock exist then bypass my code else do the code.
    Kindly suggest or give code to check for a lock on a particular table.
    Thanks in advance
    Sudipto

    FAQ.  Locked.

  • How to check for updates on SCM packages?

    Hey guys,
    I wondered for some time now how to check for updates on SCM packages, i.e. -git
    or -svn ones. Updates for binary packages are automatically updated by pacman,
    no problem there. Checking for updates on non-SCM packages from the AUR is
    easily done with one of the various helper tools available (personally, I use
    slurpy).
    However, SCM packages can change without their PKGBUILD changing, so I'm not
    notified that I should recompile and update them.
    Is there a "proper" way of doing this? Am I missing something?
    Thanks in advance!

    If your system is booting then u can say that your bootblks are installed.Usually BootBlks are present in 0 & 1 slice of UFS Filesystem
    /usr/platform/platform-name/lib/fs/ufs
    directory where ufs boot objects reside.
    An x86 FDISK partition for the Solaris software begins with a one-cylinder boot slice, which contains the partition boot program (pboot) in the first sector, the standard Solaris disk label and volume table of contents (VTOC) in the second and third sectors, and the bootblk program in the fourth and subsequent sectors. When the FDISK partition for the Solaris software is the active partition, the master boot program (mboot) reads the partition boot program in the first sector into memory and jumps to it. It in turn reads the bootblk program into memory and jumps to it. Regardless of the type of the active partition, if the drive contains multiple FDISK partitions, the user is given the opportunity to reboot another partition.

  • How to check for impacts due to upgrade

    We are plannining to upgrade from 4.7 to ECC6..How to check for impacts on FTP'S,shell scripts and RFC's etc due to the assesment..Please suggest

    Hi,
    FTP's and Shell scripts are OS dependant not SAP or Database dependant so there will be no change at all unless you upgrade OS too. RFC's are not afected as per guides, notes and my experience.
    I´m doing an upgrade from 4.6C to 6.0 with connections with at least 10 systems and none of them had an issue during tests
    Good luck

  • How to check for bootblk on Disk

    Does someone know how to check for bootblk on solaris disk.

    If your system is booting then u can say that your bootblks are installed.Usually BootBlks are present in 0 & 1 slice of UFS Filesystem
    /usr/platform/platform-name/lib/fs/ufs
    directory where ufs boot objects reside.
    An x86 FDISK partition for the Solaris software begins with a one-cylinder boot slice, which contains the partition boot program (pboot) in the first sector, the standard Solaris disk label and volume table of contents (VTOC) in the second and third sectors, and the bootblk program in the fourth and subsequent sectors. When the FDISK partition for the Solaris software is the active partition, the master boot program (mboot) reads the partition boot program in the first sector into memory and jumps to it. It in turn reads the bootblk program into memory and jumps to it. Regardless of the type of the active partition, if the drive contains multiple FDISK partitions, the user is given the opportunity to reboot another partition.

  • Could someone please explain how to check for flashback, to a beginner?

    Could someone please explain how to check for flashback, to a beginner?  Thanks.

    Install all of the available software updates.  If you have flashback it will be automatically removed.

  • How can i check the original led display parts serial number on my macbook white

    How can i check the original led display parts serial number on my macbook white based on my mabook serial number?
    and if i have defective lcd (no display and lcd flex removed) How can i use an external Monitor using display port, What is the possible problem that even i connect my Monitor using mini display port to vga adaptor it has no display.

    Have tried 3 new dvd's same responce. On the MacBook, when new DVD was put in the drive, it showed in on the desktop so files could be moved across by right click and move, now its a file DVD.fpbf and after I moved a movie to burn I got error code 0x80020063?

  • My iPhone 4 was stolen, how do i lock it permanently using a serial number for instance so nobody can use it or access my personal information, knowing that the thief knows my personal passcode.. Please help, Thanx

    My iPhone 4 was stolen, how do i lock it permanently using a serial number for instance so nobody can use it or access my personal information, knowing that the thief knows my personal passcode.. Please help, Thanx

    You cannot lock it by the serial number. Report it to your carrier and the police. You said that the thief knows your pass code. Does that mean that the thief was a personal friend who would be close enough to you to know what your code was? If that is the case, ask your friend to return your phone.

  • How can I check that all numbers in a serial number are numeric

    I wrote a vi that checks to make sure that a serial number is in the "mmddyy-xxx" format, where xxx can be from 0 to 999. The problem is if I enter something like "012210-A1" it passes. Is there an easy fix to fail anything where xxx is not in the 0 to 999 range?
    Thank you
    Solved!
    Go to Solution.
    Attachments:
    Ser_No.vi ‏32 KB

    Hi chuck,
    you can do it that way:
    When the serial number isn't correct you will get an error from the ScanFromString function...
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Lost disk for Acrobat 8, have upgrade serial number, but not original media or older version serial number

    I'm changing computers, and am trying to install Acrobat 8 Standard onto the new one. I have the files for the upgrade, and the serial number, but it asks for the original media or serial number for the version upgraded from, and we don't have that - we've lost the disks and the serial number.
    The dialog box which pops up during installation says "Enter the response code provided by Adobe Customer Service for the number: XXXXXX" (There's an actual number, but that should be saved for a private discussion.)
    Every attempt to contact Adobe runs into a brick wall. How do I recover the serial number for a purchase made 4 years (or more) ago?

    Hi Municon,
    Kindly refer the below mentioned documents.
    Find your serial number quickly
    Serial number, Redemption, and Product codes | Student & Teacher Editions
    Thanks,
    Atul Saini

  • How do I go about getting the product serial number to register my product as well as install my product.  I bought it with a product box.  On the software disc sleeve, there is a series of numbers pasted at the bottom of the sleeves but this is not valid

    How do I go about getting the product serial number to register my product as well as install my product.  I bought it with a product box.  On the software disc sleeve, there is a series of numbers pasted at the bottom of the sleeves but this is not valid.  When I tried to type this in for registration, it does register as this numbers also contain letters in it.  Apparently the registration boxes accept numbers only.  What do I do with a useless product for which I have paid good money for it?????

    This is the simple solution which was offered to me when I tried to get the serial code on line.
    The box and disc sleeve do not contain a series with 24 numbers which I presume is the product code to install.
    I tried to redeem the registration code by following what they recommended, but inevitably it gets to the page that showed the registration boxes that need 24 serial numbers and I got stuck again.
    This product is so different what my previous experiences of other software products where I just enter the serial number straight from the disc sleeve and then I got registered and go on to use the software.
    I is really frustrating, spending the last two hours trying to get my product going....

Maybe you are looking for

  • How can i transfer my new purchased itunes apps to my itunes library

    actually having several problems, installed itunes on a new computer, have transfered/sync all of my existing ipod touch apps/music successfully. I purchased new apps and a movie, but they do not appear on my itunes library, how can i transfer these

  • LUMIX LX3 .rw2 files are not being recognized in LR 3.6

    I have ACR   6.0.6 - any ideas on what could be happening? the error I get says -  can not import photo. When in the import dialog. Lightroom version: 3.6 [795620] Operating system: Windows 7 Home Premium Edition Version: 6.1 [7601] Application archi

  • Thunderbolt works intermittently at best

    My previous MacBook Air was connected to my HDTV via Mini-DVI to DVi adapter and then a DVI-HDMI cable. Other than needing to run sound through my computer speakers, I never had a problem. Now that I've gotten the new MacBook Air with Thunderbolt por

  • Poster on SMP

    Hi guys, sadly i do have one problem right now with strobe media playback. When i set the poster parameter to an absolute path of an image file, it works smoothly and SMP does show that picture in advance of playing the media file. But when i do want

  • Subsinvprocess in the sales order header --- billing tab and in the custom

    Hello All there is a field SubsInvProcess in sales order header - billing- tab and in the customer master - billing tab what was the functionality of this field. I never worked with it kindly help on this one.  Thanks, prasad