Retrieving the Lock Code

Hi guyz...
have a problem with my e71 i forgot my lock code i was trying to reformat my phone but before continuing it is required to enter the lock code i enter it for 2x already
but it keeps on saying that it is CODE ERROR
kindly help me at this matter how to retrieve back my lock code
thanks hope to hear from you soon

The standard code is 12345, but if you've changed it you're in for a trip to the Nokia service centre with your proof of purchase or proof of ownership.
There is no 'back door' to the lock code that you can deal with yourself otherwise everybody would know it and the lock code would be utterly useless as a secutiry feature, so the phone has to be re-flashed completely. Be warned that if you don't have a backup on memory card or PC Suite, your data will all be lost.

Similar Messages

  • HT1414 My iPhone has crashed during a sync and now I can't restore from backup as it is asking for password to load the backup yet neither the lock code for the phone or my iTunes Password are working... I have no other password to all upon and need the r

    My iPhone has crashed during a sync and now I can't restore from backup as it is asking for password to load the backup yet neither the lock code for the phone or my iTunes Password are working... I have no other password to call upon and need the restore to retrieve info onto my phone, I am a real novice to this...... please help, !!!!

    If anyone else is looking for a solution to this same problem, I was able to get it working looking through several older discussions.
    The solution was to use the password that I had on my iTunes account the very first time I set up the iPhone about a year ago.  I changed my iTunes password about 10 months ago;  but apparently, the backups continue to use the password that existed when the phone was first set up.
    A couple of troubling things with this are that 1) I didn't apply a password when I did the backup this afternoon so I don't understand why it was required when I did the restore a few hours later. and 2) it makes zero sense why iTunes would not be smart enough to use the current accout password when requiring the password to restore from a backup made with no password. 
    I thought iTunes and Apple were smarter than that.  With so many posts stating exactly the same problem, it is clear that this is bug in the software. 
    Best,
    Craig

  • UDF For Retrieving the Tax Code based on PO

    Hi all,
    Mine is a file to Idoc scenario.
    I wrote a FM to retrieve the Tax Code based on PO .
    Created the udf which directly gets the Taxcode from the r/3 with out importing in to the imported objects,is this correct i never tried this before.
    Find the UDF for the Same.
    final String    CHANNEL_NAME = "GeneratedReceiverChannel_RFC",
         VALNOTFOUND = "VALUE_NOT_FOUND",
         SAPRFCNS = "urn:sap-com:document:sap:rfc:functions",
         TAG_FM = "Z_P_INT012_RFC_LOOKUP",
         TAG_TAX_CODE = "T_TAX_CODE",
         TAG_TAX_CODE_P = "TAX_CODE";
    AbstractTrace trace = container.getTrace();
              DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
              DocumentBuilder builder = null;
              factory.setNamespaceAware(false);
              factory.setValidating(false);
              try {
                   builder = factory.newDocumentBuilder();
              } catch (Exception e) {
                   trace.addWarning("Error creating DocumentBuilder - " + e.getMessage());
              Document docReq = null;
              try {
                   // Building up RFC Request Document
                   docReq = builder.newDocument();
                   Node root = docReq.appendChild(docReq.createElementNS(SAPRFCNS, TAG_FM));
                   Node nodeTbOpt = root.appendChild(docReq.createElement(TAG_TAX_CODE));
                   for (int i = 0; i < pernr.length; i++) {
                        Node nodeTbOptItem = nodeTbOpt.appendChild(docReq.createElement("item"));
                        nodeTbOptItem.appendChild(docReq.createElement(TAG_TAX_CODE_P)).appendChild(docReq.createTextNode(TAX_CODE<i>));
              } catch (Exception e) {
                   trace.addWarning("Error while building RFC Request  - " + e);
              trace.addInfo("RFC Request XML: " + docReq.toString());
                                                    //trace.addWarning("RFC Request XML: " + docReq.toString());
              // Lookup
              Payload load = null;
              try {
                   Channel channel = LookupService.getChannel(receiver[0], CHANNEL_NAME);
                   RfcAccessor accessor = LookupService.getRfcAccessor(channel);
                   InputStream is = new ByteArrayInputStream(docReq.toString().getBytes());
                   XmlPayload payload = LookupService.getXmlPayload(is);
                   load = accessor.call(payload);
              } catch (LookupException e) {
                   trace.addWarning("Error during lookup - " + e);
              // Parsing RFC Response Document
              Document docRsp = null;
              try {
                   docRsp = builder.parse(load.getContent());
              } catch (Exception e) {
                   trace.addWarning("Error when parsing RFC Response - " + e.getMessage());
              trace.addInfo("RFC Response XML: " + docRsp.toString());
                                                    //trace.addWarning("RFC Response XML: " + docRsp.toString());
              try {
                   NodeList res = docRsp.getElementsByTagName("item");
                   for(int i=0;i<res.getLength();i++){
                        NodeList itemNodes = res.item(i).getChildNodes();
                        Map itemMap = new HashMap();
                        for(int j=0;j<itemNodes.getLength();j++){
                             itemMap.put(itemNodes.item(j).getNodeName(), itemNodes.item(j).getFirstChild().getNodeValue());
                        rows.add(itemMap);
                                                            catch (Exception e) {
                   trace.addWarning("Result value not found in DOM - " + e);
                   result.addValue("true");
    Error:
    16:24:08 Start of test
    Source code has syntax error:  /usr/sap/XD1/DVEBMGS30/j2ee/cluster/server0/./temp/classpath_resolver/Map283041f0edf311dd960b0003bacd2461/source/com/sap/xi/tf/_MM_INT012_INVOICE_DET_.java:598: 'class' or 'interface' expected public void TaxValues$(String[] a,String[] b,ResultList result,Container container){ ^ /usr/sap/XD1/DVEBMGS30/j2ee/cluster/server0/./temp/classpath_resolver/Map283041f0edf311dd960b0003bacd2461/source/com/sap/xi/tf/_MM_INT012_INVOICE_DET_.java:618: 'class' or 'interface' expected } ^ /usr/sap/XD1/DVEBMGS30/j2ee/cluster/server0/./temp/classpath_resolver/Map283041f0edf311dd960b0003bacd2461/source/com/sap/xi/tf/_MM_INT012_INVOICE_DET_.java:619: 'class' or 'interface' expected ^ 3 errors  Source code has syntax error:  /usr/sap/XD1/DVEBMGS30/j2ee/cluster/server0/./temp/classpath_resolver/Map283041f0edf311dd960b0003bacd2461/source/com/sap/xi/tf/_MM_INT012_INVOICE_DET_.java:598: 'class' or 'interface' expected public void TaxValues$(String[] a,String[] b,ResultList result,Container container){ ^ /usr/sap/XD1/DVEBMGS30/j2ee/cluster/server0/./temp/classpath_resolver/Map283041f0edf311dd960b0003bacd2461/source/com/sap/xi/tf/_MM_INT012_INVOICE_DET_.java:618: 'class' or 'interface' expected } ^ /usr/sap/XD1/DVEBMGS30/j2ee/cluster/server0/./temp/classpath_resolver/Map283041f0edf311dd960b0003bacd2461/source/com/sap/xi/tf/_MM_INT012_INVOICE_DET_.java:619: 'class' or 'interface' expected ^ 3 errors
    16:24:11 End of test.

    Hi Potharaju,
    Why don't you try this, that really works:
    If you are using PI 7.1:
    http://help.sap.com/saphelp_nwpi71/helpdata/en/33/1ec6ced273493a993a80c2301c03da/frameset.htm
    If you are using XI 3.0, PI 7.0
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a03e7b02-eea4-2910-089f-8214c6d1b439
    Try with these.
    Regards,
    Juan

  • Fm or metod that retrieve the lock object name from the table name

    HI ALL,
    there is FM or method that retrieve the lock object name from the table name ?
    Best regards
    Nina

    CALL FUNCTION 'ENQUEUE_REPORT'            
    EXPORTING                                
    gclient                     = sy-mandt   
    gname                       = 'RCTMV'         "Table Name
      GTARG                       = ' '       
      GUNAME                      = SY-UNAME  
    IMPORTING                                 
      number                      =           
      SUBRC                       =           
      TABLES                                  
        enq                         =  lt_seqg3
    EXCEPTIONS                               
       communication_failure       = 1        
       system_failure              = 2        
       OTHERS                      = 3

  • Retrieve the Object Code in se38

    Hi,
    I have devoloped a report in se38 and saved in a Request.
    I was actually intending in chaging the code by calling into another program.Unfortunately the code was been overwritten and i am not able to see the old code.
    Even i tried to get the old version by version management.
    Please sugget me how i can retrieve the code.
    FYI, all the custom FM and all the structures were been visible which was been used in the main prog.
    Kindly suggest.
    Thanks,
    Tayi

    Hi Ravi,
    I have devoloped a program in se38 and when i tired to submit the output of the program in PDF and then later to be sent it the same to mail using the code in
    https://wiki.sdn.sap.com/wiki/display/Snippets/Send%20email%20in%20background%20-PDF%20output%20of%20the%20any%20report 
    and my program was replaced with another code in the above link and below is the replaced code.
    REPORT ZR_SYSTEM_MONITOR .
    INCLUDE zrep_print .
    *IF flag ne 'X' AND Sy-subrc eq 0 .
      SUBMIT ZR_SYSTEM_MONITOR
    TO SAP-SPOOL SPOOL PARAMETERS print_parameters
    *ARCHIVE PARAMETERS archi_parameters RETURN.
    SELECT rqident FROM tsp01
    INTO gd_spool_nr WHERE rq2name = print_parameters-plist .
    *export gd_spool_nr to MEMORY ID 'SPOOLNO' .
    *ENDIF .
    Can anyone help me out how i can retrieve the old code.
    1) I havent released the task .
    2)also through the version management  but not been able to get.
    Thanks,
    Anjani

  • I forgot the lock code to my ipod touch and its disabled. what do i do

    reem
                     i forgot the lock code to my ipod touch and its disabled. what do i do

    Do as the manual says to do and restore the ipod.
    If you are unable to restore then type "unable to restore" in the search bar at the top of this page by Support and read the resulting help article.

  • E66 asks me for the Lock code after updating with ...

    Please help me with my problem! I had used Nokia Software Updater after it finish it has asked me for the Lock Code I really don't know what to do.

    Try 12345

  • I forget the lock code and now I can not access the iphone. What I can do?

    I forget the lock code and now I can not access the iphone. I try to restore it, but ask me to go to iphone settings to which I have no access and I can not download the latest version of iOS to do it.
    Thanks!

    If you have a passcode to the screen lock that you've forgotten, restore the device from the computer to which the device is synced. For information and instructions, see:
    http://support.apple.com/kb/ht1212
    If that will not work, you'll need to put the device into Recovery Mode and then try the Restore again:
    http://support.apple.com/kb/ht1808
    If that still doesn't work, as a last resort try DFU mode:
    http://www.iclarified.com/entry/index.php?enid=1034
    If your device is running iOS 7 and you set up Find My iPhone (iPad/iPod),  however, then it has the Activation Lock on it and you'll need to enter in your Apple ID and password to activate the device after restoring:
    http://support.apple.com/kb/HT5818
    Regards.
    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Communities page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums and in the Apple Knowledge Base, before you post a question.

  • Please, I have need Almsaah device iPhone 5 purchased from an Iranian person got the lock code Last updated him but I could not activate it until the program find my phone phone

    Please, I have  need Almsaah device iPhone 5 purchased from an  Iranian person got the lock  code Last  updated him but I could not activate it until the program find my phone

    Please, I have  need help device iPhone 5 purchased from an  Iranian person got the lock  code Last  updated him but I could not activate it until the program When Mai phone

  • How to cancel the lock code N73

    I Want cancel  the lock code  my phone is N73
    Solved!
    Go to Solution.

    There is no way to bypass the security code. Think about it - if there was, it would be widely published on the Internet and the whole concept of the security code would be utterly useless.
    If you've forgotten your security code then you have two options.
    1) Update the phone's firmware if at all possible. Doing this will wipe the phone clean and it should also reset the security code to its default 12345.
    or,
    2) Take the phone to your nearest Nokia Care Point with proof that you are its owner. The NCP will reset the security code to its default 12345 for you. This process might wipe the phone clean as well and there may be a charge for it.
    There is no other way.
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • Why does viber keep asking me to set up again? I have   it up about 3 times now and if I don't have my mobile  when overseas will be unable to retrieve the sms code. I am using an ipad mini

    Why does viber keep asking me to set up again when I have already set it up about 3 times and used it successfully. Will be overseas without my mobile and will be unable to retrieve the sms code to set it up if this happens when I am away so should I reinstall it ?

    ISSUE FINALLY RESOLVED!!!!!!
    So, it turns out, I had to restore the iPhone...with a twist! Here are the steps:
    FIRST BACK UP YOUR DEVICE
    1. Go to the library (Hold option, click on "go" in the finder, then go to library)
    2. Go to your iTunes folder in this Library (not application support, the main iTunes folder)
    3. Go to the iX software folder (i.e., iPhone software, iPad software, etc.) and delete the file in this folder
    4. Hook up the phone and then click on restore iPhone.
    At this point, it will redownload the entire OS again. You must then restore the iPhone. As it is downloading the iOS, you can disconnect and use your phone for probably however long you want (I did the restore the same day as the download) and when you are ready you can hook up the phone and restore it.
    THE MOST IMPORTANT STEP FOLLOWS:
    And one many may dislike. Upon restoring the phone, you MUST select "Set-Up as new iPhone"
    You need to make sure you've backed up EVERYTHING elsewhere. 3rd party, non-apple/icloud apps will lose data through this method, and you'll lose all texts, your call history, and super old voicemails. The upside is that, if you've backed up, then you can just restart the process if you forgot something. But seeing as how the popup was interfering with my ability to use iCloud (I couldn't sync anything, such as calendar events, reminders, etc.,  unless I had gone into mail to sign in to iCloud), it was totally worth it....no more popups.
    My only wish is that this thread becomes popular. Many people have this issue and you should only use this method as a super last resort (after trying literally everything I had written previously).

  • HT201210 i forgot the lock code and My iTouch is disabled; Please help

    Hello
    I have a 3 generation iTouch, unfortunatley i dont remember the lock code and it is disavled and show the red strip;
    Please help

    Place the iPod in Recovery mode and connect to your computer and restore via iTunes.

  • Disable IPhone with forgot the lock code please help!!!!!

    my IPhone is disable but I forgot my lock code so when i'm connect to ITunes it say cannot use ITunes because the lock code but my phone is disable so please someone help me!!!!!!

    Well, let's assume for the moment that my first thought that the phone is stolen is wrong, although your random user ID would tend to imply that. It depends on which passcode is lost. If it is the SIM key you will have to get a new SIM card from your carrier (you didn't say which country you are in, so I can't tell you who your carrier is). If it is the phone's passcode lock you will need to do a forced restore, which will wipe all content from the phone. If it's your phone this shouldn't be a problem, because it is all backed up in iTunes and will be reloaded after the restore. Of course, you will still need the passcode, so that may not be possible anyway.
    To do a forced restore hold the HOME button, then connect to the USB cable AND CONTINUE HOLDING for a LONG time (a minute or more). Once iTunes responds release the button and your phone will be restored.

  • Does the lock code for my iPad covered by my warranty?

    Does the lock code for my iPad covered by my warranty?

    How can I unlock my iPad if I forgot the passcode?
    http://www.everymac.com/systems/apple/ipad/ipad-troubleshooting-repair-faq/ipad- how-to-unlock-open-forgot-code-passcode-password-login.html
    iOS: Device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    How can I unlock my iPad if I forgot the passcode?
    http://tinyurl.com/7ndy8tb
    How to Reset a Forgotten Password for an iOS Device
    http://www.wikihow.com/Reset-a-Forgotten-Password-for-an-iOS-Device
    Using iPhone/iPad Recovery Mode
    http://ipod.about.com/od/iphonetroubleshooting/a/Iphone-Recovery-Mode.htm
    Saw this solution on another post about an iPad in a school environment. Might work on your iPad so you won't lose everything.
    ~~~~~~~~~~~~~
    ‘iPad is disabled’ fix without resetting using iTunes
    Today I met my match with an iPad that had a passcode entered too many times, resulting in it displaying the message ‘iPad is disabled – Connect to iTunes’. This was a student iPad and since they use Notability for most of their work there was a chance that her files were not all backed up to the cloud. I really wanted to just re-activate the iPad instead of totally resetting it back to our default image.
    I reached out to my PLN on Twitter and had some help from a few people through retweets and a couple of clarification tweets. I love that so many are willing to help out so quickly. Through this I also learned that I look like Lt. Riker from Star Trek (thanks @FillineMachine).
    Through some trial and error (and a little sheer luck), I was able to reactivate the iPad without loosing any data. Note, this will only work on the computer it last synced with. Here’s how:
    1. Configurator is useless in reactivating a locked iPad. You will only be able to completely reformat the iPad using Configurator. If that’s ok with you, go for it – otherwise don’t waste your time trying to figure it out.
    2. Open iTunes with the iPad disconnected.
    3. Connect the iPad to the computer and wait for it to show up in the devices section in iTunes.
    4. Click on the iPad name when it appears and you will be given the option to restore a backup or setup as a new iPad (since it is locked).
    5. Click ‘Setup as new iPad’ and then click restore.
    6. The iPad will start backing up before it does the full restore and sync. CANCEL THE BACKUP IMMEDIATELY. You do this by clicking the small x in the status window in iTunes.
    7. When the backup cancels, it immediately starts syncing – cancel this as well using the same small x in the iTunes status window.
    8. The first stage in the restore process unlocks the iPad, you are basically just cancelling out the restore process as soon as it reactivates the iPad.
    If done correctly, you will experience no data loss and the result will be a reactivated iPad. I have now tried this with about 5 iPads that were locked identically by students and each time it worked like a charm.
    ~~~~~~~~~~~~~
    Try it and good luck. You have nothing more to lose if it doesn't work for you.
     Cheers, Tom

  • Help...forgot the lock code for N95 8GB?

    I was trying to use my device after a gap of an year.
    However, swithcing on the phone, it asks for lock code. I have never changed it before. I tried factory default code 12345. Tried couple of others like 1234, 0000 etc. None seem to work.
    I also tried switching on the phone after pressing Call, * and '3' and still it is asking for lock code.
    I tried connecting to Nokia PC suite and it doesn't recognise the phone at all, so can't update the software and see if it resets the lock code.
    Can anybody give me any further suggestion please?
    Thanks

    /t5/forums/searchpage/tab/message?filter=location&location=Board%3Asmartphones&q=N95+hard+reset+code
    Nokia 808 again (delight Belle), Nokia E7 and X7 ( again, all on Delight Belle...after some time on Nokia Lumia 925 (retired), 1020 (not that great)and Lumia 820 (Replaced my router at home, great for internet sharing).., N9 The best device ever (use it as much as Lumia 1020), Nokia 700 (Sport Phone/My Love :-) ) Nokia 701, Nokia E6 (Should have a follow-up from Nokia among with larger screen, NFC, Autofocus), Lumia 800 (Retired After 6 weeks), -Sports Tracker-Nokia Internet Radio-Handy Safe-Skype-Bambuser-Screenshot app pro-fMobi-ComingNext-Manual TaskSwitcher-jagiTimer-Easy StopWatch-Boldbeast-Equalizer-Financial Calculator-WiMP Music-YTasks-Davi-Thumbnail Folders-BizCalendar-Tiny7-Situations-nn reeder-Sport Timer-CameraLover-CameraPro-GrabRadio-LiveScore-Poddi-Gravity-SkyFilesPro

Maybe you are looking for

  • ADF Task Flow: Using Task Flow Call as Application Entry Point

    In our product we have a task flow structure very similar to the Fusion Order Demo application, but we are having serious trouble reproducing the documented functionality of ADF Task Flows. Specifically, we cannot use a task flow call as an entry poi

  • How do i get rid of Album by Artist

    Down the left hand side of iTunes music list there is a column that is labled "Album by Artist."  It is not too bad to if you have songs sorted by Album but if you sort by song name you get all these large blocks on the left and the list is long and

  • Need a good test for see Sql Failover "in action"

    I have a two node cluster in a testlab. I'm thinking of INSERTing a million rows in a table, and while the process is running, failover to the other node. (Obviously I'm hoping for minimal loss). Can think of a better way to show failover " in action

  • Crearting Stacked Bar Chart

    Dear All I have a requirement of making a stacked chart using Visual Composer 7.0. There will be two stacks against each month and each stack consists of different data series. Actual production and plan data are two different stacks and differnet pr

  • Problem in workflow for manager id

    hi guys,             I need to fetch the manager id in  the ztable and send it to the workflow.i have created a dummy method binded from mentod->task->workflow.Then in the particular task(manager approve) again binded from workflow to task.I have pre