HT1937 how to get a backup password which i have never made

i tried all my password but non of them worked how do i get a password for the back up on itunes

There isn't a way to recover the password.
You can try leaving the password field blank.
You can also try using an Exchange account password, some Exchange configuration profiles will require the iPhone to create encrypted backups.
If you can't remember the password, iTunes won't restore the iPhone from that backup. If you don't remember creating a password and think it was a bug or something, try contacting Apple.

Similar Messages

  • HT204053 I am not able to update my apps because every time I am doing this, it is asking for a password which I have never used and the person who used it is in no more contact. how can i get my id instead of his??

    I am not able to update my apps because every time I am doing this, it is asking for a password which I have never used and the person who used it is in no more contact. how can i get my id instead of his??

    Apps can only be updated using the same Apple ID and password they were originally purchased with.

  • How to get the PDF data which i have send to Spool

    Dear Freinds,
                   My requirement is to display the output which iam getting from a custom report(ZSALARY) in the form of  PDF . So now i wanted to display the ALV output  on to my desktop (as of now) in PDF format.
    i have done the below coding please correct me why iam not getting the same data which is coming out of my report in the PDF, iam passing the same internal table.
    IF NOT it_final[] IS INITIAL.       -
    >IT_FINAL is my main internal table in the report ZSALARY
          DATA : count TYPE syprcop,
             days TYPE sypexpi,
             params TYPE pri_params,
             valid TYPE c,
          pdf_table TYPE  rcl_bag_tline,
          spoolid TYPE rspoid,
          pdf_fsize TYPE  i.
            CALL FUNCTION 'GET_PRINT_PARAMETERS'
              EXPORTING
                destination    = 'LP01'
                copies         = count
                list_name      = 'ZSALARY'   -
    tHIS IS MY REPORT NAME
                list_text      = 'ZSSPOOL'
                immediately    = ' '
                release        = 'X'
                new_list_id    = 'X'
                expiration     = days
                line_size      = 90
                line_count     = 65
                layout         = 'X_PAPER'
                sap_cover_page = 'X'
                receiver       = 'SAP*'
                department     = 'System'
                no_dialog      = 'X'
              IMPORTING
                out_parameters = params
                valid          = valid.
            NEW-PAGE PRINT ON PARAMETERS params NO DIALOG.
            WRITE : 'hi this is the test for spool'.
            NEW-PAGE PRINT OFF.
            COMMIT WORK.
            WRITE : / 'The Spool no is ', sy-spono. "system variable for spool no
            spoolid = sy-spono   .       -
    At this point i can see the spool no.
            CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
              EXPORTING
                src_spoolid   = spoolid
                no_dialog     = 'X'
              IMPORTING
                pdf_bytecount = pdf_fsize
              TABLES
                pdf           = pdf_table
              EXCEPTIONS
                OTHERS        = 0.
            CHECK sy-subrc = 0.
            CALL FUNCTION 'GUI_DOWNLOAD'
              EXPORTING
                bin_filesize = pdf_fsize
                filename                = 'C:\Documents and Settings\Administrator\Desktop\test.pdf'
                filetype                = 'BIN'
              TABLES
                data_tab                = it_final
              EXCEPTIONS
                file_write_error        = 1
                no_batch                = 2
                gui_refuse_filetransfer = 3
                invalid_type            = 4
                OTHERS                  = 5.
          ENDIF.
    if i go and on my desktop it is saying the below error "ADOBE  READER COUDNT OPEN 'test.pdf'
    because it is either not supported  file type or because the file has been damaged.
    my aim is to get the data which is there in IT_final in the PDF .....please correct me the parameters which i have given wrong. my doubt is in GUI_download  fM  in the tables should i pass it_final or
    the pdf_table coming from'CONVERT_ABAPSPOOLJOB_2_PDF'...... i tried this option iam able to open and it is just giving message which i kept before this FM i.e  WRITE : 'hi this is the test for spool'.
    what i should to get my internal table data.
    Pls help.
    regards
    srinivas.

    Dear Karthik,
              Thank you for giving me the link there by iam able to get the ouput download int he pdf
    as below code , but now a small problem for me .......i have 10 fileds in the Report ouput ....but however in the pdf output i can see only 8 fields and the two fields got truncated . Could you please tell me what
    i have to change in my below code so that i can get all the values  
    IF NOT it_final[] IS INITIAL.
    data : it_tsp01 type standard table of tsp01,
           l_wa_tsp01 type tsp01.
            CALL FUNCTION 'GET_PRINT_PARAMETERS'
              EXPORTING
                destination    = 'LP01'
                copies         = count
                list_name      = 'ZHR_BON'
                list_text      = 'ZSSPOOL'
                immediately    = ' '
                release        = 'X'
                new_list_id    = 'X'
                expiration     = days
                line_size      = 90
                line_count     = 65
                layout         = 'X_PAPER'
                sap_cover_page = 'X'
                receiver       = 'SAP*'
                department     = 'System'
                no_dialog      = 'X'
              IMPORTING
                out_parameters = params
                valid          = valid.
    SUBMIT (sy-repid) TO SAP-SPOOL
                     SPOOL PARAMETERS mstr_print_parms
                     WITHOUT SPOOL DYNPRO
                    WITH pnppernr =  p0001-pernr
                     AND RETURN.
    CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
              EXPORTING
                src_spoolid   = spoolid
                 no_dialog     = 'X'
                 DST_DEVICE  = params-PDEST
               IMPORTING
               pdf_bytecount = pdf_fsize
              TABLES
                pdf           = pdf_table
              EXCEPTIONS
                OTHERS        = 0.
            CHECK sy-subrc = 0.
            CALL FUNCTION 'GUI_DOWNLOAD'
              EXPORTING
                bin_filesize            = pdf_fsize
                filename                = 'C:\Documents and Settings\Administrator\Desktop\test.pdf'
                filetype                = 'BIN'
              TABLES
                data_tab                = pdf_table    "it_final
              EXCEPTIONS
                file_write_error        = 1
                no_batch                = 2
                gui_refuse_filetransfer = 3
                invalid_type            = 4
                OTHERS                  = 5.
          ENDIF.
    Please tell me how i can get the all the fields which are there in my normal alv output ......
    Case 1) .i wanted all the 10 fields in PDF  to be displayed  without truncated , I have checked in Spool ........ i found all the fields are there .....but however when i check the downloaed PDF i can see some fields are getting truncated.
    Case 2) However  if on the ALV output if the user  hides 2 fields out of 10 fields then only 8 feilds which are appearing on the output  before sending the Spool should only be displayed in PDF as well -
    > for this scenario what i have to do.
    Thanks  Once again.
    regars
    srini.

  • My iPad ask me to update but when I did it asked me for  my password  which I have never been asked before and I haven't got a 4 number pass code so what do I do

    It has asked me for a pass code to update I never been asked before and I don't have a pass code for it ... And if I have I cannot remember so what do I do as I will not be able to update this is from my iPad  can give me this pass code I suppose to have   WHY IS IT ASKING ME KNOW FOR ONE

    It's referring to the Passcode which you use to lock/unlock your iPad

  • HT201269 i bought my iphone 4 about a year ago and just decided to upgrade it to ios5 just recently. My phone restored to to its factory settings and when I clicked continue restore from back up it is now asking a backup password which i dont remember set

    i bought my iphone 4 about a year ago and just decided to upgrade it to ios5 just recently. My phone restored to to its factory settings and when I clicked continue restore from back up it is now asking a backup password which i dont remember setting up one. I am currently using a windows vista PC. How can I retrieve the password or restore all my old data into the new OS. I have been reading blogs about the same situation and is it true that it is one of apple's bugs?

    It is NOT a bug.  You provided a password.  If you can't remember it, you can't restore your phone from backup.  Very simple.

  • My nephew lend me his iPad and I have wi-fi service @ home, I get the wi-fi icon on top, it's activated but when I open Safari to go online it ask me for the password which I have and type in. It tells me I have typed incorrect pw. What's wrong?

    my nephew lend me his iPad and I have wi-fi service @ home, I get the wi-fi icon on top of iPad, it's activated but when I open Safari to go online it ask me for the password which I have and type in. It tells me I have typed incorrect pw. What's wrong? I even called my internet server and they cant help! They're saying my nephew must have a block. I asked my nephew and he said "what r they talking about, I have no block"  Can anyone help ME PLZ.

    When you go to Settings > WiFi and see your network name does it have a padlock icon to the right of the network name? If so it is a secured network with a password.
    How did you connect to your network from the iPad? From Settings > Wifi? Was a network password requested? Was it accepted?
    If you touch the ">" to the right of your network name what do you see for IP Address, Subnet Mask, Router, and DNS?

  • How to rest the backup password in my computer?

    How to rest the backup password in my computer?
    I create backup for my iphone and I but password, now when I want to restore my backup it asking for password which I forget,
    is there any way to rest this password.?

    You cannot use that backup without the password

  • My daughter forgot her password, any suggestions of how to get around the password without deleting everything she has on it?

    She has never synced her ipod touch to iTunes, any suggestions of how to get around the password without deleting everything she has on the device?  Apple support recommended recovery mode, but doesn't that erase everything on the ipod?

    You are out of luck but a Date Recovery company may be able to help if the iPod does not have iOS 8.
    If there is an iCloud backup you can restore from that.
    You can redownload most iTunes purchases by:        
      Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • I am trying to restore a backup onto my iphone from itunes but it asked me for a backup password which I cant remember, is there anyway that I can reset the password and not lose my backup?

    I am trying to restore a backup onto my iphone from itunes on a pc windows 8 but it asked me for a backup password which I cant remember, is there anyway that I can reset the password and not lose my backup? Any help is very appreciated

    Try entering the password on your iPhone

  • DOES ANYONE KNOW HOW TO GET PASSED MY PASSWORD LOGIN on a mac pro? I FORGOT IT. (yosemite 10.10.1)

    DOES ANYONE KNOW HOW TO GET PASSED MY PASSWORD LOGIN on a mac pro? I FORGOT IT. (yosemite 10.10.1)

    User Tip:  Reset the user password in OS X Lion, Mountain Lion, Mavericks and Yosemite
    Posting in CAPS LOCK Is often seen as screaming and is not appreciated.  It's also very hard to read.

  • I wish to reset my ipad.  However, when I selectGeneral Reset Erase all content and Settings, I am prompted for a a Restrictions Passcode (which I have never set).  I have now entered random codes 11 times and the ipad not reset. How do I get past this?

    I wish to reset my ipad (as advised by the Apple Store) to attempt to resolve an issue with a non-responsive part of the screen..  However, when I select General>Reset>Erase all content and Settings, I am prompted for a a Restrictions Passcode (which I have never set).  I have now entered random codes 11 times and the ipad has not reset. How do I get past this?  I am now at the point where I have to wait 60 mins before I can enter another random passcode.  I just want the ipad to clear down, erase everything so I can start again.

    The other option is to force iPad into Recovery Mode.
    http://support.apple.com/kb/HT1808
    Note: You need to be patient and repeat the above many times to recover your iPad

  • I upgraded my Firefox and my home page (which I love) is GONE. Not sure how to get it back. I still have my bookmarks though. Thanks in advance for helping me.

    I upgraded my Firefox and my home page (which I love) is GONE. Not sure how to get it back. I still have my bookmarks though. Thanks in advance for helping me.

    If that didn't help then see this article for more suggestions:
    * [[Firefox has just updated tab shows each time you start Firefox]]

  • How to get the form name which is used in standard tcode like me23n in sap

    how to get the form name which is used in standard tcode like me23n in sap
    Moderator message: four out of four threads locked, please read and understand the following before posting further:
    [Rules of engagement|http://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement]
    [Asking Good Questions in the Forums to get Good Answers|Asking Good Questions in the SCN Discussion Spaces will help you get Good Answers]
    Edited by: Thomas Zloch on Nov 18, 2011 1:32 PM

    how to get the form name which is used in standard tcode like me23n in sap
    Moderator message: four out of four threads locked, please read and understand the following before posting further:
    [Rules of engagement|http://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement]
    [Asking Good Questions in the Forums to get Good Answers|Asking Good Questions in the SCN Discussion Spaces will help you get Good Answers]
    Edited by: Thomas Zloch on Nov 18, 2011 1:32 PM

  • How to get the  Checked box which are clicked

    for(int k=0;.....
    jsp code
    <input type=checkbox name=checkbox value='<%=k%>' >
    how to get the particular Checkbox which are checked???

    String[] checkedValues = request.getParameterValues("checkbox");You'll get an array filled with the values only for the checked boxes. In other words, if no boxes are checked, checkedValues will be null or checkedValues.length == 0, not sure, going from memory.
    Hope this helps!
    Patrick

  • My 3G unlocked iPhone is not syncing mail or contacts from my mac book pro, using Lion. I am able to get a calendars and music, only. I get the message that I need to reset the password which I have done 3x's on the phone and on the Apple server.

    My 3G unlocked iPhone is not syncing mail or contacts from my mac book pro, using Lion. I am able to get a calendars and music, only. I get the message that I need to reset the password which I have done 3x's on the phone and on the Apple server.

    Good to know that, but what can I do to get the mail and contacts downloaded from Icloud onto my Iphone?  I am told that the password needs to be reset and I have erased and reset it 3x's already? Should I Restore All Settings or Restore Network Settings or will that result in a situation where I have to have it re-unlocked again? GRACIAS!

Maybe you are looking for

  • Diplay logs in SLG1 with messages dont have msgid , msgno etc.

    Hi all , I want to display logs in SLG1 transaction and created object and subobject for this and i am using FM 'APPL_LOG_WRITE_HEADER' , BAL_DB_LOGNUMBER_GET , APPL_LOG_WRITE_MESSAGES  and APPL_LOG_WRITE_DB . In my case am getting all these error me

  • How to transfer files from an Android device to a MacBook Pro

    How do I transfer files from my Android to my MacBook Pro

  • Opening Balance Missing from Trial Balance

    Hi Experts, I have a query with the calculation of the Trial Balance in SAP.  I have the following simple scenario: G/L Account 101010 is a Balance Sheet account and has 2 entries: £50 Debit on 01.08.08 £1000 Debit on 20.08.09 I think it is fair to s

  • JSF 1.2 Converters in Tomcat 6.0.2

    When running the jsf-cardemo web app that comes with JSF 1.2 on Tomcat 6.0.2, I get an exception when loading the customerInfo.jsp page (see below). Not sure if this is an issue with Tomcat or not. org.apache.jasper.JasperException: /customerInfo.jsp

  • Error MEPO000

    Hi friends , When i am saving the PO , the system showing error message " Purchase order still contains faulty items Message no. MEPO000" , so what should be the problem . When give tax code in invoice tab then only it appear . Please reply , Raghu